co.cask.tigon.data.increment.hbase94.IncrementHandler.java Source code

Java tutorial

Introduction

Here is the source code for co.cask.tigon.data.increment.hbase94.IncrementHandler.java

Source

/*
 * Copyright  2014 Cask Data, Inc.
 *
 * 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 co.cask.tigon.data.increment.hbase94;

import co.cask.tephra.coprocessor.TransactionStateCache;
import co.cask.tephra.hbase94.Filters;
import co.cask.tephra.persist.TransactionSnapshot;
import co.cask.tigon.conf.Constants;
import co.cask.tigon.data.transaction.coprocessor.DefaultTransactionStateCacheSupplier;
import com.google.common.base.Supplier;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.hbase.CoprocessorEnvironment;
import org.apache.hadoop.hbase.KeyValue;
import org.apache.hadoop.hbase.client.Get;
import org.apache.hadoop.hbase.client.Put;
import org.apache.hadoop.hbase.client.Scan;
import org.apache.hadoop.hbase.coprocessor.BaseRegionObserver;
import org.apache.hadoop.hbase.coprocessor.ObserverContext;
import org.apache.hadoop.hbase.coprocessor.RegionCoprocessorEnvironment;
import org.apache.hadoop.hbase.regionserver.HRegion;
import org.apache.hadoop.hbase.regionserver.InternalScanner;
import org.apache.hadoop.hbase.regionserver.RegionScanner;
import org.apache.hadoop.hbase.regionserver.Store;
import org.apache.hadoop.hbase.regionserver.compactions.CompactionRequest;
import org.apache.hadoop.hbase.regionserver.wal.WALEdit;
import org.apache.hadoop.hbase.util.Bytes;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.NavigableMap;
import java.util.TreeMap;

/**
 * HBase coprocessor that handles reading and writing read-less increment operations.
 *
 * <p>Writes of incremental values are performed as normal {@code Put}s, flagged with a special attribute
 * {@link co.cask.tigon.conf.Constants#DELTA_WRITE}.
 * The coprocessor intercepts these writes and rewrites the cell value to use a special marker prefix.</p>
 *
 * <p>For read (for {@code Get} and {@code Scan}) operations, all of the delta values are summed up for a column,
 * up to and including the most recent "full" (non-delta) value.  The sum of these delta values, plus the full value
 * (if found) is returned for the column.</p>
 *
 * <p>To mitigate the performance impact on reading, this coprocessor also overrides the scanner used in flush and
 * compaction operations, using {@link IncrementSummingScanner} to generate a new "full" value aggregated from
 * all the successfully committed delta values.</p>
 */
public class IncrementHandler extends BaseRegionObserver {
    // prefix bytes used to mark values that are deltas vs. full sums
    public static final byte[] DELTA_MAGIC_PREFIX = new byte[] { 'X', 'D' };
    // expected length for values storing deltas (prefix + increment value)
    public static final int DELTA_FULL_LENGTH = DELTA_MAGIC_PREFIX.length + Bytes.SIZEOF_LONG;
    public static final int BATCH_UNLIMITED = -1;

    private static final Log LOG = LogFactory.getLog(IncrementHandler.class);

    private HRegion region;
    private TransactionStateCache cache;

    @Override
    public void start(CoprocessorEnvironment e) throws IOException {
        if (e instanceof RegionCoprocessorEnvironment) {
            RegionCoprocessorEnvironment env = (RegionCoprocessorEnvironment) e;
            this.region = ((RegionCoprocessorEnvironment) e).getRegion();
            Supplier<TransactionStateCache> cacheSupplier = getTransactionStateCacheSupplier(env);
            this.cache = cacheSupplier.get();
        }
    }

    protected Supplier<TransactionStateCache> getTransactionStateCacheSupplier(RegionCoprocessorEnvironment env) {
        String tableName = env.getRegion().getTableDesc().getNameAsString();
        String[] parts = tableName.split("\\.", 2);
        String tableNamespace = "";
        if (parts.length > 0) {
            tableNamespace = parts[0];
        }
        return new DefaultTransactionStateCacheSupplier(tableNamespace, env.getConfiguration());
    }

