requestRow.setJson(row);
requestRow.setInsertId(insertId);
rowList.add(requestRow);
}
TableDataInsertAllRequest content = new TableDataInsertAllRequest().setRows(rowList);
TableDataInsertAllResponse response = bigquery.tabledata().insertAll(projectId, datasetId, tableId, content).execute();
if (response.getInsertErrors() != null && response.getInsertErrors().size() > 0) {
logInsertErrors(response.getInsertErrors(), rows);
}