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
from qdrant_client import QdrantClient
client = QdrantClient('http://localhost:6333')
collection_name = 'test'
offset = 0
while offset is not None:
response, offset_id = client.scroll(collection_name=collection_name, offset=offset, limit=1000)
offset = offset_id
for r in response:
r.payload['random'] = random # Put here whatever values you want
client.set_payload(
collection_name=collection_name,
payload=r.payload,
points=[r.id]
)
Gives an error in Windows if the collection has a lot of points (~40.000 in this test) with sockets: OSError: [WinError 10048] Only one usage of each socket address (protocol/networ address/port) is normally permitted
With grpc it works fine
The text was updated successfully, but these errors were encountered:
The following code:
Gives an error in Windows if the collection has a lot of points (~40.000 in this test) with sockets:
OSError: [WinError 10048] Only one usage of each socket address (protocol/networ address/port) is normally permitted
With grpc it works fine
The text was updated successfully, but these errors were encountered: