Exception StackTrace: java.lang.ClassNotFoundException: file
See original GitHub issue用socket例子运行正常,换了个格式,配置文件如下
spark {
# Waterdrop defined streaming batch duration in seconds
spark.streaming.batchDuration = 5
spark.app.name = "DJ-Waterdrop"
spark.ui.port = 13000
}
input {
file {
path = "file:///data/xjzhou/devtools/waterdrop/current/data"
table_name = "accesslog"
format = "text"
}
}
filter {
lowercase {
}
}
output {
file {
path = "file:///data/xjzhou/devtools/waterdrop/current/logs"
serializer = "text"
}
}
运行错误提示
Fatal Error,
Please contact garygaowork@gmail.com or issue a bug in https://github.com/InterestingLab/waterdrop/issues
Reason: file
Exception StackTrace: java.lang.ClassNotFoundException: file
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:264)
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
How do I resolve ClassNotFoundException? - Stack Overflow
When you get a ClassNotFoundException, it means the JVM has traversed the entire classpath and not found the class you've attempted to reference....
Read more >java.lang.ClassNotFoundException - DigitalOcean
It's very easy to fix ClassNotFoundException because the exception stack trace clearly specifies the class not found. Just check for classpath ...
Read more >Error: Stack trace: java.lang.ClassNotFoundException ...
I'm try to create a test case where it is performed a query on data base looking for a given text. The custom...
Read more >Exception StackTrace: java.lang.ClassNotFoundException: file
用socket例子运行正常,换了个格式,配置文件如下spark { # Waterdrop defined streaming batch duration in seconds spark.streaming.
Read more >Javarevisited: Eclipse - java.lang.ClassNotFoundException
Here is the stack trace of this error : java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet at org.apache.catalina.loader.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@xjzhou 因为使用lowercase,导致数据里面多了一列, output serializer 应设为json
@xjzhou 棒