Hi team , getting below mentioned error while batch importing and try to fetch failed objects
with collection_tgt.batch.fixed_size(batch_size=100) as batch:
for q in tqdm(collection_src.iterator(include_vector=True)):
batch.add_object(
properties=q.properties,
vector=q.vector[“default”],
uuid=q.uuid
)
failed_objects = batch.failed_objects
print(failed_objects)
AttributeError: ‘_BatchCollection’ object has no attribute ‘failed_objects’
Python client: v4.4.4