[there is no idle indexing node, waiting for retry...] #39594
-
Hello, I am currently facing an issue with my standalone Milvus instance, which unexpectedly went down, and I am unable to determine the cause. After restarting Milvus, I attempted to load my collection of 30 million vectors; however, the process terminates after approximately 10 minutes, and I am unsure of the reason. The only relevant log message I have observed is as follows:
I initially assumed that the indexing process needed to be restarted; however, the indexing has now been running for over two hours. I am considering allowing it more time to complete, but I would appreciate your guidance on whether this is expected behavior or if there are optimization strategies that could improve performance. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 10 replies
-
|
Beta Was this translation helpful? Give feedback.
-
you should see all compaction and index build tasks in the task page. |
Beta Was this translation helpful? Give feedback.
-
First, download the milvus.yaml configuration file using the following command: $ wget https://raw.githubusercontent.com/milvus-io/milvus/v2.5.4/configs/milvus.yaml Modify the installation file In docker-compose.yml, add a volumes section under milvus-standalone. Map your local milvus.yaml file path to the container configuration path /milvus/configs/milvus.yaml: yaml
After modifying both configuration and installation files, start Milvus with: $ sudo docker compose up -d Just remember to change milvus.yaml, you need to mount milvus,.yaml into the right position of inside docker |
Beta Was this translation helpful? Give feedback.
-
Also, I don't think you will need to tune any of these parameters, doesn't make a big difference. You want to make sure:
|
Beta Was this translation helpful? Give feedback.
First, download the milvus.yaml configuration file using the following command:
$ wget https://raw.githubusercontent.com/milvus-io/milvus/v2.5.4/configs/milvus.yaml
1
Modify the installation file
In docker-compose.yml, add a volumes section under milvus-standalone. Map your local milvus.yaml file path to the container configuration path /milvus/configs/milvus.yaml:
yaml
standalone:
container_name: milvus-standalone
image: milvusdb/milvus:v2.5.4
command: ["milvus", "run", "standalone"]
environment:
ETCD_ENDPOINTS: etcd:2379
MINIO_ADDRESS: minio:9000
volumes: