-
Notifications
You must be signed in to change notification settings - Fork 23
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
mvn install gives error on tests #52
Comments
Hi @Yicong-Huang, We believe that the punctuation window tuple test fails because it is using the tuple implementation of flink. Thank you for this suggestion, we plan to publish on maven central soon! Best, |
Hi @julianev, I'm hitting this same error and my intent is to try to use scotty with Flink 1.15.2. However, even on the latest commit Best, |
This happens for me when doing a
I think it's simpler than that. You're trying to pass a The error attached above (which I also get) doesn't seem like it's flink-version related at all - it appears to be a bog standard java compilation error because the code is expecting a different generic-typed tuple, and you're mixing ints and strings in the test. It doesn't compile with any JDK version that I have access to at work (are you by chance using Oracle's JDK 8, as opposed to OpenJDK/Temurin?). The only way I can think of that this would compile, let alone pass as a test, would be if your JDK's compiler is ignoring the typing entirely. As an outsider, it seems like if you're expecting this test to work, you're at best relying on likely undefined behavior w.r.t. type erasure, abusing the generic type, and possibly making some strong assumptions about serialization as well. I would humbly request you consider changing the bits of the test that use Tests fail with: nor: (Ubuntu 20.02 in WSL2) |
Hi,
I found this repo through your excellent papers (Scotty, Cutty). I am trying to build the Flink adaptor and use it with the latest Flink distribution (1.14+).
However I met error with mvn install, I've attached the log here:
Could you please help me identify what's going wrong? Also, would it be available to build with sbt in the near future (or simply publish on maven central should help)?
Thanks in advance!
The text was updated successfully, but these errors were encountered: