-
Notifications
You must be signed in to change notification settings - Fork 275
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
NoClassDefFoundError raised for ZipNumClusterSearchResultSource; we are not using ZipNum #432
Comments
NoClassDefFoundError
raised for ZipNumClusterSearchResultSource; we are not using ZipNum
Hey Patrick!
Never mind that is in the same package; doesn't need explicit import. |
Hmm. I better see if I can find the build for it, then, because I thought this was just the standard binary at http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.netpreserve.openwayback%22 . I'll look at the documentation here. |
Well, the source I found in a build environment does lack that import. I'll circle back! Thank you, that should have been an obvious thing for me to check. |
Ah, I see, no, it's not a custom build after all: Can you confirm that the import is missing from the java source file in the repo? |
Yeah, I can confirm the import isn't in the repo, and isn't needed. I was not able to trigger the I wonder if the "Too many open files" issue can cause a |
@ldko yes, that is possible - if the ClassLoader has to open a new file to find the class in question, it'll fail if there are too many file handles open already. IMO I would update the |
We're trying with a 2^16 nodules ulimit to see if that helps. Thank you! |
We've been seeing a
NoClassDefFoundError
raised when we have an exception on opening a CDX file. I suspect the CDX file error is related to #276 (this instance has 75 unique CDX files, I think, and they are quite large; I'm hoping other work we have planned will resolve this underlying issue), but I'm asking specifically about the NoClassDefFoundError.It references
ZipNumClusterSearchResultSource
. Now, I know we're not using ZipNum; but I'm wondering if we need a bean definition referencing ZipNumClusterSearchResults to indicate that we are not using it to avoid seeing thisNoClassDefFoundError
?Any suggestions would be welcome! Thank you!
The text was updated successfully, but these errors were encountered: