gpt4 book ai didi

java - 使用 Java 将 JSON 流式传输到 BigQuery

转载 作者:行者123 更新时间:2023-12-02 02:41:11 25 4
gpt4 key购买 nike

我正在尝试使用类似于this page上的教程的Java驱动程序将数据流式传输到BigQuery中它将数据从 map 插入到 BigQuery 表中。 The v2 of the streaming rest API支持在插入时将行指定为 JSON,因此我想知道是否可以使用 Java 驱动程序将 JSON 流式传输到 bigquery,而不必像下面的示例那样使用映射。

Map<String, Object> rowContent = new HashMap<>();
rowContent.put("booleanField", true);
// Bytes are passed in base64
rowContent.put("bytesField", "Cg0NDg0="); // 0xA, 0xD, 0xD, 0xE, 0xD in base64
// Records are passed as a map
Map<String, Object> recordsContent = new HashMap<>();
recordsContent.put("stringField", "Hello, World!");
rowContent.put("recordField", recordsContent);
InsertAllResponse response = bigquery.insertAll(InsertAllRequest.newBuilder(tableId)
.addRow("rowId", rowContent)
// More rows can be added in the same RPC by invoking .addRow() on the builder
.build());

即有没有办法运行 bigquery.insertAll 但传入 json 字符串而不是 Map?

最佳答案

最终使用 Jackson 使用 ObjectMapper 类将 JSON 字符串转换为 Map,然后使用与 Google 网站上的示例相同的方式上传,以流式传输到 Java 中的 BigQuery。

BigQuery bigquery = BigQueryOptions.getDefaultInstance().getService();
TableId tableId = TableId.of("dataset_name", "table_name");
try {
HashMap<String,Object> mapResult = new ObjectMapper().readValue(json_string, HashMap.class);
InsertAllResponse response = bigquery.insertAll(InsertAllRequest.newBuilder(tableId)
.addRow(UUID.randomUUID().toString(), mapResult)
.build());
if (response.hasErrors()) {
// If any of the insertions failed, this lets you inspect the errors
for (Entry<Long, List<BigQueryError>> entry : response.getInsertErrors().entrySet()) {
System.out.println(entry);
}
}
} catch (IOException e) {
// Failed to Map JSON String
System.out.println(e);
}

关于java - 使用 Java 将 JSON 流式传输到 BigQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45424762/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com