如何使用Cloud Dataflow将两个或多个密钥上的BQ表连接起来?

时间:2018-05-04 13:19:43

标签: java google-cloud-platform google-bigquery google-cloud-dataflow

我有两个表A和B.它们都有字段session_idcookie_id。 如何创建一个Joined表输出,在session_idcookie_id的帮助下,使用Dataflow管道连接A和B? CoGroupByKey方法允许您加入单个密钥。在文档中找不到任何有用的东西。

2 个答案:

答案 0 :(得分:5)

扩展user9720010的答案。您可以通过将字段映射到session_idcookie_id的组合来创建复合键。此模式在常见的Dataflow用例模式blog中进行了解释。假设您使用的是BigQuery,您可以执行类似以下操作:

Pipeline pipeline = Pipeline.create(options);

// Create tuple tags for the value types in each collection.
final TupleTag<TableRow> table1Tag = new TupleTag<>();
final TupleTag<TableRow> table2Tag = new TupleTag<>();

// Transform for keying table rows by session_id and cookie_id
WithKeys<String, TableRow> sessionAndCookieKeys = WithKeys.of(
    (TableRow row) ->
        String.format("%s#%s",
            row.get("session_id"),
            row.get("cookie_id")))
    .withKeyType(TypeDescriptors.strings());

/*
 * Steps:
 *  1) Read table 1's rows
 *  2) Read table 2's rows
 *  3) Map each row to a composite key
 *  4) Join on the composite key
 *  5) Process the results
 */
PCollection<KV<String, TableRow>> table1Rows = pipeline
    .apply(
        "ReadTable1",
        BigQueryIO
            .readTableRows()
            .from(options.getTable1()))
    .apply("WithKeys", sessionAndCookieKeys);

PCollection<KV<String, TableRow>> table2Rows = pipeline
    .apply(
        "ReadTable2",
        BigQueryIO
            .readTableRows()
            .from(options.getTable2()))
    .apply("WithKeys", sessionAndCookieKeys);

//Merge collection values into a CoGbkResult collection
PCollection<KV<String, CoGbkResult>> coGbkResult = KeyedPCollectionTuple
    .of(table1Tag, table1Rows)
    .and(table2Tag, table2Rows)
    .apply("JoinOnSessionAndCookie", CoGroupByKey.create());

// Process the results
coGbkResult.apply(
    "ProcessResults", 
    ParDo.of(new DoFn<KV<String, CoGbkResult>, Object>() {
      @ProcessElement
      public void processElement(ProcessContext context) {
        // Do something here
      }
    }));

答案 1 :(得分:2)

我在这种情况下遵循的一种方法是创建一个ad hoc密钥,它是两个密钥的组合。 发布读取数据,在转换为键值对时,我会输出session_id $ cookie_id作为单个连接字符串。这里$可以是任何不形成两个键的字符集的分隔符。分隔符也可以忽略。