Return-Path: X-Original-To: apmail-accumulo-dev-archive@www.apache.org Delivered-To: apmail-accumulo-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 317EA18D21 for ; Thu, 18 Jun 2015 16:28:06 +0000 (UTC) Received: (qmail 13627 invoked by uid 500); 18 Jun 2015 16:28:01 -0000 Delivered-To: apmail-accumulo-dev-archive@accumulo.apache.org Received: (qmail 13604 invoked by uid 500); 18 Jun 2015 16:28:01 -0000 Mailing-List: contact dev-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list dev@accumulo.apache.org Received: (qmail 13582 invoked by uid 99); 18 Jun 2015 16:28:00 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Jun 2015 16:28:00 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 292EC182234 for ; Thu, 18 Jun 2015 16:28:00 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.105 X-Spam-Level: X-Spam-Status: No, score=0.105 tagged_above=-999 required=6.31 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_MSPIKE_H2=-1.108, SPF_PASS=-0.001, URIBL_BLOCKED=0.001, URI_HEX=1.313] autolearn=disabled Authentication-Results: spamd3-us-west.apache.org (amavisd-new); dkim=pass (2048-bit key) header.d=gmail.com Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id oqcIUli97Htn for ; Thu, 18 Jun 2015 16:27:51 +0000 (UTC) Received: from mail-qg0-f50.google.com (mail-qg0-f50.google.com [209.85.192.50]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with ESMTPS id 664EB2802B for ; Thu, 18 Jun 2015 16:27:50 +0000 (UTC) Received: by qged89 with SMTP id d89so27862857qge.0 for ; Thu, 18 Jun 2015 09:27:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=YZWhYfMxPaZW7WmwGxWK1Y2XODJL6qoOa79z7SIrc40=; b=YBarrPUgFor1F+EuS+EILj8k2a3BBo+W/maZdUv94EHp77daQYnK3gyXUYhIrhV1pk OapAQ5MxHBQjGQw0n35r6Xn558TffbOGyvXQdgs9limCaNVhSiYK6hvuwmyvgXGd075Y DhPayQjh2KauaSstoh/PWremTl+jBpdNQu2gO3DRrkooX/OQIPm3qfmH1SLS9XDHVR5y H9sose0oCR9n84hSNcAuvfSu7ygwXPI4NXUcKXIRYaJ7gqE47KX0SjjMWGbT89E2Fjpj dsm26C8rDuxgE4oTRNoitySiKLNBbkcSykuzPETlbwWR2ojiTelrWodyrncXiM3Kz2OM FX8A== X-Received: by 10.140.135.6 with SMTP id 6mr16593717qhh.101.1434644863001; Thu, 18 Jun 2015 09:27:43 -0700 (PDT) Received: from hw10447.local (pool-68-134-10-53.bltmmd.fios.verizon.net. [68.134.10.53]) by mx.google.com with ESMTPSA id e104sm4153236qgd.29.2015.06.18.09.27.41 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 18 Jun 2015 09:27:42 -0700 (PDT) Message-ID: <5582F17C.3040901@gmail.com> Date: Thu, 18 Jun 2015 12:27:40 -0400 From: Josh Elser User-Agent: Postbox 3.0.11 (Macintosh/20140602) MIME-Version: 1.0 To: dev@accumulo.apache.org Subject: Re: JniBasedUnixGroupsMapping.anchorNative()V Error when initializing MiniAccumuloCluster References: <1434393852713-14449.post@n5.nabble.com> <557F1EBE.4010205@gmail.com> <1434642438778-14511.post@n5.nabble.com> In-Reply-To: <1434642438778-14511.post@n5.nabble.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Shouldn't be any reason why it can't. The ZooKeeper process spawned by MAC is no different than a ZooKeeper instance you'd start for a normal cluster. ZooKeeper binds on all interfaces, so localhost should be fine. Double check that the port matches? Jeff N wrote: > So I actually built accumulo 1.6 against hadoop 1.x and that fixed the > previous issue. New problem though. Can the AccumuloOutputFormat class talk > to the zookeeper that is spawned from a MiniAccumuloCluster? > > During the checkOutputSpecs call from AccumuloOutputFormat it throws and > exception saying it cannot connect to the zookeeper (localhost:). > > Just to refresh, I'm using Accumulo 1.6 built for Hadoop 1.2.1 with > zookeeper v 3.4.6. The code I'm trying to run involves creating a Hadoop Job > that talks to a MiniAccumuloCluster for IO. All of this code is run out of a > main and compiled/executed with Maven. > > Thanks. > > > > ----- > > > > -- > View this message in context: http://apache-accumulo.1065345.n5.nabble.com/JniBasedUnixGroupsMapping-anchorNative-V-Error-when-initializing-MiniAccumuloCluster-tp14449p14511.html > Sent from the Developers mailing list archive at Nabble.com.