-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Memory usage of milvus lite #152
Comments
If you are using a version <2.4.x, you can call |
Has version 2.4. X and above changed the name of milvus to milvus lite? |
yeah, 2.4.x changed the package name to milvus-lite and provided different interfaces |
Thanks. Do you have any plans to provide a compilation and installation method, as our project rarely uses Python and mostly uses C++? |
The 2.4.x version of milvus-lite can also be started as a gRPC service and then accessed using the C++ client. >>> from milvus_lite.server import Server
>>> s = Server('./test.db', 'localhost:19530')
>>> s.start()
True
>>> s._p.wait() |
If this method is used, is it possible for a service to only use one database? Is there any way to manage multiple local databases with one service? |
No, a service only supports one local database |
Why can't manage multiple databases with one service? What are the benefits of managing one database with one service? Because our current scenario may require multiple databases. |
The purpose of the project is to enable users to more easily utilize the vector search features of Milvus. Therefore, only a small subset of Milvus's features has been integrated. If you want to use the full range of features, it is recommended to use Milvus directly. |
|
Why are multiple databases necessary? Can't a single database with multiple collections meet the requirements? The current milvus-lite version has a QPS of less than 3 for 1 million 768-dimensional vectors, so it is recommended to use Milvus. |
|
English Community: https://github.com/milvus-io/milvus?tab=readme-ov-file#community |
Is there any way to add me to the WeChat group in China?Thanks~ |
Just scan the QR code above. |
We encountered the following issues when using milvus-server to start the service and using milvus lite:
The text was updated successfully, but these errors were encountered: