What exactly does “new-lines in strings” mean?
https://developers.google.com/bigquery/docs/quota-policy#import
How to check and remove it?
Import Jobs: Daily limit: 1,000 import jobs per table per day (including failures), 10,000 import jobs per project per day (including failures)
Maximum size per import job: 1TB uncompressed
Maximum number of files per import job: 500
newlines in strings refers to embedded newline characters within CSV field values. this makes it difficult to parallelize imports.
e.g.: 2 lines, the first has an embedded newline:
The BigQuery importer has the “–noallow_quoted_newlines” option, which signifies the file doesn’t contain any embedded newlines.
https://developers.google.com/bigquery/articles/ingestioncookbook#atomic
https://developers.google.com/bigquery/articles/ingestioncookbook