-
Notifications
You must be signed in to change notification settings - Fork 13
Add additional list functions to reach parity with RESTful list requests #130
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
Conversation
With REST, we are currently able to list vectors without a prefix but with a pagination token. This is not the case with v1 of the pinecone-java-clinet. With this PR, we have added a function list with a pagination token and limit but no prefix.
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.
Thanks for taking time to create this PR. Would you please:
- add the same method to the AsyncIndex?
https://github.com/pinecone-io/pinecone-java-client/blob/main/src/main/java/io/pinecone/clients/AsyncIndex.java - add tests here for both Index and AsyncIndex methods:
https://github.com/pinecone-io/pinecone-java-client/blob/main/src/integration/java/io/pinecone/integration/dataPlane/ListEndpointTest.java
Absolutely! |
Done! |
FYI, |
@rasharab Sorry I was out all of this week for a company event but I'm more than happy to run the integration tests and release this PR if you still need it |
Please release it. Thank you! |
Would you please open the PR again so I can run the integration test, verify the correctness, and merge it in. |
Sorry, one of our engineers deleted our fork. :( |
annoyingly, had to re-create pr... |
Ok thanks, taking a look |
…sts #130 (#133) ## Problem #126 ## Solution With REST, we are currently able to list vectors without a prefix but with a pagination token. This is not currently available with v1 of the pinecone-java-client. With this PR, we have added a function list with a pagination token and limit but no prefix.
Problem
#126
Solution
With REST, we are currently able to list vectors without a prefix but with a pagination token.
This is not currently available with v1 of the pinecone-java-client.
With this PR, we have added a function list with a pagination token and limit but no prefix.