使用java.With out使用作业加载数据,将json Data引入Bigquery

时间:2018-02-09 12:08:18

标签: java json google-bigquery

我是bigquery的新手,所以我不完全了解如何将数据流式传输到bigquery,这是我的问题,我有jsonInString,从这样的对象映射

    String customerJsonInString = mapper.writeValueAsString(customer);

   {
  "id": "1",
  "first_name": "John",
  "last_name": "Doe",
  "dob": "1968-01-22",
  "addresses": [
    {
      "status": "current",
      "address": "123 First Avenue",
      "city": "Seattle",
      "state": "WA",
      "zip": "11111",
      "numberOfYears": "1"
    },
    {
      "status": "previous",
      "address": "456 Main Street",
      "city": "Portland",
      "state": "OR",
      "zip": "22222",
      "numberOfYears": "5"
    }
  ]
}

已使用正确的架构创建表。 现在我想将这些数据流式传输到bigquery(插入行),我正在使用(https://cloud.google.com/bigquery/streaming-data-into-bigquery#bigquery-stream-data-java)上的示例来使其适应我的,这就是我尝试过的,

TableId tableId = TableId.of(DATASET_NAME,TABLE_NAME);
        Map<String, Object> recordsContent = new HashMap<>();
        recordsContent.put("Customer", customerJsonInString);
        InsertAllResponse response = bigquery.insertAll(InsertAllRequest.newBuilder(tableId)
                        .addRow("rowId", recordsContent)
                        .build());
        if (response.hasErrors()) {
            for (Entry<Long, List<BigQueryError>> entry : response.getInsertErrors().entrySet()) {
            }
        }

1 个答案:

答案 0 :(得分:0)

我猜这个表的架构是id, first_name, last_name, ...而不是customer?在这种情况下,您需要逐个设置字段而不是整个json字符串,例如recordsContent.put("id", 1)
查看example with comments