Class BigtableTableProvider
- java.lang.Object
-
- org.apache.beam.sdk.extensions.sql.meta.provider.InMemoryMetaTableProvider
-
- org.apache.beam.sdk.extensions.sql.meta.provider.bigtable.BigtableTableProvider
-
- All Implemented Interfaces:
TableProvider
@Internal @AutoService(TableProvider.class) public class BigtableTableProvider extends InMemoryMetaTableProvider
TableProviderforBigtableTable.A sample of BigTable table is:
{@code CREATE EXTERNAL TABLE beamTable( key VARCHAR NOT NULL, familyTest ROW< boolColumn BOOLEAN NOT NULL, longColumnWithTsAndLabels ROW< val BIGINT NOT NULL, timestampMicros BIGINT NOT NULL, labels VARCHAR > NOT NULL, stringArrayColumn ARRAYNOT NULL, doubleColumn DOUBLE NOT NULL, binaryColumn BINARY NOT NULL > NOT NULL ) TYPE 'bigtable' LOCATION 'googleapis.com/bigtable/projects/ /instances/ /tables/ ' Flat-schema table is also supported. It requires an additional property "columnsMapping" which describes which familyColumn describes which value in the form "familyName:columnQualifier":
{@code CREATE EXTERNAL TABLE beamTable( key VARCHAR NOT NULL, boolColumn BOOLEAN NOT NULL, longColumn BIGINT NOT NULL, stringColumn VARCHAR NOT NULL, doubleColumn DOUBLE NOT NULL, binaryColumn BINARY NOT NULL ) TYPE 'bigtable' LOCATION 'googleapis.com/bigtable/projects//instances/ /tables/ ' TBLPROPERTIES '{ "columnsMapping": "f:boolColumn,f:longColumn,f:stringColumn,f2:doubleColumn,f2:binaryColumn" }'
-
-
Constructor Summary
Constructors Constructor Description BigtableTableProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BeamSqlTablebuildBeamSqlTable(Table table)Build aBeamSqlTableusing the given table meta info.java.lang.StringgetTableType()Gets the table type this provider handles.-
Methods inherited from class org.apache.beam.sdk.extensions.sql.meta.provider.InMemoryMetaTableProvider
createTable, dropTable, getTables
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.beam.sdk.extensions.sql.meta.provider.TableProvider
getSubProvider, getSubProviders, getTable, supportsPartitioning
-
-
-
-
Method Detail
-
getTableType
public java.lang.String getTableType()
Description copied from interface:TableProviderGets the table type this provider handles.
-
buildBeamSqlTable
public BeamSqlTable buildBeamSqlTable(Table table)
Description copied from interface:TableProviderBuild aBeamSqlTableusing the given table meta info.
-
-