You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function rate_limit is not working if Weaviate is configured in async indexing mode:
with open(dataset_path, "r") as f:
collection.batch.rate_limit(100)
with collection.batch.dynamic() as batch:
for raw_json_email in f:
email = json.loads(raw_json_email)
batch.add_object(
properties=email["data"],
uuid=email["id"],
)
The batches have 1000 objects, no mater the rate configured.
The text was updated successfully, but these errors were encountered:
Using the Python client in its version 4.10.4
The function rate_limit is not working if Weaviate is configured in async indexing mode:
The batches have 1000 objects, no mater the rate configured.
The text was updated successfully, but these errors were encountered: