I am having a issue in loading larger file on Google's BigQuery. The problem is when I am loading file less than 1000 lines, it is loading without any error, but when i am loading file more than 10000 lines I am getting load error.
BigQuery error in load operation: Error processing job '......': Too many errors encountered.
The job is to export data from Redshift and load it into BigQuery. Here is how I am doing the job (steps):
1. Using "Unload" command, I am exporting Redshift table (having more than 160 columns) as a CSV file into S3
2. Transferring data to Google Cloud
3. Creating a table in BigQuery by specifying data source as Google Cloud bucket.
Note: I have used almost all options in Redshift "Unload" command, but seems like BigQuery is not understanding the file format for bigger files.
Can anyone suggest what could be the issue here?