MCPcopy Create free account
hub / github.com/apache/storm / join

Method join

storm-client/src/jvm/org/apache/storm/bolt/JoinBolt.java:89–91  ·  view source on GitHub ↗

Performs inner Join with the newStream. SQL: from priorStream inner join newStream on newStream.field = priorStream.field1 same as: new WindowedQueryBolt(priorStream,field1). join(newStream, field, priorStream); Note: priorStream must be previously joined. Valid ex: n

(String newStream, String field, String priorStream)

Source from the content-addressed store, hash-verified

87 * @param field the field on which to perform the join
88 */
89 public JoinBolt join(String newStream, String field, String priorStream) {
90 return joinCommon(newStream, field, priorStream, JoinType.INNER);
91 }
92
93 /**
94 * Performs left Join with the newStream. SQL : from stream1 left join stream2 on stream2.field = stream1.field1 same as: new

Callers 1

FieldSelectorMethod · 0.45

Calls 1

joinCommonMethod · 0.95

Tested by

no test coverage detected