Return-Path: X-Original-To: apmail-hbase-user-archive@www.apache.org Delivered-To: apmail-hbase-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3BC2910E02 for ; Fri, 25 Oct 2013 00:40:51 +0000 (UTC) Received: (qmail 4320 invoked by uid 500); 25 Oct 2013 00:40:49 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 4269 invoked by uid 500); 25 Oct 2013 00:40:49 -0000 Mailing-List: contact user-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@hbase.apache.org Delivered-To: mailing list user@hbase.apache.org Received: (qmail 4261 invoked by uid 99); 25 Oct 2013 00:40:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Oct 2013 00:40:49 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of yuzhihong@gmail.com designates 209.85.220.48 as permitted sender) Received: from [209.85.220.48] (HELO mail-pa0-f48.google.com) (209.85.220.48) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Oct 2013 00:40:43 +0000 Received: by mail-pa0-f48.google.com with SMTP id bj1so4113244pad.21 for ; Thu, 24 Oct 2013 17:40:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=hlekxY1/nOYMpbHXCImJOgKtveaeMWdq0cjBTIS/c7s=; b=MmTc2KhLZpeqdg0RpTWL9M7urXieJSdqdbmtFcOA6oJbWB70O2AHFDjgKjVS22LR9c +UNbJUPf6sHM8+jq9O3tX3kHLxLn5psz1iOLO8EMPOc1UUY8RGmbXrYyuIvRunt4Ro8F ElSgzNi2LY7QfCbmaCv+qIOS7nLNDytbCNA956PTmlcPwuM1AvKy8/SAer7arRI/GZeE qUqmZFoEcszg/myV2P0FdZUQZfVomJuRdFXhaNhzazXiTGwETm0o8CJpw0fs/X8nfIhn eNgx8nuvygpSm8QI64UeyaPrY9cYjmRx+RULz+qWuNTf9dY7ky72UnEmM17acZsW9cdM CB0Q== MIME-Version: 1.0 X-Received: by 10.66.66.76 with SMTP id d12mr6445745pat.162.1382661622189; Thu, 24 Oct 2013 17:40:22 -0700 (PDT) Received: by 10.70.134.66 with HTTP; Thu, 24 Oct 2013 17:40:22 -0700 (PDT) In-Reply-To: References: Date: Thu, 24 Oct 2013 17:40:22 -0700 Message-ID: Subject: Re: [ANNOUNCE] Phoenix v 2.1 released From: Ted Yu To: "user@hbase.apache.org" Content-Type: multipart/alternative; boundary=001a11362c2ed5d2bb04e985fe2a X-Virus-Checked: Checked by ClamAV on apache.org --001a11362c2ed5d2bb04e985fe2a Content-Type: text/plain; charset=ISO-8859-1 >From https://github.com/forcedotcom/phoenix/wiki/Secondary-Indexing : Is date_col a column from data table ? CREATE INDEX my_index ON my_table (date_col DESC, v1) INCLUDE (v3) SALT_BUCKETS=10, DATA_BLOCK_ENCODING='NONE'; On Thu, Oct 24, 2013 at 5:24 PM, James Taylor wrote: > The Phoenix team is pleased to announce the immediate availability of > Phoenix 2.1 [1]. > More than 20 individuals contributed to the release. Here are some of the > new features > now available: > * Secondary Indexing [2] to create and automatically maintain global > indexes over your > primary table. > - Queries automatically use an index when more efficient, turning your > full table scans > into point and range scans. > - Multiple columns may be indexed in ascending or descending sort order. > - Additional primary table columns may be included in the index to form > a covered > index. > - Available in two flavors: > o Server-side index maintenance for mutable data. > o Client-side index maintenance optimized for write-once, > append-only use cases. > * Row Value Constructors [3], a standard SQL construct to efficiently > locate the row at > or after a composite key value. > - Enables a query-more capability to efficiently step through your data. > - Optimizes IN list of composite key values to be point gets. > * Map-reduce based CSV Bulk Loader [4] to build Phoenix-compliant HFiles > and load > them into HBase. > * MD5 hash and INVERT built-in functions > > Phoenix 2.1 requires HBase 0.94.4 or above, with 0.94.10 or above required > for mutable secondary indexing. For the best performance, we recommend > HBase 0.94.12 or above. > > Regards, > > James > @JamesPlusPlus > http://phoenix-hbase.blogspot.com/ > > [1] https://github.com/forcedotcom/phoenix/wiki/Download > [2] https://github.com/forcedotcom/phoenix/wiki/Secondary-Indexing > [3] https://github.com/forcedotcom/phoenix/wiki/Row-Value-Constructors > [4] > > https://github.com/forcedotcom/phoenix/wiki/Bulk-CSV-loading-through-map-reduce > --001a11362c2ed5d2bb04e985fe2a--