-
Notifications
You must be signed in to change notification settings - Fork 228
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
StackOverflow when adding two AVLTreeDigest #125
Comments
Do you have information about which version you are running?
…On Tue, Apr 9, 2019 at 7:33 AM Guillaume PITEL ***@***.***> wrote:
I have a long running dstributed application that computes various
information on the web graph. I store a digest of some values in a
AVLTreeDigest, and sometimes I need to collect all digests, so I need to
add them all. And this happened :
2019-04-09 16:20:19,113 82839181 ERROR [grizzly-http-server-8]
c.e.w.b.LogarithmicStatistics - Error while trying to add
3.000e-13[0.0],1.231e-06[1.0] to
3.000e-13[0.0],3.002e-13[0.5],3.033e-13[0.75],3.127e-13[0.9],3.380e-13[0.95],4.338e-13[0.975],6.264e-13[0.987],1.219e-12[0.995],6.652e-08[1.0]
java.lang.StackOverflowError: null at
com.tdunning.math.stats.AVLGroupTree.add(AVLGroupTree.java:159) at
com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:98) at
com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at
com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at
com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at
com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at
com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at
com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at
com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at
com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at
com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at
com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at
com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at
com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at
com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at
com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at
com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at
com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at
com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at
com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at
com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at
com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at
com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186)
This happens probably because the histogram on which add() is called is
empty.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#125>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAPSeh6zRcUfMWmNnbi2apAxsJB2WNwzks5vfKSrgaJpZM4ckp7m>
.
|
Latest (3.2) |
@guillaumepitel Do you have any further information about this problem? Were you able to switch to MergingDigest or to head and solve the problem? I would like to decide whether this is a blocker for a 3.3 release (or an incentive!) |
Hi @tdunning unfortunately, I couldn't make it work, so we decided to use another solution in the meantime. Sorry that's not very helpful. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a long running dstributed application that computes various information on the web graph. I store a digest of some values in a AVLTreeDigest, and sometimes I need to collect all digests, so I need to add them all. And this happened :
2019-04-09 16:20:19,113 82839181 ERROR [grizzly-http-server-8] c.e.w.b.LogarithmicStatistics - Error while trying to add 3.000e-13[0.0],1.231e-06[1.0] to 3.000e-13[0.0],3.002e-13[0.5],3.033e-13[0.75],3.127e-13[0.9],3.380e-13[0.95],4.338e-13[0.975],6.264e-13[0.987],1.219e-12[0.995],6.652e-08[1.0] java.lang.StackOverflowError: null at com.tdunning.math.stats.AVLGroupTree.add(AVLGroupTree.java:159) at com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:98) at com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186) at com.tdunning.math.stats.AVLTreeDigest.add(AVLTreeDigest.java:156) at com.tdunning.math.stats.AVLTreeDigest.compress(AVLTreeDigest.java:186)
This happens probably because the histogram on which add() is called is empty.
The text was updated successfully, but these errors were encountered: