|
|
|
|
|
by bluelu
804 days ago
|
|
I had a similar bug more than 10 years ago, also while building a search index through Lucene. It would crash after hours of running with an impossible nullpointer exception. It always appeared after running for hours, and running that specific iteration would not trigger the exception, so hard to reproduce. Turned out it was a java jvm bug which was triggered when the jvm decided to recompile that code part since it was used more frequently. Try running your code with the -server flag and see if that makes a difference. |
|