Interface PartitionCommitPolicy.Context

Enclosing interface:
PartitionCommitPolicy

public static interface PartitionCommitPolicy.Context
Context of policy, including table information and partition information.
  • Method Details

    • catalogName

      String catalogName()
      Catalog name of this table.
    • databaseName

      String databaseName()
      Database name of this table.
    • tableName

      String tableName()
      Table name.
    • partitionKeys

      List<String> partitionKeys()
      Table partition keys.
    • partitionValues

      List<String> partitionValues()
      Values of this partition.
    • partitionPath

      org.apache.flink.core.fs.Path partitionPath()
      Path of this partition.
    • partitionSpec

      default LinkedHashMap<String,String> partitionSpec()
      Partition spec in the form of a map from partition keys to values.