GitHub user tdas opened a pull request:
https://github.com/apache/spark/pull/6348
[SPARK-7788] Made KinesisReceiver.onStart() non-blocking
KinesisReceiver calls worker.run() which is a blocking call (while loop) as
per source code of kinesis-client library -
https://github.com/awslabs/amazon-kinesis-client/blob/v1.2.1/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/Worker.java.
This results in infinite loop while calling
sparkStreamingContext.stop(stopSparkContext = false, stopGracefully = true)
perhaps because ReceiverTracker is never able to register the receiver (it's
receiverInfo field is a empty map) causing it to be stuck in infinite loop
while waiting for running flag to be set to false.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/tdas/spark SPARK-7788
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/spark/pull/6348.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #6348
----
commit 6cf1cd415e02e9eef4eee0c637804a612108837c
Author: Tathagata Das <[email protected]>
Date: 2015-05-22T07:02:06Z
Made KinesisReceiver.onStart non-blocking
----
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]