io.trino.plugin.blackhole.BlackHoleNodePartitioningProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trino-blackhole Show documentation
Show all versions of trino-blackhole Show documentation
Trino - Black Hole 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.blackhole;
import io.trino.spi.block.Block;
import io.trino.spi.connector.BucketFunction;
import io.trino.spi.connector.ConnectorNodePartitioningProvider;
import io.trino.spi.connector.ConnectorPartitioningHandle;
import io.trino.spi.connector.ConnectorSession;
import io.trino.spi.connector.ConnectorTransactionHandle;
import io.trino.spi.type.Type;
import io.trino.spi.type.TypeOperators;
import java.lang.invoke.MethodHandle;
import java.util.List;
import static com.google.common.base.Throwables.throwIfUnchecked;
import static com.google.common.collect.ImmutableList.toImmutableList;
import static io.trino.spi.function.InvocationConvention.InvocationArgumentConvention.BLOCK_POSITION;
import static io.trino.spi.function.InvocationConvention.InvocationReturnConvention.FAIL_ON_NULL;
import static io.trino.spi.function.InvocationConvention.simpleConvention;
import static io.trino.spi.type.TypeUtils.NULL_HASH_CODE;
public class BlackHoleNodePartitioningProvider
implements ConnectorNodePartitioningProvider
{
private final TypeOperators typeOperators;
public BlackHoleNodePartitioningProvider(TypeOperators typeOperators)
{
this.typeOperators = typeOperators;
}
@Override
public BucketFunction getBucketFunction(
ConnectorTransactionHandle transactionHandle,
ConnectorSession session,
ConnectorPartitioningHandle partitioningHandle,
List partitionChannelTypes,
int bucketCount)
{
List hashCodeInvokers = partitionChannelTypes.stream()
.map(type -> typeOperators.getHashCodeOperator(type, simpleConvention(FAIL_ON_NULL, BLOCK_POSITION)))
.collect(toImmutableList());
return (page, position) -> {
long hash = 13;
for (int i = 0; i < partitionChannelTypes.size(); i++) {
Block block = page.getBlock(i);
try {
long valueHash;
if (block.isNull(position)) {
valueHash = NULL_HASH_CODE;
}
else {
valueHash = (long) hashCodeInvokers.get(i).invokeExact(block, position);
}
hash = 31 * hash + valueHash;
}
catch (Throwable throwable) {
throwIfUnchecked(throwable);
throw new RuntimeException(throwable);
}
}
// clear the sign bit
hash &= 0x7fff_ffff_ffff_ffffL;
return (int) (hash % bucketCount);
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy