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
for an internal project, we need to regularly get data from caluclated insights. I wrote a simple automation to get the data on a schedule using the cursor.fetchall() method.
Unfortunately this fails roughly half the time with a RemoteDisconnectError. We expect roughly 5.000.000 rows and i suspect one of the QuerySubmitter.get_next_batch(cur.connection, cur.next_batch_id) fails and won't retry.
Hi,
for an internal project, we need to regularly get data from caluclated insights. I wrote a simple automation to get the data on a schedule using the
cursor.fetchall()
method.Unfortunately this fails roughly half the time with a RemoteDisconnectError. We expect roughly 5.000.000 rows and i suspect one of the
QuerySubmitter.get_next_batch(cur.connection, cur.next_batch_id)
fails and won't retry.Is there any retry method built-in? Can't find one on first glance
The text was updated successfully, but these errors were encountered: