To put it in context, I have a bucket where I storage CSV files and a function that works to put that Data into a Database when you load new CSV into the bucket. I try to upload 100 CSV at the same time, in all, 581.100 records (70 MB) All of those files appears in my bucket and a new table is created. But when I do a “select count” I only found 267306 records (46 % of the total) I try to do it again, different bucket, function, and table, I try to upload another 100 files, 4.779.100 records this time (312 MB) When I check the table in big query I realize that only 2.293.920 records exist (47,9%) of the one that supposedly exist. So my question is, is there a way in which I can upload all the CSV that I want without losing data? Or does GCP have some restriction for that task? Thank you.
