[skip e2e] Fix grammar (#15066)

Signed-off-by: Bennu <yunmei.li@zilliz.com>
pull/15087/head
Bennu 2022-01-10 13:20:40 +08:00 committed by GitHub
parent 0a0cf9bf94
commit 513626c69d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -970,7 +970,7 @@ message SearchRequest {
// Filtering entities by timestamp. (Optional)
uint64 travel_timestamp = 10;
// The time tolerance between entities visibility and search action. Default is 0. In Milvus, each entity has a timestamp. To ensure data consistence, each node(query node and data node) will consume data in a time interval. So entity visibility is a bit later than its timestamp. If this value is 0, Milvus will hold the search action, wait until all entities whose timestamp is earlier that the search action's timestamp to be fully consumed.
// The time tolerance between entities visibility and search action. Default is 0. In Milvus, each entity has a timestamp. To ensure data consistence, each node(query node and data node) will consume data in a time interval. So entity visibility is a bit later than its timestamp. If this value is 0, Milvus will hold the search action, wait until all entities whose timestamp is earlier than the search action's timestamp to be fully consumed.
uint64 guarantee_timestamp = 11;
}
```