Interface BeamSqlSeekableTable
-
- All Superinterfaces:
java.io.Serializable
@Experimental public interface BeamSqlSeekableTable extends java.io.SerializableA seekable table converts a JOIN operator to an inline lookup. It's triggered bySELECT * FROM FACT_TABLE JOIN LOOKUP_TABLE ON ....
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.util.List<org.apache.beam.sdk.values.Row>seekRow(org.apache.beam.sdk.values.Row lookupSubRow)return a list ofRowwith given key set.default voidsetUp()prepare the instance.default voidtearDown()cleanup resources of the instance.
-