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
The following Bigquery query discovers 300+ times traceroute-caller was called multiple times for a given UUID:
with
uuids as (
SELECTCOUNT(*) as count, uuid, Parseinfo.TaskFileNameas fname
FROM`mlab-staging.batch.traceroute`group by uuid, Parseinfo.TaskFileName
)
select uuid, fname from uuids where count >1and uuid !=""
This seems pretty obviously incorrect, and we should fix it. Note that the UUID appearing multiple times here is in fact correct - it's the same connection (and so the same UUID) causing multiple calls to scamper's traceroute system.
The text was updated successfully, but these errors were encountered:
The following Bigquery query discovers 300+ times traceroute-caller was called multiple times for a given UUID:
This seems pretty obviously incorrect, and we should fix it. Note that the UUID appearing multiple times here is in fact correct - it's the same connection (and so the same UUID) causing multiple calls to scamper's traceroute system.
The text was updated successfully, but these errors were encountered: