-
Notifications
You must be signed in to change notification settings - Fork 29k
[MINOR][DOCS] Fix th doc. of spark-streaming with kinesis #15260
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
Conversation
|
Test build #65962 has finished for PR 15260 at commit
|
|
Although it should still work (?) to build with |
|
In master, I tried; Also, in the spark-2.0 branch, I hit the same issue. |
|
Aha, I see. However, some users possibly think they'd just like to download compiled Spark jars and run the kinesis example for quick tests because compiling the whole spark package takes much time. So, how about staying this current doc as it is and appending a new direction like this pr? |
|
I think your current change sounds fine. It shows how people should use this now. |
|
yea, thx, |
|
Oh, add it to |
|
yea, okay. |
|
Merged to master/2.0 |
## What changes were proposed in this pull request? This pr is just to fix the document of `spark-kinesis-integration`. Since `SPARK-17418` prevented all the kinesis stuffs (including kinesis example code) from publishing, `bin/run-example streaming.KinesisWordCountASL` and `bin/run-example streaming.JavaKinesisWordCountASL` does not work. Instead, it fetches the kinesis jar from the Spark Package. Author: Takeshi YAMAMURO <linguin.m.s@gmail.com> Closes #15260 from maropu/DocFixKinesis. (cherry picked from commit b2e9731) Signed-off-by: Sean Owen <sowen@cloudera.com>
What changes were proposed in this pull request?
This pr is just to fix the document of
spark-kinesis-integration.Since
SPARK-17418prevented all the kinesis stuffs (including kinesis example code)from publishing,
bin/run-example streaming.KinesisWordCountASLandbin/run-example streaming.JavaKinesisWordCountASLdoes not work.Instead, it fetches the kinesis jar from the Spark Package.