this supposed read in csv , write bigquery. when runs, however, nothing written, , there no errors logged. read need write csv , turn octet stream. not sure whether or not compatible google bigquery. function test(){ try{ var tablereference = bigquery.newtablereference(); tablereference.setprojectid(project_id); tablereference.setdatasetid(datasetid); tablereference.settableid(tableid); var schema = "customer:string, classnum:integer, classdesc:string, csr:string, csr2:string, insurance:string, referralgeneral:string, referralspecific:string, notes:string, inmin:integer, inhr:integer, outmin:integer, outhr:integer, waitmin:integer, waithr:integer, datetimestamp:float, dateyr:integer,datemonth:integer, dateday:integer"; var load = bigquery.newjobconfigurationload(); load.setdestinationtable(tablereference); load.setsourceuris(uris); load.setsourceformat('newline_delimited_json'); load.setschema(schema); load.setmaxbadrecords(0); load.setwr...