I would like to inquire about how to build a Windows binary file (exe). #37676
-
I am using Alibaba Cloud's ECS with Windows Server 2019. Since ECS is already a virtual machine, I am unable to install Docker (or rather, I cannot virtualize a Linux environment). I came across the project 'matrixji/milvus', but unfortunately, it hasn't been maintained for a long time. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
https://github.com/milvus-io/milvus/blob/v2.4.15/DEVELOPMENT.md#software-requirements A list of verified OS types where Milvus can successfully build and run:
|
Beta Was this translation helpful? Give feedback.
-
@matrixji Hello, could you share the build method for Windows? |
Beta Was this translation helpful? Give feedback.
Hi, @TxcA
Porting milvus to Windows is not an easy job, I started to do porting from milvus 2.0, and the last successful version is 2.2.16 you can find patch here, from milvus 2.3, I could not handle it, for it's fast-growing code. At the same time, the application of vector databases has undergone many changes. I started using milvus from 0.10, at that moment, the main application area of vector databases was image similarity search. We hope for high performance, we hope high recall, and we hope can debug/test on a local computer easily. Recently, especially with the rise of large language models, the usage scenarios of vector databases have undergone significant changes. How to deploy i…