Video upload date:  · Duration: PT1H46M27S  · Language: EN

Your colleague has requested your input on the gcp video

developer-professional video for your colleague has requested your input on the following code snippet, which aims to efficiently add a substantial number of

This is a dedicated watch page for a single video.

Full Certification Question

Your colleague has requested your input on the following code snippet, which aims to efficiently add a substantial number of small rows to a BigQuery table. BigQuery service = BigQueryOptions.newBuilder().build().getService(); for (Map row : rows) { public void writeToBigQuery(Collection> rows) { InsertAllRequest insertRequest = InsertAllRequest.newBuilder( "datasetId", "tableId", InsertAllRequest.RowToInsert.of(row)).build(); service.insertAll(insertRequest); } } What improvement should you suggest to your colleague?