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 E551618918 for ; Mon, 4 Jan 2016 11:44:51 +0000 (UTC) Received: (qmail 7020 invoked by uid 500); 4 Jan 2016 11:44:50 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 6955 invoked by uid 500); 4 Jan 2016 11:44:50 -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 6937 invoked by uid 99); 4 Jan 2016 11:44:50 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jan 2016 11:44:50 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id A5167C785F for ; Mon, 4 Jan 2016 11:44:49 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 3.129 X-Spam-Level: *** X-Spam-Status: No, score=3.129 tagged_above=-999 required=6.31 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=0.25, HTML_MESSAGE=3, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_PASS=-0.001] autolearn=disabled Authentication-Results: spamd1-us-west.apache.org (amavisd-new); dkim=pass (2048-bit key) header.d=gmail.com Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id Qs31MTuBHYTa for ; Mon, 4 Jan 2016 11:44:49 +0000 (UTC) Received: from mail-lb0-f169.google.com (mail-lb0-f169.google.com [209.85.217.169]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with ESMTPS id 9598B201EB for ; Mon, 4 Jan 2016 11:44:48 +0000 (UTC) Received: by mail-lb0-f169.google.com with SMTP id bc4so156591868lbc.2 for ; Mon, 04 Jan 2016 03:44:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=9wGO7jk+o1CtBrG698QsPil6fvtGQfk+fiC5vv7bQGo=; b=yZ/OLGgpdWMq2EvrNizGMWRMV75+cOLykAGwddc3aBEO8hb7YjA+M5HvmBPcFb1HLN uUmJ614LVeAPPvokhdyFnRtOCuiZvBEFfO9L8hpTFbzWoBIqA/4ptz/luxtlRGjVFbU5 hqBF8Z+GodI6KbFr3XScZ803lDU0VNORdUByHyR5oz4dcGIOYpb/2APVJuTRPd7R6G1q kr5JTFLKLCjwPbJMP/rhK0Ej0PAJjBZEdsl4BkKJCuZTXsyKGe852JmZ87kb9meYVBQ3 OQIRH/vncSxzQIgg66lTDx7wm51i1xiGGZYglTIFibl2/+Ro3SoPyIUhG1Te2AQGRMY/ vwBw== MIME-Version: 1.0 X-Received: by 10.112.172.8 with SMTP id ay8mr10234374lbc.145.1451907880895; Mon, 04 Jan 2016 03:44:40 -0800 (PST) Received: by 10.114.27.164 with HTTP; Mon, 4 Jan 2016 03:44:40 -0800 (PST) Date: Mon, 4 Jan 2016 17:14:40 +0530 Message-ID: Subject: issue in fuzzy filter From: Rajeshkumar J To: user@hbase.apache.org Content-Type: multipart/alternative; boundary=001a11c2b3f07cd84f052880a5c4 --001a11c2b3f07cd84f052880a5c4 Content-Type: text/plain; charset=UTF-8 Hi, We can use fuzzy row filter when rowkey has fixed length.I decided to design row key as yyyy-mm-dd| platform id | control id where platform id and control id are a two digit nos. we have combo box through which we can select differen values of date, platform and control for search. For this we decided to use fuzzy filter. So now actions can be performed by yyyy-mm-dd|??|?? and so on. Now i am trying to use fuzzy row filter in java api and i tried below code but it throws error. Configuration config = HBaseConfiguration.create(); HTable hTable = new HTable(config, "test"); Scan scan = new Scan(); scan.setFilter(new FuzzyRowFilter( Arrays.asList( new Pair( Bytes.toBytesBinary("\\x00\\x00\\x00\\x00_login_"), new byte[]{1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0})))); } I have added all the dependency jars but still it throws Create constructor " FuzzyRowFilter(java.util.list) " and i am using hbase version 0.98.13 Can any one help me in solving this? Thanks --001a11c2b3f07cd84f052880a5c4--