Uses of Class
org.apache.flink.table.api.TableDescriptor.Builder
Packages that use TableDescriptor.Builder
-
Uses of TableDescriptor.Builder in org.apache.flink.table.api
Methods in org.apache.flink.table.api that return TableDescriptor.BuilderModifier and TypeMethodDescriptionDefine the comment for this table.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.distributedBy(String... bucketKeys) Defines that the table should be distributed into buckets over the given columns.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.distributedByHash(String... bucketKeys) Defines that the table should be distributed into buckets using a hash algorithm over the given columns.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.distributedByRange(String... bucketKeys) Defines that the table should be distributed into buckets using a range algorithm over the given columns.TableDescriptor.Builder.distributedInto(int numberOfBuckets) Defines that the table should be distributed into the given number of buckets.static TableDescriptor.BuilderTableDescriptor.forConnector(String connector) Creates a newTableDescriptor.Builderfor a table using the given connector.Defines theformatto be used for this table.TableDescriptor.Builder.format(org.apache.flink.configuration.ConfigOption<String> formatOption, FormatDescriptor formatDescriptor) Defines the format to be used for this table.TableDescriptor.Builder.format(FormatDescriptor formatDescriptor) Defines the format to be used for this table.Sets the given option on the table.TableDescriptor.Builder.option(org.apache.flink.configuration.ConfigOption<T> configOption, T value) Sets the given option on the table.TableDescriptor.Builder.partitionedBy(String... partitionKeys) Define which columns this table is partitioned by.TableDescriptor.Builder.schema(org.apache.flink.table.api.Schema schema) Define the schema of theTableDescriptor.TableDescriptor.toBuilder()Converts this immutable instance into a mutableTableDescriptor.Builder.