Uh oh!
There was an error while loading. Please reload this page.
[MINOR][DOCS] Fix th doc. of spark-streaming with kinesis - #15260
Conversation
SparkQA
commented
Sep 27, 2016
Test build #65962 has finished for PR 15260 at commit
|
srowen
commented
Sep 28, 2016
Although it should still work (?) to build with |
In master, I tried; Also, in the spark-2.0 branch, I hit the same issue. |
maropu
commented
Sep 28, 2016
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? |
srowen
commented
Sep 28, 2016
I think your current change sounds fine. It shows how people should use this now. |
maropu
commented
Sep 28, 2016
yea, thx, |
srowen
commented
Sep 29, 2016
Oh, add it to |
maropu
commented
Sep 29, 2016
yea, okay. |
srowen
commented
Sep 29, 2016
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.