Skip to main content

REST - /v1/batch

LICENSEย Weaviate on Stackoverflow badgeย Weaviate issues on GitHub badgeย Weaviate version badgeย Weaviate total Docker pulls badgeย Go Report Card

Batch create objectsโ€‹

For sending data objects to Weaviate in bulk.

Performanceโ€‹

tip

Import speeds, especially for large datasets, will drastically improve when using the batching endpoint.

A few points to bear in mind:

  1. If you use a vectorizer that improves with GPU support, make sure to enable it if possible, as it will drastically improve import.
  2. Avoid duplicate vectors for multiple data objects.
  3. Handle your errors. If you ignore them, it might lead to significant delays on import.
  4. If your import slows down after a particular number of objects (e.g. 2M), check to see if the vectorCacheMaxObjects in your schema is larger than the number of objects. Also, see this example.
  5. There are ways to improve your setup when using vectorizers, as we've shown in the Wikipedia demo dataset. Subscribe to our Announcements category on the forum to keep up-to-date as we publish more on this topic.

Method and URLโ€‹

POST /v1/batch/objects[?consistency_level=ONE|QUORUM|ALL]

Parametersโ€‹

The URL supports an optional consistency level query parameter:

NameLocationTypeDescription
consistency_levelquery paramstringOptional consistency level: ONE, QUORUM (default) or ALL.

The POST body requires the following field:

NameTypeRequiredDescription
objectsarray of data objectsyesArray of objects

Example requestโ€‹

caution

In the beacon format, you need to always use localhost as the host, rather than the actual hostname. localhost refers to the fact that the beacon's target is on the same Weaviate instance, as opposed to a foreign instance.

import weaviate

client = weaviate.Client("http://localhost:8080")

first_object_props = {
"name": "Jane Doe",
"writesFor": [{
"beacon": "weaviate://localhost/f81bfe5e-16ba-4615-a516-46c2ae2e5a80"
}]
}

second_object_props = {
"name": "John Doe",
"writesFor": [{
"beacon": "weaviate://localhost/f81bfe5e-16ba-4615-a516-46c2ae2e5a80"
}]
}

# Python client specific configurations can be set with `client.batch.configure`
# the settings can be applied to both `objects` AND `references`.
# You have to only set them once.
client.batch.configure(
# `batch_size` takes an `int` value to enable auto-batching
# (`None` is used for manual batching)
batch_size=100,
# dynamically update the `batch_size` based on import speed
dynamic=False,
# `timeout_retries` takes an `int` value to retry on time outs
timeout_retries=3,
# checks for batch-item creation errors
# this is the default in weaviate-client >= 3.6.0
callback=weaviate.util.check_batch_result,
consistency_level=weaviate.data.replication.ConsistencyLevel.ALL, # default QUORUM
)

with client.batch as batch:
# Add object without a custom vector.
# When using vectorization modules this can be used
# or when you don't want to set a vector
batch.add_data_object(first_object_props, "Author", "36ddd591-2dee-4e7e-a3cc-eb86d30a4303")
# Add object with a custom vector
batch.add_data_object(second_object_props, "Author", "36ddd591-2dee-4e7e-a3cc-eb86d30a4304", vector=[0.1, 0.2, 0.3])

Batch create objects with the Python Clientโ€‹

Specific documentation for the Python client can be found at weaviate-python-client.readthedocs.io. Learn more about different types of batching and tip&tricks on the Weaviate Python client page.

Batch create referencesโ€‹

For batch adding cross-references between data objects in bulk.

Method and URLโ€‹

POST /v1/batch/references

Parametersโ€‹

The URL supports an optional consistency level query parameter:

NameLocationTypeDescription
consistency_levelquery paramstringOptional consistency level: ONE, QUORUM (default) or ALL.

The POST body is an array of elements with the following fields:

NameTypeRequiredDescription
fromWeaviate Beacon (long-form)yesThe beacon, with the cross-reference property name at the end: weaviate://localhost/{ClassName}/{id}/{crefPropertyName}
toWeaviate Beacon (regular)yesThe beacon, formatted as weaviate://localhost/{ClassName}/{id}
caution

