Return-Path: X-Original-To: apmail-zookeeper-user-archive@www.apache.org Delivered-To: apmail-zookeeper-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 DF972FD8B for ; Wed, 20 Mar 2013 22:17:40 +0000 (UTC) Received: (qmail 69803 invoked by uid 500); 20 Mar 2013 22:17:40 -0000 Delivered-To: apmail-zookeeper-user-archive@zookeeper.apache.org Received: (qmail 69756 invoked by uid 500); 20 Mar 2013 22:17:40 -0000 Mailing-List: contact user-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@zookeeper.apache.org Delivered-To: mailing list user@zookeeper.apache.org Received: (qmail 69748 invoked by uid 99); 20 Mar 2013 22:17:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Mar 2013 22:17:40 +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 (nike.apache.org: domain of bahman.kalali@gmail.com designates 209.85.220.169 as permitted sender) Received: from [209.85.220.169] (HELO mail-vc0-f169.google.com) (209.85.220.169) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Mar 2013 22:17:33 +0000 Received: by mail-vc0-f169.google.com with SMTP id kw10so1834778vcb.0 for ; Wed, 20 Mar 2013 15:17:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=pxYWeK41OrigPj65Sca3Nf7jB0sLpERXrpZALGSGNWM=; b=gS4Op0fSf7uuUvbQJ1TgHApvSlnuK1wboacDrj20z81ZWEnd5t7DPWY2kzwsxKshH9 Z6rBRc3FYKzIoPz6lmjttyaHzr2GaWeFU8x1I0DKz1niMtcZ/VMvQcKQCaUf+JIpc8CX Bud6Kn8zSWCMnle7XahlL13LPZZPlqGjWHaQ+ABvKCqSwbn/evtQ4F8+Xkiv51Ez7u/Z yhCT3PWzilpAh6Z6uitOtS5WUp1uaW613xgffMHz0HTA4bXxUqvx51x7q5C424qsf+OR pEY0+ukL4EGLN17Cr4uSudJbC72ewbrW5BSZzkvs9d8ZGtAtwiTOa6IDUBQOBosAsDXI 3Zew== MIME-Version: 1.0 X-Received: by 10.52.31.103 with SMTP id z7mr8802263vdh.56.1363817831976; Wed, 20 Mar 2013 15:17:11 -0700 (PDT) Received: by 10.52.32.137 with HTTP; Wed, 20 Mar 2013 15:17:11 -0700 (PDT) In-Reply-To: References: Date: Wed, 20 Mar 2013 17:17:11 -0500 Message-ID: Subject: Re: Error Path when creating a node From: Bahman Kalali To: user@zookeeper.apache.org Content-Type: multipart/alternative; boundary=bcaec51ddd4969d6ba04d8629590 X-Virus-Checked: Checked by ClamAV on apache.org --bcaec51ddd4969d6ba04d8629590 Content-Type: text/plain; charset=ISO-8859-1 I created a cluster of three servers manually on windows and then I copied the cluster to unix box. I am hearing that is the issue now. How can I create nodes in ZooKeeper? BR//Bahman On Wed, Mar 20, 2013 at 5:06 PM, Camille Fournier wrote: > Did you create this path on the unix file system, or in ZooKeeper? > ZooKeeper isn't reading the unix file system for nodes, it's reading its > own internal data tree. You need to create the nodes in ZooKeeper. > > > On Wed, Mar 20, 2013 at 6:04 PM, Bahman Kalali >wrote: > > > Hi Camille, > > > > Thank you very much for your reply! > > > > I already created the path /apps/neo4j/zookeeper/data on unix box. Under > > this path for a cluster of three servers, I have zk1,zk2,zk3 for each > > server where each zk1, zk2, zk3 have myid files. Also, I can see that > > version-2 also created under zk1,zk2,zk3. All these directors are > created > > manualy under my user id and not root. > > > > However, I still when I create a node under /apps/neo4j/zookeeper/data, I > > will get an error "Error Path:/apps/neo4j/zookeeper/data > > Error:KeeperErrorCode = NoNode for /apps/neo4j/zookeeper/data" > > > > BR//Bahman > > > > > > > > On Wed, Mar 20, 2013 at 4:29 PM, Camille Fournier > >wrote: > > > > > The path /apps/neo4j/zookeeper/data has not been created in the ZK on > > your > > > unix box. You need to create that path before you can write an > ephemeral > > > node to it. You probably did this already on your windows ZK which is > why > > > you aren't seeing the error. ZooKeeper does not create parent nodes in > a > > > path for you, you must create the full path yourself if it hasn't been > > > created. > > > As per the documentation: > > > "If the parent node does not exist in the ZooKeeper, a KeeperException > > with > > > error code KeeperException.NoNode will be thrown." > > > > > > > > > On Wed, Mar 20, 2013 at 4:52 PM, Bahman Kalali < > bahman.kalali@gmail.com > > > >wrote: > > > > > > > Hi, > > > > > > > > I am using this API to create a node: > > > > > > > > lockPath = zk.create(/apps/neo4j/zookeeper/data/searchlock, > > null, > > > > Ids.OPEN_ACL_UNSAFE, > > > CreateMode.EPHEMERAL_SEQUENTIAL); > > > > > > > > Here is my setting in zoo.cfg in one of three servers: > > > > > > > > tickTime=2000 > > > > initLimit=10 > > > > syncLimit=5 > > > > dataDir=/apps/neo4j/zookeeper/data/zk1 > > > > dataLogDir=/apps/neo4j/zookeeper/log/zk1 > > > > clientPort=2185 > > > > server.1=upladevzoo01v:2988:3988 > > > > server.2=upladevzoo01v:2989:3989 > > > > server.3=upladevzoo01v:2990:3990 > > > > > > > > > > > > However, I get this exception on the server log "Error > > > > Path:/apps/neo4j/zookeeper/data" > > > > > > > > 2013-03-20 15:39:44,882 [myid:2] - INFO [ProcessThread(sid:2 > > > > cport:-1)::PrepRequestProcessor@627] - Got user-level > KeeperException > > > when > > > > processing sessionid:0x23d895990500004 type:create cxid:0x1 > > > > zxid:0x100000020 txntype:-1 reqpath:n/a Error > > > > Path:/apps/neo4j/zookeeper/data Error:KeeperErrorCode = NoNode for > > > > /apps/neo4j/zookeeper/data > > > > > > > > The same setting works fine on my local windows box, but not on a > unix > > > box. > > > > > > > > Does this have anything to do with permission on unix box? > > > > > > > > BR//Bahman > > > > > > > > > > --bcaec51ddd4969d6ba04d8629590--