default Collection TTL #40395
Answered
by
yhmo
zhu3359
asked this question in
Q&A and General discussion
default Collection TTL
#40395
-
what is the default Collection TTL? if i didn't set ttl for a collection, the collection will not be dropped forever? |
Beta Was this translation helpful? Give feedback.
Answered by
yhmo
Mar 6, 2025
Replies: 1 comment 1 reply
-
https://milvus.io/docs/modify-collection.md#Set-Collection-TTL TTL is to "automatically remove expired data from a Milvus collection", it is not to drop a collection. "As a result, the data may still appear in search results until the deletion process is fully completed." ---------------- This means: by default, TTL is 0 (doesn't take effect), entities are deleted only after user explicitly calls collection.delete(). |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
zhu3359
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://milvus.io/docs/modify-collection.md#Set-Collection-TTL
TTL is to "automatically remove expired data from a Milvus collection", it is not to drop a collection.
"As a result, the data may still appear in search results until the deletion process is fully completed." ---------------- This means: by default, TTL is 0 (doesn't take effect), entities are deleted only after user explicitly calls collection.delete().