-
Notifications
You must be signed in to change notification settings - Fork 859
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
temporarily support spark 2.x #393
base: master
Are you sure you want to change the base?
temporarily support spark 2.x #393
Conversation
|
Your build configuration was configured to support java 1.7 and 1.8. |
It works fine in my machines. |
Without much modification, I modified the travis config and tested it.
|
Any news on integrating dr elephant with spark 2.x? At booking.com we're using 2.3.1, but trying out dr elephant for spark job monitoring has stalled because of incompatibility issues. |
Any news on this ? What's the plan to integrate with Spark 2.x in the future? Should the support be made on a different branch ? |
Problem :
the spark metric does not display correctly.
Cause :
This is caused by the inability to parse the SHS event log based on spark 2.x.
SparkDataCollection class processes SHS event log based on spark 1.4, but spark 2.x will cause error due to newly added SHS event log.
I did :
As a temporary measure, I changed the sbt spark version to 2.2.1 or less, and when calling the ReplayListenerBus replay, I made use of the ReplayEventsFilter to support spark 2.x with the exception of the newly added SHS event log in 2.x.