collection = client.collections.get("WineReview").with_consistency_level(ConsistencyLevel.ALL)
for item in collection.iterator():
print(print(item.uuid, item.properties))
Hi team , does the above retrieves all the objects present in the collection and read on repair happens parallely , regardless of no limit and after params given ?
Hey, just following up to this since I also would like this feature.
I want to run a process on each node in a collection and save if the process has been completed as a DoneProcessing boolean property in each node. Since I will be running on all nodes I should naturally be using your iterator class, but if my script fails and I need to start again I’d prefer not to read nodes that have already been processed. I know I can run queries with the boolean filter in a while loop, but it feels like an antipattern if you have an iterator class.
Great work with Weaviate btw, it’s an amazing tool!!
I’m not sure how your link helps. I’m not running with any replication, just a single-node local deployment.
In case what I described wasn’t clear here is some more background information. The process I’m running takes a node and calculates other nodes that may match it. If matches are found, I save them as references for that node. To track which nodes I’ve already run this matching process on I’ve created a boolean field called DoneProcessing and set all nodes to False. As my script iterates over all nodes and runs this matching process I update DoneProcessing to True.