You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@storm.apache.org by arunmahadevan <gi...@git.apache.org> on 2017/08/07 15:46:47 UTC

[GitHub] storm pull request #2233: Storm 2258: Streams api - support CoGroupByKey

Github user arunmahadevan commented on a diff in the pull request:

    https://github.com/apache/storm/pull/2233#discussion_r131690416
  
    --- Diff: storm-client/src/jvm/org/apache/storm/streams/PairStream.java ---
    @@ -380,6 +383,22 @@
             return partitionBy(KEY).updateStateByKeyPartition(stateUpdater);
         }
     
    +    /**
    +     * group the values of this stream with the values having the same key from the other stream.
    --- End diff --
    
    May be here and in the Streams API doc add a snippet to make it clear:
    
    ```
    If stream1 has values - (k1, v1), (k2, v2), (k2, v3) 
    and stream2 has values - (k1, x1), (k1, x2), (k3, x3)
    
    The the co-grouped stream would contain -
    (k1, ([v1], [x1, x2]), (k2, ([v2, v3], [])), (k3, ([], [x3]))
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---