Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

in storm ui logs I am frequently getting following log line, what's the significance of this log and how can I avoid it?

avatar

b.s.u.StormBoundedExponentialBackoffRetry [INFO] The baseSleepTimeMs [2000] the maxSleepTimeMs [60000] the maxRetries [5]

1 ACCEPTED SOLUTION

avatar
Expert Contributor

It originates from Zookeeper client (Curator) and it's a class implementing exponential back off for zookeeper connection (Storm). It's a DEBUG message in the current code base https://github.com/apache/storm/blob/master/storm-core/src/jvm/org/apache/storm/utils/StormBoundedEx... What version of Storm are you using?

View solution in original post

3 REPLIES 3

avatar
Expert Contributor

It originates from Zookeeper client (Curator) and it's a class implementing exponential back off for zookeeper connection (Storm). It's a DEBUG message in the current code base https://github.com/apache/storm/blob/master/storm-core/src/jvm/org/apache/storm/utils/StormBoundedEx... What version of Storm are you using?

avatar

@ambud.sharma this is HDP-2.3.4

avatar
Expert Contributor

I looked through the commit history for 0.10.x (Storm), don't see this line marked as INFO level. The line is just a constructor initialization message therefore you can ignore it.