Reputation: 476
Since this morning, I have many issues with Google BigQuery service.
My logs seems to disappear after few minutes. It's reproductible.
Here you can see a sample test with the issue.
SELECT * FROM [mytable]
ORDER BY date DESC
LIMIT 1000
2) After, a new log insertion, the previous one is deleted and the new one is not visible
3) After few more seconds, the new log is visible
This loop from 1 to 3 is infinite. If I insert a new log, the case 2) then 3) will happened.
I use BigQuery for more than 2 years, it's the first time this issue happened on my account.
Have you any idea on what's going on?
Thanks!
Upvotes: 1
Views: 60
Reputation: 173028
If you are using insertAll - check insertId property.
My guess is - it possible that you have it the same for your respective inserts - thus they treatred as duplicates and being removed/deleted and latest survives
Upvotes: 1