TableDescriptor.Builder |
TableDescriptor.Builder.comment(String comment) |
Define the comment for this table.
|
TableDescriptor.Builder |
TableDescriptor.Builder.distributedBy(int numberOfBuckets,
String... bucketKeys) |
Defines that the table should be distributed into the given number of buckets by the
given columns.
|
TableDescriptor.Builder |
TableDescriptor.Builder.distributedBy(String... bucketKeys) |
Defines that the table should be distributed into buckets over the given columns.
|
TableDescriptor.Builder |
TableDescriptor.Builder.distributedByHash(int numberOfBuckets,
String... bucketKeys) |
Defines that the table should be distributed into the given number of buckets using a
hash algorithm over the given columns.
|
TableDescriptor.Builder |
TableDescriptor.Builder.distributedByHash(String... bucketKeys) |
Defines that the table should be distributed into buckets using a hash algorithm over the
given columns.
|
TableDescriptor.Builder |
TableDescriptor.Builder.distributedByRange(int numberOfBuckets,
String... bucketKeys) |
Defines that the table should be distributed into the given number of buckets using a
range algorithm over the given columns.
|
TableDescriptor.Builder |
TableDescriptor.Builder.distributedByRange(String... bucketKeys) |
Defines that the table should be distributed into buckets using a range algorithm over
the given columns.
|
TableDescriptor.Builder |
TableDescriptor.Builder.distributedInto(int numberOfBuckets) |
Defines that the table should be distributed into the given number of buckets.
|
static TableDescriptor.Builder |
TableDescriptor.forConnector(String connector) |
|
static TableDescriptor.Builder |
TableDescriptor.forManaged() |
Deprecated.
|
TableDescriptor.Builder |
TableDescriptor.Builder.format(String format) |
Defines the format to be used for this table.
|
TableDescriptor.Builder |
TableDescriptor.Builder.format(org.apache.flink.configuration.ConfigOption<String> formatOption,
FormatDescriptor formatDescriptor) |
Defines the format to be used for this table.
|
TableDescriptor.Builder |
TableDescriptor.Builder.format(FormatDescriptor formatDescriptor) |
Defines the format to be used for this table.
|
TableDescriptor.Builder |
TableDescriptor.Builder.option(String key,
String value) |
Sets the given option on the table.
|
<T> TableDescriptor.Builder |
TableDescriptor.Builder.option(org.apache.flink.configuration.ConfigOption<T> configOption,
T value) |
Sets the given option on the table.
|
TableDescriptor.Builder |
TableDescriptor.Builder.partitionedBy(String... partitionKeys) |
Define which columns this table is partitioned by.
|
TableDescriptor.Builder |
TableDescriptor.Builder.schema(org.apache.flink.table.api.Schema schema) |
|
TableDescriptor.Builder |
TableDescriptor.toBuilder() |
|