io.trino.plugin.kudu.KuduNodePartitioningProvider Maven / Gradle / Ivy
/*
* 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.kudu;
import com.google.inject.Inject;
import io.trino.spi.connector.BucketFunction;
import io.trino.spi.connector.ConnectorBucketNodeMap;
import io.trino.spi.connector.ConnectorNodePartitioningProvider;
import io.trino.spi.connector.ConnectorPartitioningHandle;
import io.trino.spi.connector.ConnectorSession;
import io.trino.spi.connector.ConnectorSplit;
import io.trino.spi.connector.ConnectorTransactionHandle;
import io.trino.spi.connector.SchemaTableName;
import io.trino.spi.type.Type;
import java.util.List;
import java.util.Optional;
import java.util.function.ToIntFunction;
import static io.trino.spi.connector.ConnectorBucketNodeMap.createBucketNodeMap;
import static java.util.Objects.requireNonNull;
public class KuduNodePartitioningProvider
implements ConnectorNodePartitioningProvider
{
private final KuduClientSession clientSession;
@Inject
public KuduNodePartitioningProvider(KuduClientSession clientSession)
{
this.clientSession = requireNonNull(clientSession, "clientSession is null");
}
@Override
public Optional getBucketNodeMapping(
ConnectorTransactionHandle transactionHandle,
ConnectorSession session,
ConnectorPartitioningHandle partitioningHandle)
{
KuduPartitioningHandle handle = (KuduPartitioningHandle) partitioningHandle;
return Optional.of(createBucketNodeMap(handle.getBucketCount()));
}
@Override
public ToIntFunction getSplitBucketFunction(
ConnectorTransactionHandle transactionHandle,
ConnectorSession session,
ConnectorPartitioningHandle partitioningHandle)
{
return value -> ((KuduSplit) value).getBucketNumber();
}
@Override
public BucketFunction getBucketFunction(
ConnectorTransactionHandle transactionHandle,
ConnectorSession session,
ConnectorPartitioningHandle partitioningHandle,
List partitionChannelTypes,
int bucketCount)
{
KuduPartitioningHandle handle = (KuduPartitioningHandle) partitioningHandle;
return new KuduBucketFunction(
handle.getBucketColumnIndexes(),
partitionChannelTypes,
clientSession.openTable(new SchemaTableName(handle.getSchema(), handle.getTable())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy