Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
import static com.google.common.collect.ImmutableSet.toImmutableSet;
import static com.google.common.collect.Iterables.getOnlyElement;
import static io.trino.plugin.jdbc.JdbcErrorCode.JDBC_ERROR;
import static io.trino.plugin.jdbc.JdbcMetadataSessionProperties.isNonTransactionalInsert;
import static io.trino.plugin.jdbc.JdbcWriteSessionProperties.isNonTransactionalInsert;
import static io.trino.plugin.jdbc.PredicatePushdownController.DISABLE_PUSHDOWN;
import static io.trino.plugin.jdbc.StandardColumnMappings.bigintWriteFunction;
import static io.trino.plugin.jdbc.StandardColumnMappings.booleanWriteFunction;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,10 @@
import io.airlift.configuration.ConfigDescription;
import io.airlift.configuration.LegacyConfig;

import javax.validation.constraints.Max;
import javax.validation.constraints.Min;

public class JdbcMetadataConfig
{
static final int MAX_ALLOWED_WRITE_BATCH_SIZE = 1_000_000;

private boolean allowDropTable;
/*
* Join pushdown is disabled by default as this is the safer option.
Expand All @@ -43,12 +40,6 @@ public class JdbcMetadataConfig
// between performance and pushdown capabilities
private int domainCompactionThreshold = 32;

private int writeBatchSize = 1000;

// Do not create temporary table during insert.
// This means that the write operation can fail and leave the table in an inconsistent state.
private boolean nonTransactionalInsert;

public boolean isAllowDropTable()
{
return allowDropTable;
Expand Down Expand Up @@ -116,33 +107,4 @@ public JdbcMetadataConfig setDomainCompactionThreshold(int domainCompactionThres
this.domainCompactionThreshold = domainCompactionThreshold;
return this;
}

@Min(1)
@Max(MAX_ALLOWED_WRITE_BATCH_SIZE)
public int getWriteBatchSize()
{
return writeBatchSize;
}

@Config("write.batch-size")
@ConfigDescription("Maximum number of rows to write in a single batch")
public JdbcMetadataConfig setWriteBatchSize(int writeBatchSize)
{
this.writeBatchSize = writeBatchSize;
return this;
}

public boolean isNonTransactionalInsert()
{
return nonTransactionalInsert;
}

@Config("insert.non-transactional-insert.enabled")
@ConfigDescription("Do not create temporary table during insert. " +
"This means that the write operation can fail and leave the table in an inconsistent state.")
public JdbcMetadataConfig setNonTransactionalInsert(boolean nonTransactionalInsert)
{
this.nonTransactionalInsert = nonTransactionalInsert;
return this;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import java.util.List;
import java.util.Optional;

import static io.trino.plugin.jdbc.JdbcMetadataConfig.MAX_ALLOWED_WRITE_BATCH_SIZE;
import static io.trino.spi.StandardErrorCode.INVALID_SESSION_PROPERTY;
import static io.trino.spi.session.PropertyMetadata.booleanProperty;
import static io.trino.spi.session.PropertyMetadata.integerProperty;
Expand All @@ -37,8 +36,6 @@ public class JdbcMetadataSessionProperties
public static final String AGGREGATION_PUSHDOWN_ENABLED = "aggregation_pushdown_enabled";
public static final String TOPN_PUSHDOWN_ENABLED = "topn_pushdown_enabled";
public static final String DOMAIN_COMPACTION_THRESHOLD = "domain_compaction_threshold";
public static final String WRITE_BATCH_SIZE = "write_batch_size";
public static final String NON_TRANSACTIONAL_INSERT = "non_transactional_insert";

private final List<PropertyMetadata<?>> properties;

Expand Down Expand Up @@ -68,17 +65,6 @@ public JdbcMetadataSessionProperties(JdbcMetadataConfig jdbcMetadataConfig, @Max
"Enable TopN pushdown",
jdbcMetadataConfig.isTopNPushdownEnabled(),
false))
.add(integerProperty(
WRITE_BATCH_SIZE,
"Maximum number of rows to write in a single batch",
jdbcMetadataConfig.getWriteBatchSize(),
JdbcMetadataSessionProperties::validateWriteBatchSize,
false))
.add(booleanProperty(
NON_TRANSACTIONAL_INSERT,
"Do not use temporary table on insert to table",
jdbcMetadataConfig.isNonTransactionalInsert(),
false))
.build();
}

Expand Down Expand Up @@ -108,16 +94,6 @@ public static int getDomainCompactionThreshold(ConnectorSession session)
return session.getProperty(DOMAIN_COMPACTION_THRESHOLD, Integer.class);
}

public static int getWriteBatchSize(ConnectorSession session)
{
return session.getProperty(WRITE_BATCH_SIZE, Integer.class);
}

public static boolean isNonTransactionalInsert(ConnectorSession session)
{
return session.getProperty(NON_TRANSACTIONAL_INSERT, Boolean.class);
}

private static void validateDomainCompactionThreshold(int domainCompactionThreshold, Optional<Integer> maxDomainCompactionThreshold)
{
if (domainCompactionThreshold < 1) {
Expand All @@ -130,14 +106,4 @@ private static void validateDomainCompactionThreshold(int domainCompactionThresh
}
});
}

private static void validateWriteBatchSize(int maxBatchSize)
{
if (maxBatchSize < 1) {
throw new TrinoException(INVALID_SESSION_PROPERTY, format("%s must be greater than 0: %s", WRITE_BATCH_SIZE, maxBatchSize));
}
if (maxBatchSize > MAX_ALLOWED_WRITE_BATCH_SIZE) {
throw new TrinoException(INVALID_SESSION_PROPERTY, format("%s cannot exceed %s: %s", WRITE_BATCH_SIZE, MAX_ALLOWED_WRITE_BATCH_SIZE, maxBatchSize));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,13 @@ public void setup(Binder binder)
newOptionalBinder(binder, ConnectorPageSinkProvider.class).setDefault().to(JdbcPageSinkProvider.class).in(Scopes.SINGLETON);
binder.bind(JdbcConnector.class).in(Scopes.SINGLETON);
configBinder(binder).bindConfig(JdbcMetadataConfig.class);
configBinder(binder).bindConfig(JdbcWriteConfig.class);
configBinder(binder).bindConfig(BaseJdbcConfig.class);

configBinder(binder).bindConfig(TypeHandlingJdbcConfig.class);
bindSessionPropertiesProvider(binder, TypeHandlingJdbcSessionProperties.class);
bindSessionPropertiesProvider(binder, JdbcMetadataSessionProperties.class);
bindSessionPropertiesProvider(binder, JdbcWriteSessionProperties.class);

binder.bind(CachingJdbcClient.class).in(Scopes.SINGLETON);
binder.bind(JdbcClient.class).to(Key.get(CachingJdbcClient.class)).in(Scopes.SINGLETON);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import static com.google.common.collect.ImmutableList.toImmutableList;
import static io.trino.plugin.jdbc.JdbcErrorCode.JDBC_ERROR;
import static io.trino.plugin.jdbc.JdbcErrorCode.JDBC_NON_TRANSIENT_ERROR;
import static io.trino.plugin.jdbc.JdbcMetadataSessionProperties.getWriteBatchSize;
import static io.trino.plugin.jdbc.JdbcWriteSessionProperties.getWriteBatchSize;
import static io.trino.spi.StandardErrorCode.NOT_SUPPORTED;
import static java.util.concurrent.CompletableFuture.completedFuture;

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
/*
* 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.jdbc;

import io.airlift.configuration.Config;
import io.airlift.configuration.ConfigDescription;

import javax.validation.constraints.Max;
import javax.validation.constraints.Min;

public class JdbcWriteConfig
{
static final int MAX_ALLOWED_WRITE_BATCH_SIZE = 1_000_000;

private int writeBatchSize = 1000;

// Do not create temporary table during insert.
// This means that the write operation can fail and leave the table in an inconsistent state.
private boolean nonTransactionalInsert;

@Min(1)
@Max(MAX_ALLOWED_WRITE_BATCH_SIZE)
public int getWriteBatchSize()
{
return writeBatchSize;
}

@Config("write.batch-size")
@ConfigDescription("Maximum number of rows to write in a single batch")
public JdbcWriteConfig setWriteBatchSize(int writeBatchSize)
{
this.writeBatchSize = writeBatchSize;
return this;
}

public boolean isNonTransactionalInsert()
{
return nonTransactionalInsert;
}

@Config("insert.non-transactional-insert.enabled")
@ConfigDescription("Do not create temporary table during insert. " +
"This means that the write operation can fail and leave the table in an inconsistent state.")
public JdbcWriteConfig setNonTransactionalInsert(boolean nonTransactionalInsert)
{
this.nonTransactionalInsert = nonTransactionalInsert;
return this;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
/*
* 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.jdbc;

import com.google.common.collect.ImmutableList;
import io.trino.plugin.base.session.SessionPropertiesProvider;
import io.trino.spi.TrinoException;
import io.trino.spi.connector.ConnectorSession;
import io.trino.spi.session.PropertyMetadata;

import javax.inject.Inject;

import java.util.List;

import static io.trino.plugin.jdbc.JdbcWriteConfig.MAX_ALLOWED_WRITE_BATCH_SIZE;
import static io.trino.spi.StandardErrorCode.INVALID_SESSION_PROPERTY;
import static io.trino.spi.session.PropertyMetadata.booleanProperty;
import static io.trino.spi.session.PropertyMetadata.integerProperty;
import static java.lang.String.format;

public class JdbcWriteSessionProperties
implements SessionPropertiesProvider
{
public static final String WRITE_BATCH_SIZE = "write_batch_size";
public static final String NON_TRANSACTIONAL_INSERT = "non_transactional_insert";

private final List<PropertyMetadata<?>> properties;

@Inject
public JdbcWriteSessionProperties(JdbcWriteConfig writeConfig)
{
properties = ImmutableList.<PropertyMetadata<?>>builder()
.add(integerProperty(
WRITE_BATCH_SIZE,
"Maximum number of rows to write in a single batch",
writeConfig.getWriteBatchSize(),
JdbcWriteSessionProperties::validateWriteBatchSize,
false))
.add(booleanProperty(
NON_TRANSACTIONAL_INSERT,
"Do not use temporary table on insert to table",
writeConfig.isNonTransactionalInsert(),
false))
.build();
}

@Override
public List<PropertyMetadata<?>> getSessionProperties()
{
return properties;
}

public static int getWriteBatchSize(ConnectorSession session)
{
return session.getProperty(WRITE_BATCH_SIZE, Integer.class);
}

public static boolean isNonTransactionalInsert(ConnectorSession session)
{
return session.getProperty(NON_TRANSACTIONAL_INSERT, Boolean.class);
}

private static void validateWriteBatchSize(int maxBatchSize)
{
if (maxBatchSize < 1) {
throw new TrinoException(INVALID_SESSION_PROPERTY, format("%s must be greater than 0: %s", WRITE_BATCH_SIZE, maxBatchSize));
}
if (maxBatchSize > MAX_ALLOWED_WRITE_BATCH_SIZE) {
throw new TrinoException(INVALID_SESSION_PROPERTY, format("%s cannot exceed %s: %s", WRITE_BATCH_SIZE, MAX_ALLOWED_WRITE_BATCH_SIZE, maxBatchSize));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,13 @@
package io.trino.plugin.jdbc;

import com.google.common.collect.ImmutableMap;
import io.airlift.configuration.ConfigurationFactory;
import org.testng.annotations.Test;

import java.util.Map;

import static io.airlift.configuration.testing.ConfigAssertions.assertFullMapping;
import static io.airlift.configuration.testing.ConfigAssertions.assertRecordedDefaults;
import static io.airlift.configuration.testing.ConfigAssertions.recordDefaults;
import static org.assertj.core.api.Assertions.assertThatCode;
import static org.assertj.core.api.Assertions.assertThatThrownBy;

public class TestJdbcMetadataConfig
{
Expand All @@ -35,9 +32,7 @@ public void testDefaults()
.setJoinPushdownEnabled(false)
.setAggregationPushdownEnabled(true)
.setTopNPushdownEnabled(true)
.setDomainCompactionThreshold(32)
.setWriteBatchSize(1000)
.setNonTransactionalInsert(false));
.setDomainCompactionThreshold(32));
}

@Test
Expand All @@ -49,40 +44,15 @@ public void testExplicitPropertyMappings()
.put("aggregation-pushdown.enabled", "false")
.put("domain-compaction-threshold", "42")
.put("topn-pushdown.enabled", "false")
.put("write.batch-size", "24")
.put("insert.non-transactional-insert.enabled", "true")
.build();

JdbcMetadataConfig expected = new JdbcMetadataConfig()
.setAllowDropTable(true)
.setJoinPushdownEnabled(true)
.setAggregationPushdownEnabled(false)
.setTopNPushdownEnabled(false)
.setDomainCompactionThreshold(42)
.setWriteBatchSize(24)
.setNonTransactionalInsert(true);
.setDomainCompactionThreshold(42);

assertFullMapping(properties, expected);
}

@Test
public void testWriteBatchSizeValidation()
{
assertThatThrownBy(() -> makeConfig(ImmutableMap.of("write.batch-size", "-42")))
.hasMessageContaining("write.batch-size: must be greater than or equal to 1");

assertThatThrownBy(() -> makeConfig(ImmutableMap.of("write.batch-size", "0")))
.hasMessageContaining("write.batch-size: must be greater than or equal to 1");

assertThatCode(() -> makeConfig(ImmutableMap.of("write.batch-size", "1")))
.doesNotThrowAnyException();

assertThatCode(() -> makeConfig(ImmutableMap.of("write.batch-size", "42")))
.doesNotThrowAnyException();
}

private static JdbcMetadataConfig makeConfig(Map<String, String> props)
{
return new ConfigurationFactory(props).build(JdbcMetadataConfig.class);
}
}
Loading