/* * Copyright (C) 2010-2012 The Async HBase Authors. All rights reserved. * This file is part of Async HBase. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * - Neither the name of the StumbleUpon nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ package org.hbase.async; /** * An explicit row lock. * <p> * Row locks can be explicitly acquired in order to serialize edits to a given * row. This feature may disappear from HBase in the future, so try not to use * it if you can. * <p> * While a row is locked, no one else can edit that row. Other concurrent * attempts to lock that row will block until the lock is released. Beware * that the blocking happens inside the RegionServer, so it will tie up a * thread of the RegionServer. If you have many clients contending for the * same row lock, you can literally starve a RegionServer by blocking all its * IPC threads. * <p> * Row locks can't be held indefinitely. If you don't release a row lock after * a timeout configured on the server side, the lock will be released * automatically by the server and any further attempts to use it will yield an * {@link UnknownRowLockException}. */ public final class RowLock { /** Lock ID used to indicate that there's no explicit row lock. */ static final long NO_LOCK = -1L; private final byte[] region_name; private final long lockid; private final long acquired_tick = System.nanoTime(); /** * Constructor. * <strong>These byte arrays will NOT be copied.</strong> * @param region_name The name of the region on which the lock is held. * @param lockid The ID of the lock the server gave us. */ RowLock(final byte[] region_name, final long lockid) { this.region_name = region_name; this.lockid = lockid; } /** * Returns for how long this lock has been held in nanoseconds. * <p> * This is a best-effort estimate of the time the lock has been held starting * from the point where the RPC response was received and de-serialized out * of the network. Meaning: it doesn't take into account network time and * time spent in the client between when the RPC was received and when it was * fully de-serialized (e.g. time spent in kernel buffers, low-level library * receive buffers, time doing GC pauses and so on and so forth). * <p> * In addition, the precision of the return value depends on the * implementation of {@link System#nanoTime} on your platform. */ public long holdNanoTime() { return System.nanoTime() - acquired_tick; } public String toString() { return "RowLock(region_name=" + Bytes.pretty(region_name) + ", lockid=" + lockid + ", held for " + holdNanoTime() + "ns)"; } // ---------------------- // // Package private stuff. // // ---------------------- // byte[] region() { return region_name; } long id() { return lockid; } }