Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

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
Contributor

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
Contributor

@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.