    @Override
    public void preGet(ObserverContext<RegionCoprocessorEnvironment> ctx, Get get, List<KeyValue> results)
            throws IOException {
        Scan scan = new Scan(get);
        scan.setMaxVersions();
        scan.setFilter(Filters.combine(new IncrementFilter(), scan.getFilter()));
        RegionScanner scanner = null;
        try {
            scanner = new IncrementSummingScanner(region, scan.getBatch(), region.getScanner(scan));
            scanner.next(results);
            ctx.bypass();
        } finally {
            if (scanner != null) {
                scanner.close();
            }
        }
    }

    @Override
    public void prePut(ObserverContext<RegionCoprocessorEnvironment> ctx, Put put, WALEdit edit, boolean writeToWAL)
            throws IOException {
        if (put.getAttribute(Constants.DELTA_WRITE) != null) {
            // incremental write
            NavigableMap<byte[], List<KeyValue>> newFamilyMap = new TreeMap<byte[], List<KeyValue>>(
                    Bytes.BYTES_COMPARATOR);
            for (Map.Entry<byte[], List<KeyValue>> entry : put.getFamilyMap().entrySet()) {
                List<KeyValue> newCells = new ArrayList<KeyValue>(entry.getValue().size());
                for (KeyValue kv : entry.getValue()) {
                    // rewrite the cell value with a special prefix to identify it as a delta
                    // for 0.98 we can update this to use cell tags
                    byte[] newValue = Bytes.add(DELTA_MAGIC_PREFIX, kv.getValue());
                    newCells.add(new KeyValue(kv.getRow(), kv.getFamily(), kv.getQualifier(), kv.getTimestamp(),
                            newValue));
                }
                newFamilyMap.put(entry.getKey(), newCells);
            }
            put.setFamilyMap(newFamilyMap);
        }
        // put completes normally with value prefix marker
    }

    @Override
    public RegionScanner preScannerOpen(ObserverContext<RegionCoprocessorEnvironment> e, Scan scan, RegionScanner s)
            throws IOException {
        // must see all versions to aggregate increments
        scan.setMaxVersions();
        scan.setFilter(Filters.combine(new IncrementFilter(), scan.getFilter()));
        return s;
    }

    @Override
    public RegionScanner postScannerOpen(ObserverContext<RegionCoprocessorEnvironment> ctx, Scan scan,
            RegionScanner scanner) throws IOException {
        return new IncrementSummingScanner(region, scan.getBatch(), scanner);
    }

    @Override
    public InternalScanner preFlush(ObserverContext<RegionCoprocessorEnvironment> e, Store store,
            InternalScanner scanner) throws IOException {
        TransactionSnapshot snapshot = cache.getLatestState();
        if (snapshot != null) {
            return new IncrementSummingScanner(region, BATCH_UNLIMITED, scanner,
                    snapshot.getVisibilityUpperBound());
        }
        return new IncrementSummingScanner(region, BATCH_UNLIMITED, scanner);
    }

    public static boolean isIncrement(KeyValue kv) {
        return kv.getValueLength() == IncrementHandler.DELTA_FULL_LENGTH
                && Bytes.equals(kv.getBuffer(), kv.getValueOffset(), IncrementHandler.DELTA_MAGIC_PREFIX.length,
                        IncrementHandler.DELTA_MAGIC_PREFIX, 0, IncrementHandler.DELTA_MAGIC_PREFIX.length);
    }

    @Override
    public InternalScanner preCompact(ObserverContext<RegionCoprocessorEnvironment> e, Store store,
            InternalScanner scanner) throws IOException {
        TransactionSnapshot snapshot = cache.getLatestState();
        if (snapshot != null) {
            return new IncrementSummingScanner(region, BATCH_UNLIMITED, scanner,
                    snapshot.getVisibilityUpperBound());
        }
        return new IncrementSummingScanner(region, BATCH_UNLIMITED, scanner);
    }

    @Override
    public InternalScanner preCompact(ObserverContext<RegionCoprocessorEnvironment> e, Store store,
            InternalScanner scanner, CompactionRequest request) throws IOException {
        TransactionSnapshot snapshot = cache.getLatestState();
        if (snapshot != null) {
            return new IncrementSummingScanner(region, BATCH_UNLIMITED, scanner,
                    snapshot.getVisibilityUpperBound());
        }
        return new IncrementSummingScanner(region, BATCH_UNLIMITED, scanner);
    }

}