-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test:Add search Iterator v2 test case for milvus client #39120
test:Add search Iterator v2 test case for milvus client #39120
Conversation
Signed-off-by: qixuan <[email protected]>
@qixuan0212 go-sdk check failed, comment |
@qixuan0212 E2e jenkins job failed, comment |
rerun go-sdk |
/run-cpu-e2e |
@qixuan0212 E2e jenkins job failed, comment |
/run-cpu-e2e |
@qixuan0212 E2e jenkins job failed, comment |
/run-cpu-e2e |
@qixuan0212 E2e jenkins job failed, comment |
/run-cpu-e2e |
@qixuan0212 E2e jenkins job failed, comment |
/run-cpu-e2e |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: qixuan0212, yanliang567 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@@ -153,6 +153,25 @@ def search(self, client, collection_name, data, limit=10, filter=None, output_fi | |||
**kwargs).run() | |||
return res, check_result | |||
|
|||
@trace() | |||
def search_interator(self, client, collection_name, data, batch_size=20, limit=100, filter=None, output_fields=None, | |||
search_params=None, timeout=None, check_task=None, check_items=None, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i don't think batch_size=20 is a good default value. it blocks us verify the scenarios ofhe batch_size is none
) issue: milvus-io#37548 Signed-off-by: qixuan <[email protected]>
issue: #37548