public abstract static class HCatalogIO.Read extends PTransform<PBegin,PCollection<org.apache.hive.hcatalog.data.HCatRecord>>
PTransform
to read data using HCatalog.name, resourceHints
Constructor and Description |
---|
Read() |
Modifier and Type | Method and Description |
---|---|
PCollection<org.apache.hive.hcatalog.data.HCatRecord> |
expand(PBegin input)
Override this method to specify how this
PTransform should be expanded on the given
InputT . |
void |
populateDisplayData(DisplayData.Builder builder)
Register display data for the given transform or component.
|
HCatalogIO.Read |
withConfigProperties(java.util.Map<java.lang.String,java.lang.String> configProperties)
Sets the configuration properties like metastore URI.
|
HCatalogIO.Read |
withDatabase(java.lang.String database)
Sets the database name.
|
HCatalogIO.Read |
withFilter(java.lang.String filter)
Sets the filter details.
|
HCatalogIO.Read |
withPartitionCols(java.util.List<java.lang.String> partitionCols)
Set the names of the columns that are partitions.
|
HCatalogIO.Read |
withPollingInterval(Duration pollingInterval)
If specified, polling for new partitions will happen at this periodicity.
|
HCatalogIO.Read |
withTable(java.lang.String table)
Sets the table name to read from.
|
HCatalogIO.Read |
withTerminationCondition(Watch.Growth.TerminationCondition<HCatalogIO.Read,?> terminationCondition)
If specified, the poll function will stop polling after the termination condition has been
satisfied.
|
compose, compose, getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, setResourceHints, toString, validate, validate
public HCatalogIO.Read withConfigProperties(java.util.Map<java.lang.String,java.lang.String> configProperties)
public HCatalogIO.Read withDatabase(java.lang.String database)
public HCatalogIO.Read withTable(java.lang.String table)
public HCatalogIO.Read withFilter(java.lang.String filter)
public HCatalogIO.Read withPollingInterval(Duration pollingInterval)
public HCatalogIO.Read withPartitionCols(java.util.List<java.lang.String> partitionCols)
public HCatalogIO.Read withTerminationCondition(Watch.Growth.TerminationCondition<HCatalogIO.Read,?> terminationCondition)
public PCollection<org.apache.hive.hcatalog.data.HCatRecord> expand(PBegin input)
PTransform
PTransform
should be expanded on the given
InputT
.
NOTE: This method should not be called directly. Instead apply the PTransform
should
be applied to the InputT
using the apply
method.
Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
expand
in class PTransform<PBegin,PCollection<org.apache.hive.hcatalog.data.HCatRecord>>
public void populateDisplayData(DisplayData.Builder builder)
PTransform
populateDisplayData(DisplayData.Builder)
is invoked by Pipeline runners to collect
display data via DisplayData.from(HasDisplayData)
. Implementations may call super.populateDisplayData(builder)
in order to register display data in the current namespace,
but should otherwise use subcomponent.populateDisplayData(builder)
to use the namespace
of the subcomponent.
By default, does not register any display data. Implementors may override this method to provide their own display data.
populateDisplayData
in interface HasDisplayData
populateDisplayData
in class PTransform<PBegin,PCollection<org.apache.hive.hcatalog.data.HCatRecord>>
builder
- The builder to populate with display data.HasDisplayData