Interface PartitionCommitPolicy.Context
- Enclosing interface:
- PartitionCommitPolicy
public static interface PartitionCommitPolicy.Context
Context of policy, including table information and partition information.
-
Method Summary
Modifier and TypeMethodDescriptionCatalog name of this table.Database name of this table.Table partition keys.org.apache.flink.core.fs.PathPath of this partition.default LinkedHashMap<String,String> Partition spec in the form of a map from partition keys to values.Values of this partition.Table name.
-
Method Details
-
catalogName
String catalogName()Catalog name of this table. -
databaseName
String databaseName()Database name of this table. -
tableName
String tableName()Table name. -
partitionKeys
Table partition keys. -
partitionValues
Values of this partition. -
partitionPath
org.apache.flink.core.fs.Path partitionPath()Path of this partition. -
partitionSpec
Partition spec in the form of a map from partition keys to values.
-