In the beacon format, you need to always use localhost as the host, rather than the actual hostname. localhost refers to the fact that the beacon's target is on the same Weaviate instance, as opposed to a foreign instance.

note

For backward compatibility, you can omit the class name in the short-form beacon format that is used for to. You can specify it as weaviate://localhost/{id}. This is, however, considered deprecated and will be removed with a future release, as duplicate IDs across classes could mean that this beacon is not uniquely identifiable. For the long-form beacon - used as part of from - you always need to specify the full beacon, including the reference property name.

Example requestโ€‹

import weaviate

client = weaviate.Client("http://localhost:8080")

# Python client specific configurations can be set with `client.batch.configure`
# the settings can be applied to both `objects` AND `references`.
# You have to only set them once.
client.batch.configure(
# `batch_size` takes an `int` value to enable auto-batching
# (`None` is used for manual batching)
batch_size=100,
# dynamically update the `batch_size` based on import speed
dynamic=False,
# `timeout_retries` takes an `int` value to retry on time outs
timeout_retries=3,
# checks for batch-item creation errors
# this is the default in weaviate-client >= 3.6.0
callback=weaviate.util.check_batch_result,
consistency_level=weaviate.data.replication.ConsistencyLevel.ALL, # default QUORUM
)

with client.batch as batch:
# Format for batching is as follows:
# client.batch.add_reference(
# from_object_uuid=<from_object_uuid>,
# from_object_class_name=<from_object_class_name>,
# from_property_name=<from_property_name>
# to_object_uuid=<to_object_uuid>,
# to_object_class_name=<to_object_class_name>,
# )
batch.add_reference(
from_object_uuid="36ddd591-2dee-4e7e-a3cc-eb86d30a4303",
from_object_class_name="Author",
from_property_name="wroteArticles",
to_object_uuid="6bb06a43-e7f0-393e-9ecf-3c0f4e129064",
to_object_class_name="Article",
)
batch.add_reference(
from_object_uuid="36ddd591-2dee-4e7e-a3cc-eb86d30a4303",
from_object_class_name="Author",
from_property_name="wroteArticles",
to_object_uuid="b72912b9-e5d7-304e-a654-66dc63c55b32",
to_object_class_name="Article",
)

For detailed information and instructions of batching in Python, see the weaviate.batch.Batch documentation.

Batch deleteโ€‹

You can use the HTTP verb DELETE on the /v1/batch/objects endpoint to delete all objects that match a particular expression. To determine if an object is a match, a where-Filter is used. The request body takes a single filter, but will delete all objects matched. It returns the number of matched objects as well as any potential errors. Note that there is a limit to how many objects can be deleted at once using this filter, which is explained below.

Maximum number of deletes per queryโ€‹

There is an upper limit to how many objects can be deleted using a single query. This protects against unexpected memory surges and very-long-running requests which would be prone to client-side timeouts or network interruptions. If a filter matches many objects, only the first n elements are deleted. You can configure n by setting QUERY_MAXIMUM_RESULTS in Weaviate's config. The default value is 10,000. Objects are deleted in the same order that they would be returned using the same filter in a Get query. To delete more objects than the limit, run the same query multiple times, until no objects are matched anymore.

Dry-run before deletionโ€‹

You can use the dry-run option to see which objects would be deleted using your specified filter, without deleting any objects yet. Depending on the configured verbosity, you will either receive the total count of affected objects, or a list of the affected IDs.

Method and URLโ€‹

DELETE /v1/batch/objects[?consistency_level=ONE|QUORUM|ALL]

Parametersโ€‹

The URL supports an optional consistency level query parameter:

NameLocationTypeDescription
consistency_levelquery paramstringOptional consistency level: ONE, QUORUM (default) or ALL.

The body requires the following fields:

NameTypeRequiredDescription
matchobjectyesObject outlining how to find the objects to be deleted (see example below)
outputstringnoOptional verbosity level, minimal (default) or verbose
dryRunboolnoIf true, objects will not be deleted yet, but merely listed. Defaults to false.

A request body in detailโ€‹

