Closed milen-yordanov closed 4 years ago
Running the server with BigQuery storage causes errors like: No such field: audioGoogResidualEchoLikelihoodRecentMaxMean
No such field: audioGoogResidualEchoLikelihoodRecentMaxMean
I suppose the workaround for this case is to use config.fields and to specify ALL columns in the table.
Wouldn't it be better to modify
bigquery .dataset(config.dataset) .table(config.table) .load(filename, { format: 'JSON'})
to
bigquery .dataset(config.dataset) .table(config.table) .load(filename, { format: 'JSON', ignoreUnknownValues: true })
That sounds like a better solution indeed, thank you! @juandebravo can you give the PR a spin?
Running the server with BigQuery storage causes errors like:
No such field: audioGoogResidualEchoLikelihoodRecentMaxMean
I suppose the workaround for this case is to use config.fields and to specify ALL columns in the table.
Wouldn't it be better to modify
to