You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@curator.apache.org by "Jordan Zimmerman (JIRA)" <ji...@apache.org> on 2013/09/06 19:51:52 UTC

[jira] [Resolved] (CURATOR-53) PersistentEphemeralNode does not work when ZK server are not available when the node is started

     [ https://issues.apache.org/jira/browse/CURATOR-53?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jordan Zimmerman resolved CURATOR-53.
-------------------------------------

    Resolution: Fixed

ensurePath might throw an exception if connection couldn't succeed. The exception was being swallowed by createNode causing the recipe to fail if there wasn't a good connection when the object was started. Switched to use creatingParentsIfNeeded. It's more efficient anyway. Also, fixed swallowed exceptions.
   
TODO - check other recipes' uses of ensurePath for similar problem.
                
> PersistentEphemeralNode does not work when ZK server are not available when the node is started
> -----------------------------------------------------------------------------------------------
>
>                 Key: CURATOR-53
>                 URL: https://issues.apache.org/jira/browse/CURATOR-53
>             Project: Apache Curator
>          Issue Type: Bug
>          Components: Recipes
>    Affects Versions: 2.2.0-incubating
>         Environment: Windows, Java 1.7, Zookeeper 3.4.5, Curator 2.1.0
>            Reporter: Evaristo
>             Fix For: 2.2.1-incubating
>
>         Attachments: FailurePenStart.java
>
>
> This sequence is not working:
> // ZK servers are not started here
> ExponentialBackoffRetry retryPolicy = new ExponentialBackoffRetry(1000, 1, 2000);
> CuratorFramework zkClient = CuratorFrameworkFactory.newClient("127.0.0.1:30101", 
> 4500,
> 4500,
> retryPolicy);
> zkClient.start();
> Thread.sleep(2000);
> PersistentEphemeralNode pen = new PersistentEphemeralNode(zkClient, Mode.EPHEMERAL, "/abc/pen", "hello".getBytes());
> Thread.sleep(2000);
> // Start ZK servers here
> Thread.sleep(2000);
> // "/abc/pen" ephemeral node is not created
> It is expected that once the CuratorFrameowrk is connected the ephemeral node is created
> I attach a program that shows the failure

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira