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
Hello. I'm trying to save around 560 000 tuples. I tried to do it in 1 query - The limit for GRPC message limit has been hit and i can't seem to set it in settings. Then i tried splitting the queries into 1000 writes per request. This is pseudocode of what i'm doing right now:
var chunks = lotsOfTuples.Chunk(1000);
foreach(var chunk in chunks)
{
await client.WriteTupleAsync(chunk);
}
The problem i'm getting is that there are duplicate tuples being written, despite there being none.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello. I'm trying to save around 560 000 tuples. I tried to do it in 1 query - The limit for GRPC message limit has been hit and i can't seem to set it in settings. Then i tried splitting the queries into 1000 writes per request. This is pseudocode of what i'm doing right now:
The problem i'm getting is that there are duplicate tuples being written, despite there being none.
Beta Was this translation helpful? Give feedback.
All reactions