{
"match": {
"class": "<ClassName>", # required
"where": { /* where filter object */ }, # required
},
"output": "<output verbosity>", # Optional, one of "minimal" or "verbose". Defaults to "minimal".
"dryRun": <bool> # Optional. If true, objects will not be deleted yet, but merely listed. Defaults to "false".
}

Possible values for output:

ValueEffect
minimalThe result only includes counts. Information about objects is omitted if the deletes were successful. Only if an error occurred, will the object be described.
verboseThe result lists all affected objects with their ID and deletion status, including both successful and unsuccessful deletes.

A response body in detailโ€‹

{
"match": {
"class": "<ClassName>", # matches the request
"where": { /* where filter object */ }, # matches the request
},
"output": "<output verbosity>", # matches the request
"dryRun": <bool>,
"results": {
"matches": "<int>", # how many objects were matched by the filter
"limit": "<int>", # the most amount of objects that can be deleted in a single query, matches QUERY_MAXIMUM_RESULTS
"successful": "<int>", # how many objects were successfully deleted in this round
"failed": "<int>", # how many objects should have been deleted but could not be deleted
"objects": [{ # one JSON object per weaviate object
"id": "<id>", # this successfully deleted object would be omitted with output=minimal
"status": "SUCCESS", # possible status values are: "SUCCESS", "FAILED", "DRYRUN"
"error": null
}, {
"id": "<id>", # this error object will always be listed, even with output=minimal
"status": "FAILED",
"errors": {
"error": [{
"message": "<error-string>"
}]
}
}]
}
}

Example requestโ€‹

import weaviate

client = weaviate.Client("http://localhost:8080")

# Optionally set the consistency level
client.batch.consistency_level = weaviate.data.replication.ConsistencyLevel.ALL # default QUORUM
result = client.batch.delete_objects(
class_name="Author",
# same where operator as in the GraphQL API
where={
"operator": "Equal",
"path": ["name"],
"valueText": "Jane"
},
output="verbose",
dry_run=False
)

print(result)

Error handlingโ€‹

When sending a batch request to your Weaviate instance, it could be the case that an error occurs. This can be caused by several reasons, for example that the connection to Weaviate is lost or that there is a mistake in a single data object that you are trying to add.

You can check if an error occurred, and of what kind.

A batch request will always return an HTTP 200 status code when the batch request was successful. That means that the batch was successfully sent to Weaviate, and there were no issues with the connection or processing of the batch, and the request was not malformed (4xx status code). However, with a 200 status code, there might still be individual failures of the data objects which are not contained in the response. Thus, a 200 status code does not guarantee that each batch item has been added/created. An example of an error on an individual data object that might be unnoticed by sending a batch request without checking the individual results is this: adding an object to the batch that is in conflict with the schema (for example a non-existing class name).

The following Python code can be used to handle errors on individual data objects in the batch.

import weaviate

client = weaviate.Client("http://localhost:8080")


def check_batch_result(results: dict):
"""
Check batch results for errors.

Parameters
----------
results : dict
The Weaviate batch creation return value, i.e. returned value of the client.batch.create_objects().
"""

if results is not None:
for result in results:
if 'result' in result and 'errors' in result['result']:
if 'error' in result['result']['errors']:
print(result['result']['errors']['error'])

object_to_add = {
"name": "Jane Doe",
"writesFor": [{
"beacon": "weaviate://localhost/f81bfe5e-16ba-4615-a516-46c2ae2e5a80"
}]
}

with client.batch(batch_size=100, callback=check_batch_result) as batch:
batch.add_data_object(object_to_add, "Author", "36ddd591-2dee-4e7e-a3cc-eb86d30a4303")

This can also be applied to adding references in batch. Note that sending batches, especially references, skips some validations at the object and reference level. Adding this validation on single data objects like above makes it less likely for errors to go undiscovered.

More resourcesโ€‹

If you can't find the answer to your question here, please look at the:

  1. Frequently Asked Questions. Or,
  2. Knowledge base of old issues. Or,
  3. For questions: Stackoverflow. Or,
  4. For more involved discussion: Weaviate Community Forum. Or,
  5. We also have a Slack channel.