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 44D6017541 for ; Mon, 6 Oct 2014 21:27:05 +0000 (UTC) Received: (qmail 96937 invoked by uid 500); 6 Oct 2014 21:27:05 -0000 Delivered-To: apmail-accumulo-user-archive@accumulo.apache.org Received: (qmail 96884 invoked by uid 500); 6 Oct 2014 21:27:05 -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 96874 invoked by uid 99); 6 Oct 2014 21:27:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Oct 2014 21:27:05 +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 (athena.apache.org: domain of threadedblue@gmail.com designates 74.125.82.41 as permitted sender) Received: from [74.125.82.41] (HELO mail-wg0-f41.google.com) (74.125.82.41) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Oct 2014 21:26:59 +0000 Received: by mail-wg0-f41.google.com with SMTP id b13so7686328wgh.12 for ; Mon, 06 Oct 2014 14:26:38 -0700 (PDT) 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=fhZNOwcmLefwAhNaVNwS3XXcV+1Y0YN3SkKVOOeuCKc=; b=AVhYIdCjcxfzav0GvuWWzwXF51Cd3A99cn1ANo3iCOtM5PIHfWjHvPs1EDgajtvmgS PCR84BrEZy5oIXsgeAWgCE4WfkCmfc9Ey0ULFlmyT8FiSajHYUE1zTBmwcYGbsAQ68Hs /3l2Py7jJyuiF6pna3gGb1pbSJdzKqXIaBgTXjyBKQGy5uHFy4wh0E9VcGpKyMCU+BeV s116OTI2ZHR3P5G4nCX2mkED/w8835WTqRXBA1/D/2+eUf+4j2tgUdhhPkOv2pEyNNNg cFYiVRq/NlDsy1SCGdXnHOamFsQvZQ3FGigc1ZkLnEtPiN3aZyFRlhXnI7Pm+SdcDpaB COlQ== MIME-Version: 1.0 X-Received: by 10.194.173.234 with SMTP id bn10mr33200384wjc.81.1412630798503; Mon, 06 Oct 2014 14:26:38 -0700 (PDT) Received: by 10.194.19.133 with HTTP; Mon, 6 Oct 2014 14:26:38 -0700 (PDT) Date: Mon, 6 Oct 2014 17:26:38 -0400 Message-ID: Subject: Remotely Accumulo From: Geoffry Roberts To: Accumulo Content-Type: multipart/alternative; boundary=089e0122f372f193f70504c7bcb3 X-Virus-Checked: Checked by ClamAV on apache.org --089e0122f372f193f70504c7bcb3 Content-Type: text/plain; charset=UTF-8 I have been happily working with Acc, but today things changed. No errors Until now I ran everything server side, which meant the URL was localhost:2181, and life was good. Today tried running some of the same code as a remote client, which means :2181. Things hang when BatchWriter tries to commit anything and Scan hangs when it tries to iterate through a Map. Let's focus on the scan part: scan.fetchColumnFamily(new Text("colfY")); // This executes then hangs. for(Entry entry : scan) { def row = entry.getKey().getRow(); def value = entry.getValue(); println "value=" + value; } This is what appears in the console : 17:22:39.802 C{0} M DEBUG org.apache.zookeeper.ClientCnxn - Got ping response for sessionid: 0x148c6f03388005e after 21ms 17:22:49.803 C{0} M DEBUG org.apache.zookeeper.ClientCnxn - Got ping response for sessionid: 0x148c6f03388005e after 21ms The only difference between success and a hang is a URL change, and of course being remote. I don't believe this is a firewall issue. I shutdown the firewall. Am I missing something? Thanks all. -- There are ways and there are ways, Geoffry Roberts --089e0122f372f193f70504c7bcb3 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable

I have been happily working with Acc, but t= oday things changed.=C2=A0 No errors

Until now I ran eve= rything server side, which meant the URL was localhost:2181, and life was g= ood.=C2=A0 Today tried running some of the same code as a remote client, wh= ich means <host name>:2181.=C2=A0 Things hang when BatchWriter tries = to commit anything and Scan hangs when it tries to iterate through a Map.= =C2=A0

Let's focus on the scan part:

sca= n.fetchColumnFamily(new Text("colfY")); // This executes then han= gs.
for(Entry&= lt;Key,Value> entry : scan) {
def row =3D entry.getKey().getRow();
= def value =3D entry.get= Value();
prin= tln "value=3D" + value;
}

This is what appears in the = console :

17:22:39.802 C{0} M DEBU= G org.apache.zookeeper.ClientCnxn - Got ping response for sessionid: 0x148c= 6f03388005e after 21ms

17:22:49.803 C{0} M DEBUG org.apach= e.zookeeper.ClientCnxn - Got ping response for sessionid: 0x148c6f03388005e= after 21ms

<and on and on>



The only di= fference between success and a hang is a URL change, and of course being re= mote.

I don't believe this is a firewall issue= .=C2=A0 I shutdown the firewall.

Am I missing some= thing?

Thanks all.

--
There are ways and there are ways,=C2=A0
<= br>
Geoffry Roberts
--089e0122f372f193f70504c7bcb3--