Background
I am trying to load a json file x.json using bq cli.
cat x.json
{"name":"xyz","mobile":"xxx","location":"abc"}
{"name":"xyz","mobile":"xxx","age":"22"}
Command Used
bq load --autodetect --source_format=NEWLINE_DELIMITED_JSON project:test_datasets.cust x.json
'cust' is a table with empty schema.
I am using '--autodetect ,so that BigQuery autodetects schema.
Output
Upload complete.
Waiting on bqjob_r475558282b85c552_000001569cf1efd8_1 ... (1s) Current status: DONE
BigQuery error in load operation: Error processing job 'project:bqjob_r475558282b85c552_000001569cf1efd8_1': An internal error occurred and the request could not be completed.
Any thoughts on ,why Internal error occurs and how to resolve it?