Milvus supporting 1 million partitions, how to scale the cluster to support that? #37390
-
Hello Milvus experts, for some reason, I want to have my Milvus cluster to support a large number of physical partitions, like 1 million?
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
I don't think it's possible to do so. With proper optimization 100K might be doable, but this needs special optimization for sure. |
Beta Was this translation helpful? Give feedback.
-
@xiaofan-luan In my scenario, I need to create 10 million partitions in total, distributed to many different collection. |
Beta Was this translation helpful? Give feedback.
I don't think it's possible to do so.
10000 partitions might be doable, 1m definitely not.
The bottle neck will be on coordinator -> too manage that much partitions means load balance will be difficult to do.
Also the growing data ingestion will be challenging (if partitions are written evenly).
With proper optimization 100K might be doable, but this needs special optimization for sure.