Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3A96D77EA for ; Mon, 10 Oct 2011 12:25:29 +0000 (UTC) Received: (qmail 21838 invoked by uid 500); 10 Oct 2011 12:25:29 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 21790 invoked by uid 500); 10 Oct 2011 12:25:28 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 21783 invoked by uid 99); 10 Oct 2011 12:25:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Oct 2011 12:25:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Oct 2011 12:25:27 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id F399623889D7 for ; Mon, 10 Oct 2011 12:25:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1180918 - in /hbase/trunk/src/docbkx: book.xml developer.xml Date: Mon, 10 Oct 2011 12:25:06 -0000 To: commits@hbase.apache.org From: dmeil@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111010122506.F399623889D7@eris.apache.org> Author: dmeil Date: Mon Oct 10 12:25:06 2011 New Revision: 1180918 URL: http://svn.apache.org/viewvc?rev=1180918&view=rev Log: HBASE-4564 book.xml,developer.xml Modified: hbase/trunk/src/docbkx/book.xml hbase/trunk/src/docbkx/developer.xml Modified: hbase/trunk/src/docbkx/book.xml URL: http://svn.apache.org/viewvc/hbase/trunk/src/docbkx/book.xml?rev=1180918&r1=1180917&r2=1180918&view=diff ============================================================================== --- hbase/trunk/src/docbkx/book.xml (original) +++ hbase/trunk/src/docbkx/book.xml Mon Oct 10 12:25:06 2011 @@ -1022,6 +1022,8 @@ long explicitTimeInMs = 555; // just an put.add(Bytes.toBytes("cf"), Bytes.toBytes("attr1"), explicitTimeInMs, Bytes.toBytes(data)); htable.put(put); + Caution: the version timestamp is internally by HBase for things like time-to-live calculations. + It's usually best to avoid setting the timestamp yourself. @@ -1121,7 +1123,8 @@ htable.put(put);
Catalog Tables - + The catalog tables -ROOT- and .META. exist as HBase tables. They are are filtered out + of the HBase shell's list command, but they are in fact tables just like any other.
ROOT Modified: hbase/trunk/src/docbkx/developer.xml URL: http://svn.apache.org/viewvc/hbase/trunk/src/docbkx/developer.xml?rev=1180918&r1=1180917&r2=1180918&view=diff ============================================================================== --- hbase/trunk/src/docbkx/developer.xml (original) +++ hbase/trunk/src/docbkx/developer.xml Mon Oct 10 12:25:06 2011 @@ -120,6 +120,12 @@ mvn test mvn test -Dtest=TestXYZ
+
+ Run a Few Unit Tests + +mvn test -Dtest=TestXYZ,TestABC + +
Run all Unit Tests for a Package @@ -377,6 +383,9 @@ Bar bar = foo.getBar(); <--- imag ReviewBoard Larger patches should go through ReviewBoard. + For more information on how to use ReviewBoard, see + the ReviewBoard documentation. +
Committing Patches