Uploaded image for project: 'ZooKeeper'
  1. ZooKeeper
  2. ZOOKEEPER-1263 fix handling of min/max session timeout value initialization
  3. ZOOKEEPER-1213

ZooKeeper server startup fails if configured only with the 'minSessionTimeout' and not 'maxSessionTimeout'

    XMLWordPrintableJSON

Details

    • Sub-task
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 3.3.3
    • 3.5.0
    • server
    • None

    Description

      I have configured only the 'minSessionTimeout' and not configured 'maxSessionTimeout' in the zoo.cfg file as follows

      zoo.cfg

      tickTime=2000
      minSessionTimeout=10000

      I'm seeing the following exception and not starting the ZooKeeper server

      2011-10-07 23:39:10,546 - INFO  [main:QuorumPeerConfig@100] - Reading configuration from: /home/rakeshr/zookeeper/bin/../conf/zoo.cfg
      2011-10-07 23:39:12,334 - ERROR [main:QuorumPeerMain@85] - Invalid config, exiting abnormally
      org.apache.zookeeper.server.quorum.QuorumPeerConfig$ConfigException: Error processing /home/rakeshr/zookeeper/bin/../conf/zoo.cfg
      	at org.apache.zookeeper.server.quorum.QuorumPeerConfig.parse(QuorumPeerConfig.java:120)
      	at org.apache.zookeeper.server.quorum.QuorumPeerMain.initializeAndRun(QuorumPeerMain.java:101)
      	at org.apache.zookeeper.server.quorum.QuorumPeerMain.main(QuorumPeerMain.java:78)
      Caused by: java.lang.IllegalArgumentException: minSessionTimeout must not be larger than maxSessionTimeout
      	at org.apache.zookeeper.server.quorum.QuorumPeerConfig.parseProperties(QuorumPeerConfig.java:265)
      	at org.apache.zookeeper.server.quorum.QuorumPeerConfig.parse(QuorumPeerConfig.java:116)
      	... 2 more
      

      Startup fails due to the following validation. Here maxSessionTimeout value is -1 rather than the upper limit (tickTime * 2)

               /** defaults to -1 if not set explicitly */
               protected int maxSessionTimeout = -1;
      
              if (minSessionTimeout > maxSessionTimeout) {
                  throw new IllegalArgumentException(
                          "minSessionTimeout must not be larger than maxSessionTimeout");
              }
      

      Attachments

        1. ZOOKEEPER-1213.patch
          3 kB
          Rakesh Radhakrishnan

        Issue Links

          Activity

            People

              rakeshr Rakesh Radhakrishnan
              rakeshr Rakesh Radhakrishnan
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: