-
Notifications
You must be signed in to change notification settings - Fork 155
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
[spark-agent]0.4.0 HttpLineageDispatcher.ensureProducerReady is missing the Success case #515
Comments
calvertj
changed the title
[spark-agent] HttpLineageDispatcher.ensureProducerReady is matching on a Try the value is a Boolean
[spark-agent]0.4.0 HttpLineageDispatcher.ensureProducerReady is matching on a Try the value is a Boolean
Dec 7, 2019
calvertj
changed the title
[spark-agent]0.4.0 HttpLineageDispatcher.ensureProducerReady is matching on a Try the value is a Boolean
[spark-agent]0.4.0 HttpLineageDispatcher.ensureProducerReady is missing the Success case
Dec 7, 2019
cerveada
added a commit
to calvertj/spline
that referenced
this issue
Dec 10, 2019
cerveada
added a commit
to calvertj/spline
that referenced
this issue
Dec 10, 2019
cerveada
added a commit
to calvertj/spline
that referenced
this issue
Dec 11, 2019
cerveada
pushed a commit
that referenced
this issue
Dec 11, 2019
cerveada
added a commit
that referenced
this issue
Dec 11, 2019
cerveada
pushed a commit
that referenced
this issue
Dec 11, 2019
cerveada
added a commit
that referenced
this issue
Dec 11, 2019
cerveada
added a commit
that referenced
this issue
Dec 19, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While trying to initialize the listener:
import za.co.absa.spline.harvester.SparkLineageInitializer._ spark.enableLineageTracking()
an scala.MatchError Exception is thrown
scala.MatchError: Success(true) (of class scala.util.Success)
at za.co.absa.spline.harvester.dispatcher.HttpLineageDispatcher.ensureProducerReady(HttpLineageDispatcher.scala:69) at za.co.absa.spline.harvester.SparkLineageInitializer$SparkSessionWrapper.enableLineageTracking(SparkLineageInitializer.scala:80)
This due to the result of:
val tryStatusOk = Try(Http(statusUrl) .method("HEAD") .asString .isSuccess)
and the match clause which does not have any case for a success.
The text was updated successfully, but these errors were encountered: