io.trino.plugin.deltalake.DeltaLakeTableProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trino-delta-lake Show documentation
Show all versions of trino-delta-lake Show documentation
Trino - Delta Lake connector
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.trino.plugin.deltalake;
import com.google.common.collect.ImmutableList;
import com.google.inject.Inject;
import io.trino.plugin.deltalake.transactionlog.DeltaLakeSchemaSupport.ColumnMappingMode;
import io.trino.spi.TrinoException;
import io.trino.spi.session.PropertyMetadata;
import io.trino.spi.type.ArrayType;
import java.util.Collection;
import java.util.EnumSet;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import static com.google.common.collect.ImmutableList.toImmutableList;
import static io.trino.spi.StandardErrorCode.INVALID_TABLE_PROPERTY;
import static io.trino.spi.session.PropertyMetadata.booleanProperty;
import static io.trino.spi.session.PropertyMetadata.longProperty;
import static io.trino.spi.session.PropertyMetadata.stringProperty;
import static io.trino.spi.type.VarcharType.VARCHAR;
import static java.lang.String.format;
import static java.util.Locale.ENGLISH;
public class DeltaLakeTableProperties
{
public static final String LOCATION_PROPERTY = "location";
public static final String PARTITIONED_BY_PROPERTY = "partitioned_by";
public static final String CHECKPOINT_INTERVAL_PROPERTY = "checkpoint_interval";
public static final String CHANGE_DATA_FEED_ENABLED_PROPERTY = "change_data_feed_enabled";
public static final String COLUMN_MAPPING_MODE_PROPERTY = "column_mapping_mode";
private final List> tableProperties;
@SuppressWarnings("unchecked")
@Inject
public DeltaLakeTableProperties()
{
tableProperties = ImmutableList.>builder()
.add(stringProperty(
LOCATION_PROPERTY,
"File system location URI for the table",
null,
false))
.add(new PropertyMetadata<>(
PARTITIONED_BY_PROPERTY,
"Partition columns",
new ArrayType(VARCHAR),
List.class,
ImmutableList.of(),
false,
value -> ((Collection) value).stream()
.map(name -> name.toLowerCase(ENGLISH))
.collect(toImmutableList()),
value -> value))
.add(longProperty(
CHECKPOINT_INTERVAL_PROPERTY,
"Checkpoint interval",
null,
false))
.add(booleanProperty(
CHANGE_DATA_FEED_ENABLED_PROPERTY,
"Enables storing change data feed entries",
null,
false))
.add(stringProperty(
COLUMN_MAPPING_MODE_PROPERTY,
"Column mapping mode. Possible values: [ID, NAME, NONE]",
// TODO: Consider using 'name' by default. 'none' column mapping doesn't support some statements
ColumnMappingMode.NONE.name(),
value -> {
EnumSet allowed = EnumSet.of(ColumnMappingMode.ID, ColumnMappingMode.NAME, ColumnMappingMode.NONE);
if (allowed.stream().map(Enum::name).noneMatch(mode -> mode.equalsIgnoreCase(value))) {
throw new IllegalArgumentException(format("Invalid value [%s]. Valid values: [ID, NAME, NONE]", value));
}
},
false))
.build();
}
public List> getTableProperties()
{
return tableProperties;
}
public static String getLocation(Map tableProperties)
{
return (String) tableProperties.get(LOCATION_PROPERTY);
}
public static List getPartitionedBy(Map tableProperties)
{
List partitionedBy = (List) tableProperties.get(PARTITIONED_BY_PROPERTY);
return partitionedBy == null ? ImmutableList.of() : ImmutableList.copyOf(partitionedBy);
}
public static Optional getCheckpointInterval(Map tableProperties)
{
Optional checkpointInterval = Optional.ofNullable((Long) tableProperties.get(CHECKPOINT_INTERVAL_PROPERTY));
checkpointInterval.ifPresent(value -> {
if (value <= 0) {
throw new TrinoException(INVALID_TABLE_PROPERTY, format("%s must be greater than 0", CHECKPOINT_INTERVAL_PROPERTY));
}
});
return checkpointInterval;
}
public static Optional getChangeDataFeedEnabled(Map tableProperties)
{
return Optional.ofNullable((Boolean) tableProperties.get(CHANGE_DATA_FEED_ENABLED_PROPERTY));
}
public static ColumnMappingMode getColumnMappingMode(Map tableProperties)
{
return ColumnMappingMode.valueOf(tableProperties.get(COLUMN_MAPPING_MODE_PROPERTY).toString().toUpperCase(ENGLISH));
}
}