dependabot[bot] opened a new pull request, #20833: URL: https://github.com/apache/camel/pull/20833
Bumps [io.pinecone:pinecone-client](https://github.com/pinecone-io/pinecone-java-client) from 3.1.0 to 6.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pinecone-io/pinecone-java-client/releases">io.pinecone:pinecone-client's releases</a>.</em></p> <blockquote> <h2>v6.1.0 Release</h2> <p>This version of the Pinecone Java SDK introduces observability support for dataplane operations. You can now capture performance metrics and operational metadata for all vector operations (upsert, query, fetch, update, delete), enabling seamless integration with your preferred observability tools.</p> <h2>Features</h2> <h3>ResponseMetadataListener for operation observability</h3> <p>Register a callback to receive detailed metrics after each dataplane operation completes:</p> <ul> <li>Client duration - Total round-trip time measured by the SDK</li> <li>Server duration - Processing time from x-pinecone-response-duration-ms header</li> <li>Network overhead - Computed difference (client - server)</li> <li>Operation details - Name, index, namespace, server address, status, and error info</li> </ul> <p>Below code shows how to capture and log response metadata for dataplane operations:</p> <pre lang="java"><code>import io.pinecone.clients.Pinecone; import io.pinecone.clients.Index; import java.util.Arrays; <p>Pinecone pinecone = new Pinecone.Builder(System.getenv("PINECONE_API_KEY"))<br /> .withResponseMetadataListener(metadata -> {<br /> System.out.printf("Operation: %s | Client: %dms | Server: %dms | Network: %dms%n",<br /> metadata.getOperationName(),<br /> metadata.getClientDurationMs(),<br /> metadata.getServerDurationMs(),<br /> metadata.getNetworkOverheadMs());<br /> })<br /> .build();</p> <p>Index index = pinecone.getIndexConnection("example-index");</p> <p>// All operations now report metrics via the listener<br /> index.upsert("v1", Arrays.asList(1.0f, 2.0f, 3.0f));<br /> // Output: Operation: upsert | Client: 52ms | Server: 38ms | Network: 14ms</p> <p>index.fetch(Arrays.asList("v1"));<br /> // Output: Operation: fetch | Client: 35ms | Server: 22ms | Network: 13ms<br /> </code></pre></p> <p>For a complete OpenTelemetry integration example with Prometheus and Grafana, see <a href="https://github.com/pinecone-io/pinecone-java-client/tree/main/examples/java-otel-metrics">examples/java-otel-metrics</a>.</p> <h2>What's Changed</h2> <ul> <li>Add ResponseMetadataListener for dataplane operation observability by <a href="https://github.com/rohanshah18"><code>@​rohanshah18</code></a> in <a href="https://redirect.github.com/pinecone-io/pinecone-java-client/pull/208">pinecone-io/pinecone-java-client#208</a></li> <li>Prepare to release v6.1.0 by <a href="https://github.com/rohanshah18"><code>@​rohanshah18</code></a> in <a href="https://redirect.github.com/pinecone-io/pinecone-java-client/pull/209">pinecone-io/pinecone-java-client#209</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/pinecone-io/pinecone-java-client/compare/v6.0.0...v6.1.0">https://github.com/pinecone-io/pinecone-java-client/compare/v6.0.0...v6.1.0</a></p> <h1>v6.0.0 Release</h1> <p>This version of the Pinecone Java SDK introduces Bring Your Own Cloud (BYOC), dedicated read capacity, metadata indexing, the ability to create namespaces explicitly, enhanced namespace listing with prefix filtering, fetch and update operations by metadata filters, and support for version 2025-10 of the Pinecone API. You can read more about versioning <a href="https://docs.pinecone.io/reference/api/versioning">here</a>.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pinecone-io/pinecone-java-client/blob/main/CHANGELOG.md">io.pinecone:pinecone-client's changelog</a>.</em></p> <blockquote> <h3>6.1.0</h3> <ul> <li>Add ResponseMetadataListener for dataplane operation observability</li> </ul> <h3>6.0.0</h3> <ul> <li>Add support for: <ul> <li>dedicated read nodes</li> <li>byoc</li> <li>create namespace and enhance list namespaces</li> <li>update and fetch by metadata</li> <li>metadata indexing</li> </ul> </li> <li>Generate code based on 2025-10 api spec</li> </ul> <h3>5.1.0</h3> <ul> <li>Add support for models api</li> </ul> <h3>5.0.0</h3> <ul> <li>Add support for backups and restore</li> <li>Add support for list, describe, and delete namespaces</li> <li>Generate code based on 2025-04 api spec</li> <li>Automate ndjson handling</li> </ul> <h3>4.0.1</h3> <ul> <li>Create a new config per index connection</li> </ul> <h3>4.0.0</h3> <ul> <li>Add support for sparse indexes</li> <li>Generate code based on 2025-01 open-api spec</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/284864ff40d8964e75c1a2620de901bc657bf8d3"><code>284864f</code></a> prepare to release v6.1.0</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/fd698074cab251c04e268e75d29dc262e432007f"><code>fd69807</code></a> update README</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/73b1459a833d0b4fa1ed3b0910a4f6c51f95dc08"><code>73b1459</code></a> add response headers</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/2fa719f38969e42008af514e033aafc29805039a"><code>2fa719f</code></a> prepare to release v6.0.0</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/c6a8fb455851066caced6d07551f86404019897b"><code>c6a8fb4</code></a> Add fetch and update by metadata (<a href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/206">#206</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/c01528ea44ab923635f6abc2515782c0b55e767b"><code>c01528e</code></a> Add createNamespace(), and prefix + totalCount to listNamespaces() (<a href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/205">#205</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/3e3c08604b895e304eb0ab5d57cd08e221cb7da4"><code>3e3c086</code></a> Generate core based on oas and protos (<a href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/204">#204</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/879f11d27c5f7bca6a8ec69653ae58b45f21cd0b"><code>879f11d</code></a> Add support for Bring Your Own Cloud (BYOC) (<a href="https://redirect.github.com/pinecone-io/pinecone-java-client/issues/203">#203</a>)</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/29fca24c2b9403013b43ed8e2ec43105d7ccea5a"><code>29fca24</code></a> Add Support for Dedicated Read Capacity (DRN) and Metadata Schema Configurati...</li> <li><a href="https://github.com/pinecone-io/pinecone-java-client/commit/44eb18b6d8cb2a55fc2284e95d8d9ce4801304e8"><code>44eb18b</code></a> update README for breaking changes</li> <li>Additional commits viewable in <a href="https://github.com/pinecone-io/pinecone-java-client/compare/v3.1.0...v6.1.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
