Pinecone allows you to partition the records in an index into namespaces. Queries and other operations are then limited to one namespace, so different requests can search different subsets of your index.

For example, you might want to define a namespace for indexing articles by content, and another for indexing articles by title. For a complete example, see our Namespaces example notebook.

Every index is made up of one or more namespaces. Every record exists in exactly one namespace.

Namespaces are uniquely identified by a namespace name, which almost all operations accept as a parameter to limit their work to the specified namespace. When you don’t specify a namespace name for an operation, Pinecone uses the default namespace name of "" (the empty string).

Creating a namespace

Namespaces are created automatically the first time they are used to upsert records. If the namespace doesn’t exist, it is created implicitly.

The example below will create a "my-first-namespace" namespace if it doesn’t already exist:

Then you can submit queries and other operations specifying that namespace as a parameter. For example, to query the records in namespace "my-first-namespace" use code like the following:

Creating more than one namespace

You can create more than one namespace. For example, insert data into separate namespaces:

Operations across all namespaces

All vector operations apply to a single namespace, with one exception:

The DescribeIndexStatistics operation returns per-namespace statistics about the contents of all namespaces in an index. More details

Was this page helpful?