Return-Path: X-Original-To: apmail-accumulo-user-archive@www.apache.org Delivered-To: apmail-accumulo-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 65DBAE45F for ; Thu, 7 Mar 2013 17:38:36 +0000 (UTC) Received: (qmail 36236 invoked by uid 500); 7 Mar 2013 17:38:36 -0000 Delivered-To: apmail-accumulo-user-archive@accumulo.apache.org Received: (qmail 36162 invoked by uid 500); 7 Mar 2013 17:38:36 -0000 Mailing-List: contact user-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@accumulo.apache.org Delivered-To: mailing list user@accumulo.apache.org Received: (qmail 36154 invoked by uid 99); 7 Mar 2013 17:38:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Mar 2013 17:38:36 +0000 X-ASF-Spam-Status: No, hits=-0.5 required=5.0 tests=FREEMAIL_ENVFROM_END_DIGIT,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of cypris87@gmail.com designates 74.125.82.44 as permitted sender) Received: from [74.125.82.44] (HELO mail-wg0-f44.google.com) (74.125.82.44) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Mar 2013 17:38:29 +0000 Received: by mail-wg0-f44.google.com with SMTP id dr12so1288789wgb.23 for ; Thu, 07 Mar 2013 09:38:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=Puv+rAqu/enln7imzSVTdYjY03hmXGGqlPPZLFr1OD8=; b=IJcxCkD9cALXpsIAr5aDSO3XjlfN6xdHcoCFbmU4c90tP71FiLUIq5zopBz5DB6/K0 OVAtSn6GspCqkANozZ+nAEJvd8ckj5unyBitRR6rDlaFR7uucYDIa41An1d0FY+aWWJ7 uQPwGL56CupOenOZEcmmGzDFYggQnEa2Fdp8Il1CV/NaWBbRYWgyr2RHCjE3OUG1z0ZY MxPCGfHhYQkLmRy2G86FgBD1Q0uX2bjfm3x1Ff+Er+TfBgutsArJ7T21OvbrL6L9J0Ki Xg8Wazttb6hXm/drHOJlCcbqC3DBBVKeTQyI2e8OqRZDqeQKw2zzaKYhLPe0G5EJNXsq jyWA== MIME-Version: 1.0 X-Received: by 10.194.109.136 with SMTP id hs8mr53811507wjb.8.1362677889657; Thu, 07 Mar 2013 09:38:09 -0800 (PST) Received: by 10.194.139.51 with HTTP; Thu, 7 Mar 2013 09:38:09 -0800 (PST) Date: Thu, 7 Mar 2013 12:38:09 -0500 Message-ID: Subject: Error setting iterator extending org.apache.accumulo.core.iterators.Filter From: Chris Sigman To: user Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org Hi all, I've written my first filter iterator, and in trying to use it in the shell I get a ShellCommandException stating that the command (setiter) couldn't be initialized because my filter class can't be initialized as SortedKeyValueIterator. Digging into Filter though, it extends WrappingIterator, which implements SortedKeyValueIterator. Is there something I'm missing in my implementation (overriding init and accept)? I don't really know what's going on. Thanks for the help, -- Chris