I get an ECONNRESET error when I try to insert data (like a stream) into BigQuery using the google-cloud node module.
var writeToBigQuery = function(message,t){ var table = dataset.table(t); var options ={ "ignoreUnknownValues":true} table.insert(message,options,insertHandler); } var insertHandler = function(err, insertErrors, apiResponse) {
I am trying to write a file with some jsons. I know I can use the bigquery task, but I need to change some json values ββbefore writing them to bigquery.
Perhaps this is a local connection problem?
source share