-
Notifications
You must be signed in to change notification settings - Fork 28.5k
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-22142][BUILD][STREAMING] Move Flume support behind a profile #19365
Conversation
@@ -1478,7 +1478,7 @@ def search_kafka_assembly_jar(): | |||
("Failed to find Spark Streaming kafka assembly jar in %s. " % kafka_assembly_dir) + | |||
"You need to build Spark with " | |||
"'build/sbt assembly/package streaming-kafka-0-8-assembly/assembly' or " | |||
"'build/mvn package' before running this test.") | |||
"'build/mvn -Pkafka-0-8 package' before running this test.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not strictly related, but I noticed this when making a similar modification in the message below
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LINE
Test build #82237 has finished for PR 19365 at commit
|
Merged to master |
A few test cases failed. Could we revert this first? |
Just revert it back. Please submit a new PR. Thanks! |
Hm, not sure why it passed Maven and the SBT PR builder. Yeah I'll have to look into it. |
…take 2 ## What changes were proposed in this pull request? Move flume behind a profile, take 2. See apache#19365 for most of the back-story. This change should fix the problem by removing the examples module dependency and moving Flume examples to the module itself. It also adds deprecation messages, per a discussion on dev about deprecating for 2.3.0. ## How was this patch tested? Existing tests, which still enable flume integration. Author: Sean Owen <sowen@cloudera.com> Closes apache#19412 from srowen/SPARK-22142.2.
What changes were proposed in this pull request?
Add 'flume' profile to enable Flume-related integration modules
How was this patch tested?
Existing tests; no functional change