Updates an index using batch updating.
batch_update_index(
index: MatchingEngineIndex,
data_points: list[meidx_types.IndexDataPoint],
*,
staging_bucket: Bucket,
prefix: str | None = None,
file_name: str = 'documents.json',
is_complete_overwrite: bool = False
) -> None| Name | Type | Description |
|---|---|---|
index* | MatchingEngineIndex | Vector search index. |
data_points* | list[meidx_types.IndexDataPoint] | List of |
staging_bucket* | Bucket | Bucket where the staging data is stored. Must be in the same region as the index. |
prefix | str | None | Default: NonePrefix for the blob name. If not provided an unique iid will be generated. |
file_name | str | Default: 'documents.json'File name of the staging embeddings. By default |
is_complete_overwrite | bool | Default: FalseWhether is an append or overwrite operation. |