Skip to content

pymilvus.exceptions.MilvusException: <MilvusException: (code=8, message=Retry run out of 75 retry times, message=request is rejected by grpc RateLimiter middleware, please retry later: rate limit exceeded[rate=0.1])> #41270

Discussion options

You must be logged in to vote

多半是你调用 flush() 过于频繁。
错误的方式: insert() --> flush() ---> insert() ----> flush() ---> insert() ----> flush() .....
正确的方式: insert() --> insert() ---> insert ---> insert() --> insert() ---> insert .... (没必要调用flush(), milvus自己内部会在合适的时候flush)

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@anliwen
Comment options

@yhmo
Comment options

yhmo Apr 15, 2025
Collaborator

Answer selected by anliwen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants