All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.voltdb.TheHashinator Maven / Gradle / Ivy

There is a newer version: 10.1.1
Show newest version
/* This file is part of VoltDB.
 * Copyright (C) 2008-2018 VoltDB Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with VoltDB.  If not, see .
 */

package org.voltdb;

import java.io.IOException;
import java.lang.reflect.Constructor;
import java.nio.ByteBuffer;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.atomic.AtomicReference;

import org.apache.hadoop_voltpatches.util.PureJavaCrc32C;
import org.voltcore.logging.VoltLogger;
import org.voltcore.utils.Pair;
import org.voltdb.dtxn.UndoAction;
import org.voltdb.sysprocs.saverestore.HashinatorSnapshotData;

import com.google_voltpatches.common.base.Supplier;
import com.google_voltpatches.common.base.Suppliers;
import com.google_voltpatches.common.base.Throwables;
import com.google_voltpatches.common.collect.MapMaker;

/**
 * Class that maps object values to partitions. It's rather simple
 * really. It'll get more complicated if you give it time.
 */
public abstract class TheHashinator {

    public static class HashinatorConfig {
        public final byte configBytes[];
        public final long configPtr;
        public final int numTokens;
        public HashinatorConfig(byte configBytes[], long configPtr, int numTokens) {
            this.configBytes = configBytes;
            this.configPtr = configPtr;
            this.numTokens = numTokens;
        }
    }

    /**
     * Uncompressed configuration data accessor.
     * @return configuration data bytes
     */
    public abstract byte[] getConfigBytes();

    /**
     * Uncompressed configuration data accessor in JSONString.
     * @return configuration data JSONString
     */
    public abstract String getConfigJSON();

    /**
     * Compressed configuration data accessor in JSONString.
     * Default to providing raw bytes, e.g. for legacy
     * @return configuration data in Compressed JSONString
     */
    public byte[] getConfigJSONCompressed(){
        return getConfigBytes();
    }

    /**
     * A map to store hashinators, including older versions of hashinators.
     * During live rejoin sites will replay balance fragments in an order that results
     * in some sites skipping ahead to newer hashinators.
     *
     * References are weak so this has no impact on memory utilization
     */
    private static final ConcurrentMap m_cachedHashinators =
            new MapMaker().weakValues().concurrencyLevel(1).initialCapacity(16).makeMap();

    /**
     * Return compressed (cooked) bytes for serialization.
     * Defaults to providing raw bytes, e.g. for legacy.
     * @return cooked config bytes
     */
    public byte[] getCookedBytes()
    {
        return getConfigBytes();
    }

    protected static final VoltLogger hostLogger = new VoltLogger("HOST");

     /*
     * Stamped instance, version associated with hash function, only update for newer versions
     */
    private static final AtomicReference> instance =
            new AtomicReference>();

    // Set true once the current Hashinator does not match m_pristineHashinator
    private static boolean m_elasticallyModified = false;
    // The initial Hashinator based strictly on the initial cluster partition count
    protected static TheHashinator m_pristineHashinator;

    /**
     * Initialize TheHashinator with the specified implementation class and configuration.
     * The starting version number will be 0.
     */
    public static void initialize(Class hashinatorImplementation, byte config[]) {
        TheHashinator hashinator = constructHashinator( hashinatorImplementation, config, false);
        m_pristineHashinator = hashinator;
        m_cachedHashinators.put(0L, hashinator);
        instance.set(Pair.of(0L, hashinator));
    }

    /**
     * Get TheHashinator instanced based on known implementation and configuration.
     * Used by client after asking server what it is running.
     *
     * @param hashinatorImplementation
     * @param config
     * @return
     */
    public static TheHashinator getHashinator(Class hashinatorImplementation,
            byte config[], boolean cooked) {
        return constructHashinator(hashinatorImplementation, config, cooked);
    }

    /**
     * Helper method to do the reflection boilerplate to call the constructor
     * of the selected hashinator and convert the exceptions to runtime exceptions.
     * @param hashinatorImplementation  hashinator class
     * @param configBytes  config data (raw or cooked)
     * @param cooked  true if configBytes is cooked, i.e. in wire serialization format
     * @return  the constructed hashinator
     */
    public static TheHashinator
        constructHashinator(
                Class hashinatorImplementation,
                byte configBytes[], boolean cooked) {
        try {
            Constructor constructor =
                    hashinatorImplementation.getConstructor(byte[].class, boolean.class);
            return constructor.newInstance(configBytes, cooked);
        } catch (Exception e) {
            Throwables.propagate(e);
        }
        return null;
    }

    /**
     * Protected methods that implement hashination of specific data types.
     * Only string/varbinary and integer hashination is supported. String/varbinary
     * get the same handling once they the string is converted to UTF-8 binary
     * so there is only one protected method for bytes.
     *
     * Longs are converted to bytes in little endian order for elastic, modulus for legacy.
     */
    abstract public int pHashinateLong(long value);
    abstract public int pHashinateBytes(byte[] bytes);
    abstract public long pGetConfigurationSignature();
    abstract public HashinatorConfig pGetCurrentConfig();
    abstract public Map pPredecessors(int partition);
    abstract public Pair pPredecessor(int partition, int token);
    abstract public Map pGetRanges(int partition);
    // This method is only called within this class,
    // {@see getHashedPartitionForParameter}
    // but it must be declared protected to allow the required overriding.
    abstract protected int pHashToPartition(VoltType type, Object obj);
    abstract protected Set pGetPartitions();
    abstract protected boolean pIsPristine();
    abstract public int getPartitionFromHashedToken(int hashedToken);

    static public void resetElasticallyModifiedForTest() {
        m_elasticallyModified = false;
    }

    static public int getPartitionFromToken(int hashedToken) {
        return instance.get().getSecond().getPartitionFromHashedToken(hashedToken);
    }

    /**
     * Returns the configuration signature
     * @return the configuration signature
     */
    static public long getConfigurationSignature() {
        return instance.get().getSecond().pGetConfigurationSignature();
    }

    /**
     * It computes a signature from the given configuration bytes
     * @param config configuration byte array
     * @return signature from the given configuration bytes
     */
    static public long computeConfigurationSignature(byte [] config) {
        PureJavaCrc32C crc = new PureJavaCrc32C();
        crc.update(config);
        return crc.getValue();
    }

    /**
     * Given an byte[] bytes, pick a partition to store the data.
     *
     * @param value The value to hash.
     * @param partitionCount The number of partitions to choose from.
     * @return A value between 0 and partitionCount-1, hopefully pretty evenly
     * distributed.
     */
    int hashinateBytes(byte[] bytes) {
        if (bytes == null) {
            return 0;
        } else {
            return pHashinateBytes(bytes);
        }
    }

    /**
     * Given the type of the targeting partition parameter and an object,
     * coerce the object to the correct type and hash it.
     * NOTE NOTE NOTE NOTE! THIS SHOULD BE THE ONLY WAY THAT
     * YOU FIGURE OUT THE PARTITIONING FOR A PARAMETER! ON SERVER
     *
     * @return The partition best set up to execute the procedure.
     * @throws VoltTypeException
     */
    public static int getPartitionForParameter(VoltType partitionType, Object invocationParameter) {
        return instance.get().getSecond().getHashedPartitionForParameter(partitionType, invocationParameter);
    }

    /**
     * Given the type of the targeting partition parameter and an object,
     * coerce the object to the correct type and hash it.
     * NOTE NOTE NOTE NOTE! THIS SHOULD BE THE ONLY WAY THAT
     * YOU FIGURE OUT THE PARTITIONING FOR A PARAMETER! ON SERVER
     *
     * @return The partition best set up to execute the procedure.
     * @throws VoltTypeException
     */
    public static int getPartitionForParameter(int partitionType, Object invocationParameter)
            throws VoltTypeException
    {
        return instance.get().getSecond().getHashedPartitionForParameter(partitionType, invocationParameter);
    }

    /**
     * Given the type of the targeting partition parameter and an object,
     * coerce the object to the correct type and hash it.
     * NOTE NOTE NOTE NOTE! THIS SHOULD BE THE ONLY WAY THAT YOU FIGURE OUT
     * THE PARTITIONING FOR A PARAMETER! THIS IS SHARED BY SERVER AND CLIENT
     * CLIENT USES direct instance method as it initializes its own per connection
     * Hashinator.
     *
     * @return The partition best set up to execute the procedure.
     * @throws VoltTypeException
     */
    public int getHashedPartitionForParameter(int partitionValueType, Object partitionValue) {
        final VoltType partitionParamType = VoltType.get((byte) partitionValueType);
        return getHashedPartitionForParameter(partitionParamType, partitionValue);
    }

    /**
     * Given the type of the targeting partition parameter and an object,
     * coerce the object to the correct type and hash it.
     * NOTE NOTE NOTE NOTE! THIS SHOULD BE THE ONLY WAY THAT YOU FIGURE OUT
     * THE PARTITIONING FOR A PARAMETER! THIS IS SHARED BY SERVER AND CLIENT
     * CLIENT USES direct instance method as it initializes its own per connection
     * Hashinator.
     *
     * @return The partition best set up to execute the procedure.
     * @throws VoltTypeException
     */
    public int getHashedPartitionForParameter(VoltType partitionParamType, Object partitionValue)
            throws VoltTypeException {
        // Special cases:
        // 1) if the user supplied a string for a number column,
        // try to do the conversion. This makes it substantially easier to
        // load CSV data or other untyped inputs that match DDL without
        // requiring the loader to know precise the schema.
        // 2) For legacy hashinators, if we have a numeric column but the param is in a byte
        // array, convert the byte array back to the numeric value
        if (partitionValue != null && partitionParamType.isAnyIntegerType()) {
            if (partitionValue.getClass() == String.class) {
                try {
                    partitionValue = Long.parseLong((String) partitionValue);
                }
                catch (NumberFormatException nfe) {
                    throw new VoltTypeException(
                            "getHashedPartitionForParameter: Unable to convert string " +
                                    ((String) partitionValue) + " to "  +
                                    partitionParamType.getMostCompatibleJavaTypeName() +
                                    " target parameter ");
                }
            }
            else if (partitionValue.getClass() == byte[].class) {
                partitionValue = partitionParamType.bytesToValue((byte[]) partitionValue);
            }
        }

        return pHashToPartition(partitionParamType, partitionValue);
    }

    /**
     * Update the hashinator in a thread safe manner with a newer version of the hash function.
     * A version number must be provided and the new config will only be used if it is greater than
     * the current version of the hash function.
     *
     * Returns an action for undoing the hashinator update
     * @param hashinatorImplementation  hashinator class
     * @param version  hashinator version/txn id
     * @param configBytes  config data (format determined by cooked flag)
     * @param cooked  compressible wire serialization format if true
     */
    public static Pair updateHashinator(
            Class hashinatorImplementation,
            long version,
            byte configBytes[],
            boolean cooked) {
        //Use a cached/canonical hashinator if possible
        TheHashinator existingHashinator = m_cachedHashinators.get(version);
        if (existingHashinator == null) {
            existingHashinator = constructHashinator(hashinatorImplementation, configBytes, cooked);
            TheHashinator tempVal = m_cachedHashinators.putIfAbsent( version, existingHashinator);
            if (tempVal != null) existingHashinator = tempVal;
        }

        //Do a CAS loop to maintain a global instance
        while (true) {
            final Pair snapshot = instance.get();
            if (version > snapshot.getFirst()) {
                final Pair update =
                        Pair.of(version, existingHashinator);
                if (instance.compareAndSet(snapshot, update)) {
                    if (!m_elasticallyModified) {
                        if (!update.getSecond().pIsPristine()) {
                            // This is not a lock protected (atomic) but it should be fine because
                            // release() should only be called by the one thread that successfully
                            // updated the hashinator
                            hostLogger.debug("The Hashinator has been elastically modified.");
                            m_elasticallyModified = true;
                        }
                    }
                    // Note: Only undo is ever called and only from a failure in @BalancePartitions
                    return Pair.of(new UndoAction() {
                        @Override
                        public void release() {}

                        @Override
                        public void undo() {
                            boolean rolledBack = instance.compareAndSet(update, snapshot);
                            if (!rolledBack) {
                                hostLogger.info(
                                        "Didn't roll back hashinator because it wasn't set to expected hashinator");
                            }
                        }
                    }, existingHashinator);
                }
            } else {
                return Pair.of(new UndoAction() {

                    @Override
                    public void release() {}

                    @Override
                    public void undo() {}
                }, existingHashinator);
            }
        }
    }

    public static Class getConfiguredHashinatorClass() {
        return ElasticHashinator.class;
    }

    /**
     * Get a basic configuration for the current hashinator
     */
    public static byte[] getConfigureBytes(int partitionCount) {
        return ElasticHashinator.getConfigureBytes(partitionCount, ElasticHashinator.DEFAULT_TOTAL_TOKENS);
    }

    public static HashinatorConfig getCurrentConfig() {
        return instance.get().getSecond().pGetCurrentConfig();
    }

    public static TheHashinator getCurrentHashinator() {
        return instance.get().getSecond();
    }

    public static Map predecessors(int partition) {
        return instance.get().getSecond().pPredecessors(partition);
    }

    public static Pair predecessor(int partition, int token) {
        return instance.get().getSecond().pPredecessor(partition, token);
    }

    /**
     * Get the ranges the given partition is assigned to.
     * @param partition
     * @return A map of ranges, the key is the start of a range, the value is
     * the corresponding end. Ranges returned in the map are [start, end).
     * The ranges may or may not be contiguous.
     */
    public static Map getRanges(int partition) {
        return instance.get().getSecond().pGetRanges(partition);
    }

    /**
     * Get optimized configuration data for wire serialization.
     * @return optimized configuration data
     * @throws IOException
     */
    public static HashinatorSnapshotData serializeConfiguredHashinator()
            throws IOException
    {
        Pair currentInstance = instance.get();
        byte[] cookedData = currentInstance.getSecond().getCookedBytes();
        return new HashinatorSnapshotData(cookedData, currentInstance.getFirst());
    }

    /**
     * Update the current configured hashinator class. Used by snapshot restore.
     * @param version
     * @param config
     * @return Pair Undo action to revert hashinator update and the hashinator that was
     *         requested which may actually be an older one (although the one requested) during live rejoin
     */
    public static Pair< ? extends UndoAction, TheHashinator> updateConfiguredHashinator(long version, byte config[]) {
        return updateHashinator(getConfiguredHashinatorClass(), version, config, true);
    }

    public static Pair getCurrentVersionedConfig()
    {
        Pair currentHashinator = instance.get();
        return Pair.of(currentHashinator.getFirst(), currentHashinator.getSecond().pGetCurrentConfig().configBytes);
    }

    /**
     * Get the current version/config in compressed (wire) format.
     * @return version/config pair
     */
    public static Pair getCurrentVersionedConfigCooked()
    {
        Pair currentHashinator = instance.get();
        Long version = currentHashinator.getFirst();
        byte[] bytes = currentHashinator.getSecond().getCookedBytes();
        return Pair.of(version, bytes);
    }

    public static final String CNAME_PARTITION_KEY = "PARTITION_KEY";

    private Supplier getSupplierForType(final VoltType type) {
        return new Supplier() {
            @Override
            public VoltTable get() {
                VoltTable vt = new VoltTable(new VoltTable.ColumnInfo[] {
                        new VoltTable.ColumnInfo(
                                VoltSystemProcedure.CNAME_PARTITION_ID,
                                VoltSystemProcedure.CTYPE_ID),
                        new VoltTable.ColumnInfo(CNAME_PARTITION_KEY, type)});
                Set partitions = TheHashinator.this.pGetPartitions();

                for (int ii = 0; ii < 500000; ii++) {
                    if (partitions.isEmpty()) break;
                    Object value = null;
                    if (type == VoltType.INTEGER) value = ii;
                    if (type == VoltType.STRING) value = String.valueOf(ii);
                    if (type == VoltType.VARBINARY) {
                        ByteBuffer buf = ByteBuffer.allocate(4);
                        buf.putInt(ii);
                        value = buf.array();
                    }
                    int partition = TheHashinator.this.getHashedPartitionForParameter(type.getValue(), value);
                    if (partitions.remove(partition)) {
                        vt.addRow(partition, value);
                    }
                }
                return vt;
            }
        };
    }
    private final Supplier m_integerPartitionKeys = Suppliers.memoize(getSupplierForType(VoltType.INTEGER));
    private final Supplier m_stringPartitionKeys = Suppliers.memoize(getSupplierForType(VoltType.STRING));
    private final Supplier m_varbinaryPartitionKeys = Suppliers.memoize(getSupplierForType(VoltType.VARBINARY));

    /**
     * Get a VoltTable containing the partition keys for each partition that can be found for the current hashinator.
     * May be missing some partitions during elastic rebalance when the partitions don't own
     * enough of the ring to be probed
     *
     * If the type is not supported returns null
     * @param type key type
     * @return a VoltTable containing the partition keys
     */
    public static VoltTable getPartitionKeys(VoltType type) {
        return getPartitionKeys(instance.get().getSecond(), type);
    }

    /**
     * Get a VoltTable containing the partition keys for each partition that can be found for the given hashinator.
     * May be missing some partitions during elastic rebalance when the partitions don't own
     * enough of the ring to be probed
     *
     * If the type is not supported returns null
     * @param hashinator a particular hashinator to get partition keys
     * @param type key type
     * @return a VoltTable containing the partition keys
     */
    public static VoltTable getPartitionKeys(TheHashinator hashinator, VoltType type) {
        // get partitionKeys response table so we can copy it
        final VoltTable partitionKeys;

        switch (type) {
            case INTEGER:
                partitionKeys = hashinator.m_integerPartitionKeys.get();
                break;
            case STRING:
                partitionKeys = hashinator.m_stringPartitionKeys.get();
                break;
            case VARBINARY:
                partitionKeys = hashinator.m_varbinaryPartitionKeys.get();
                break;
            default:
                return null;
        }

        // return a clone because if the table is used at all in the voltdb process,
        // (like by an NT procedure),
        // you can corrupt the various offsets and positions in the underlying buffer
        return partitionKeys.semiDeepCopy();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy