GH-4754: Update outdated Pinecone free-tier namespace notes#6383
Open
sdudzin wants to merge 1 commit into
Open
GH-4754: Update outdated Pinecone free-tier namespace notes#6383sdudzin wants to merge 1 commit into
sdudzin wants to merge 1 commit into
Conversation
…notes Fixes spring-projectsGH-4754 (spring-projects#4754) Namespaces are supported on all current Pinecone plans including the free Starter plan (the pod-based gcp-starter environment that lacked namespace support has been retired). Update the reference docs note, remove the stale sample-code comment, and refresh the matching builder Javadoc and integration test comments. Signed-off-by: Siarhei Dudzin <606713+sdudzin@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes GH-4754 (#4754)
The Pinecone reference docs state that namespaces are not available on the Pinecone free tier. That was true, but now all current Pinecone plans support namespaces on serverless indexes - the free Starter plan allows up to 100 namespaces per index (see the "Object limits" table at https://docs.pinecone.io/reference/api/database-limits).
Changes (docs/comments only, no behavior change):
pinecone.adoc— replace the outdated NOTE with current namespace support info and remove the stale// the free tier doesn't support namespaces.comment from the manual-configuration samplePineconeVectorStore— update theBuilder#namespaceJavadoc, which still referencedgcp-starter; document the actualnullhandling insteadPineconeVectorStoreIT/PineconeVectorStoreObservationIT— refresh the namespace comments that carried the same outdated claimVerification:
./mvnw -pl vector-stores/spring-ai-pinecone-store packageandprocess-sources -P checkstyle-checkpass; Antora docs build renders the updated note. NotePineconeVectorStoreITalready defaults to a unique namespace per run, so any green IT run against a Starter-plan key exercises namespaces on the free tier.