StorageDescriptor.Builder |
StorageDescriptor.Builder.additionalLocations(String... additionalLocations) |
A list of locations that point to the path where a Delta table is located.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.additionalLocations(Collection<String> additionalLocations) |
A list of locations that point to the path where a Delta table is located.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.bucketColumns(String... bucketColumns) |
A list of reducer grouping columns, clustering columns, and bucketing columns in the table.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.bucketColumns(Collection<String> bucketColumns) |
A list of reducer grouping columns, clustering columns, and bucketing columns in the table.
|
static StorageDescriptor.Builder |
StorageDescriptor.builder() |
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.columns(Collection<Column> columns) |
A list of the Columns in the table.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.columns(Consumer<Column.Builder>... columns) |
A list of the Columns in the table.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.columns(Column... columns) |
A list of the Columns in the table.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.compressed(Boolean compressed) |
True if the data in the table is compressed, or False if not.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.inputFormat(String inputFormat) |
The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom
format.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.location(String location) |
The physical location of the table.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.numberOfBuckets(Integer numberOfBuckets) |
Must be specified if the table contains any dimension columns.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.outputFormat(String outputFormat) |
The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat,
or a custom format.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.parameters(Map<String,String> parameters) |
The user-supplied properties in key-value form.
|
default StorageDescriptor.Builder |
StorageDescriptor.Builder.schemaReference(Consumer<SchemaReference.Builder> schemaReference) |
An object that references a schema stored in the Glue Schema Registry.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.schemaReference(SchemaReference schemaReference) |
An object that references a schema stored in the Glue Schema Registry.
|
default StorageDescriptor.Builder |
StorageDescriptor.Builder.serdeInfo(Consumer<SerDeInfo.Builder> serdeInfo) |
The serialization/deserialization (SerDe) information.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.serdeInfo(SerDeInfo serdeInfo) |
The serialization/deserialization (SerDe) information.
|
default StorageDescriptor.Builder |
StorageDescriptor.Builder.skewedInfo(Consumer<SkewedInfo.Builder> skewedInfo) |
The information about values that appear frequently in a column (skewed values).
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.skewedInfo(SkewedInfo skewedInfo) |
The information about values that appear frequently in a column (skewed values).
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.sortColumns(Collection<Order> sortColumns) |
A list specifying the sort order of each bucket in the table.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.sortColumns(Consumer<Order.Builder>... sortColumns) |
A list specifying the sort order of each bucket in the table.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.sortColumns(Order... sortColumns) |
A list specifying the sort order of each bucket in the table.
|
StorageDescriptor.Builder |
StorageDescriptor.Builder.storedAsSubDirectories(Boolean storedAsSubDirectories) |
True if the table data is stored in subdirectories, or False if not.
|
StorageDescriptor.Builder |
StorageDescriptor.toBuilder() |
|