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 686C21001B for ; Thu, 27 Feb 2014 18:36:59 +0000 (UTC) Received: (qmail 67618 invoked by uid 500); 27 Feb 2014 18:36:58 -0000 Delivered-To: apmail-accumulo-user-archive@accumulo.apache.org Received: (qmail 67572 invoked by uid 500); 27 Feb 2014 18:36:58 -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 67562 invoked by uid 99); 27 Feb 2014 18:36:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Feb 2014 18:36:58 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of Michael.Giordano@vistronix.com designates 207.46.163.242 as permitted sender) Received: from [207.46.163.242] (HELO na01-by2-obe.outbound.protection.outlook.com) (207.46.163.242) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Feb 2014 18:36:52 +0000 Received: from BLUPR01MB178.prod.exchangelabs.com (10.242.201.14) by BLUPR01MB097.prod.exchangelabs.com (10.242.188.12) with Microsoft SMTP Server (TLS) id 15.0.888.9; Thu, 27 Feb 2014 18:36:30 +0000 Received: from BLUPR01MB178.prod.exchangelabs.com ([10.242.201.14]) by BLUPR01MB178.prod.exchangelabs.com ([10.242.201.14]) with mapi id 15.00.0883.010; Thu, 27 Feb 2014 18:36:30 +0000 From: "Giordano, Michael" To: "user@accumulo.apache.org" Subject: Null source for iterator Thread-Topic: Null source for iterator Thread-Index: Ac8z6qWWZtyadf7jRoiavv/m+T5uFA== Date: Thu, 27 Feb 2014 18:36:30 +0000 Message-ID: <221225bbfd7c45a889cdf2e68c9d133f@BLUPR01MB178.prod.exchangelabs.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [108.58.122.186] x-forefront-prvs: 013568035E x-forefront-antispam-report: SFV:NSPM;SFS:(10009001)(428001)(377424004)(164054003)(189002)(199002)(56776001)(54316002)(51856001)(93516002)(93136001)(74316001)(49866001)(47736001)(90146001)(76482001)(74706001)(94316002)(33646001)(4396001)(46102001)(54356001)(92566001)(74366001)(86362001)(53806001)(56816005)(83072002)(50986001)(47976001)(66066001)(80022001)(85852003)(85306002)(16236675002)(15395725003)(65816001)(80976001)(19580395003)(83322001)(81686001)(94946001)(77982001)(59766001)(74662001)(47446002)(76176001)(81542001)(74502001)(31966008)(69226001)(63696002)(16297215004)(79102001)(87936001)(81816001)(76796001)(76786001)(15975445006)(15202345003)(95666003)(95416001)(87266001)(74876001)(81342001)(2656002)(19300405004)(10126625002)(24736002);DIR:OUT;SFP:1101;SCL:1;SRVR:BLUPR01MB097;H:BLUPR01MB178.prod.exchangelabs.com;CLIP:108.58.122.186;FPR:FC86F052.8612D712.32DF9F73.88E3E941.2023C;PTR:InfoNoRecords;MX:1;A:1;LANG:en; received-spf: None (: Vistronix.com does not designate permitted sender hosts) Content-Type: multipart/alternative; boundary="_000_221225bbfd7c45a889cdf2e68c9d133fBLUPR01MB178prodexchang_" MIME-Version: 1.0 X-OriginatorOrg: vistronix.com X-Virus-Checked: Checked by ClamAV on apache.org --_000_221225bbfd7c45a889cdf2e68c9d133fBLUPR01MB178prodexchang_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Given this code : BatchScanner scanner =3D connector.createBatchScanner("tableName", authoriz= ations, threadCount); IteratorSetting iterSetting =3D new IteratorSetting(10, "filterName", Custo= mFilter.class); iterSetting.addOption("option1", "value1"); iterSetting.addOption("option2", "value2"); scanner.addScanIterator(iterSetting); Iterator> iter =3D scanner.iterator(); iter.hasNext(); I am receiving this exception when hasNext() is called : 2014-02-27 15:47:08,845 [thrift.ProcessFunction] ERROR: Internal error proc= essing startMultiScan java.lang.RuntimeException: java.util.concurrent.ExecutionException: java.l= ang.IllegalStateException: getting null source The full stacktrace can be found at http://pastebin.com/nkpKnwAh If anyone can shed light on what I am doing wrong, I would deeply appreciat= e it. Thanks, Mike G. This communication, along with its attachments, is considered confidential = and proprietary to Vistronix. It is intended only for the use of the perso= n(s) named above. Note that unauthorized disclosure or distribution of inf= ormation not generally known to the public is strictly prohibited. If you = are not the intended recipient, please notify the sender immediately. --_000_221225bbfd7c45a889cdf2e68c9d133fBLUPR01MB178prodexchang_ Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

Given this code :

 

BatchScanner scanner =3D connector.createBatchSca= nner("tableName", authorizations, threadCount);

IteratorSetting iterSetting =3D new IteratorSetti= ng(10, "filterName", CustomFilter.class);

 

iterSetting.addOption("option1", "= value1");

iterSetting.addOption("option2", "= value2");

scanner.addScanIterator(iterSetting);<= /p>

 

Iterator<Entry<Key,Value>> iter =3D s= canner.iterator();

iter.hasNext();

 

I am receiving this exception when hasNext() is c= alled :

 

2014-02-27 15:47:08,845 [thrift.ProcessFunction] = ERROR: Internal error processing startMultiScan

java.lang.RuntimeException: java.util.concurrent.= ExecutionException: java.lang.IllegalStateException: getting null source

 

The full stacktrace can be found at http://pastebin.com/nkpKnwAh

 

If anyone can shed light on what I am doing wrong= , I would deeply appreciate it.

 

Thanks,

Mike G.

 

This communication, along with its attachments, is considered confidential = and proprietary to Vistronix.  It is intended only for the use of= the person(s) named above.  Note that unauthorized disclosure or= distribution of information not generally known to the public is strictly prohibited.  If you are not the intended = recipient, please notify the sender immediately.

--_000_221225bbfd7c45a889cdf2e68c9d133fBLUPR01MB178prodexchang_--