-
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
Can't filter out spark jars #41
Comments
How did you run it? Repl? Submit? Uberjar driver? |
Both from compiling a file and from the REPL. |
Also, it does this on key/connect! |
Here's standard out:
|
I got past this commenting out the other vs. system jars check but now I am getting this warning:
|
Could you provide a print out of the system-jars local?
Le mar. 23 mai 2017 à 21:51, Paul Landes <[email protected]> a
écrit :
I got past this commenting out the other vs. system jars check
<https://github.com/HCADatalab/powderkeg/blob/master/src/main/clojure/powderkeg/core.clj#L140-L141>
but now I am getting this warning:
WARN 2017-05-23 14:49:40.984: ClosureCleaner: Expected a closure; got powderkeg.core$run_job$reify__1589
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#41 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAC3sUz-_fCNDYEvIW0wdlE6ei2U7aAfks5r8zjTgaJpZM4Nheb8>
.
--
On Clojure http://clj-me.cgrand.net/
Clojure Programming http://clojurebook.com
Training, Consulting & Contracting http://lambdanext.eu/
|
Sure. See below.
|
Do you have a mirror or a proxy that could be in the way of deps resolution? |
No |
Bizarre. What about the content of |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can anyone shed some light on this one (much thanks in advance):
Caused by: clojure.lang.ExceptionInfo: Can't filter out Spark jars! {}
at clojure.core$ex_info.invokeStatic(core.clj:4617)
at clojure.core$ex_info.invoke(core.clj:4617)
at powderkeg.core$guess_all_jars_but_spark.invokeStatic(core.clj:141)
at powderkeg.core$guess_all_jars_but_spark.invoke(core.clj:124)
at powderkeg.core$connect_BANG_$fn__1281.invoke(core.clj:177)
...
project.clj snippet:
:exclusions [org.slf4j/slf4j-log4j12
;log4j/log4j
ch.qos.logback/logback-classic
org.apache.spark/spark-core_2.11
org.apache.spark/spark-streaming_2.11
org.apache.spark/spark-streaming-kafka-0-8_2.11
org.apache.spark/spark-sql_2.11
org.apache.spark/spark-hive_2.11]
:dependencies [[org.clojure/clojure "1.8.0"]
:profiles {:uberjar {:aot :all}
:appassem {:aot :all}
:provided
{:dependencies
[[org.apache.spark/spark-core_2.11 "2.1.0"]
[org.apache.spark/spark-streaming_2.11 "2.1.0"]
[org.apache.spark/spark-streaming-kafka-0-8_2.11 "2.1.0"]
[org.apache.spark/spark-sql_2.11 "2.1.0"]
[org.apache.spark/spark-hive_2.11 "2.1.0"]
[com.esotericsoftware/kryo-shaded "4.0.0"]
]}
The text was updated successfully, but these errors were encountered: