Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/how-to/vectors/bulk-import.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,21 @@ response = index.start_import(
```


## Use a storage integration

If your project uses a configured storage integration for the import source, pass the
integration ID with `integration_id`:

```python
response = index.start_import(
uri="s3://my-bucket/embeddings/",
integration_id="integration-id",
)
```

You can combine integration_id with error_mode when needed.


## Check import status

{meth}`~pinecone.Index.describe_import` returns an {class}`~pinecone.models.ImportModel`
Expand Down