Github user tdas commented on the pull request:
https://github.com/apache/spark/pull/6034#issuecomment-101082124
This doesnt yet set the scope for input stream (that is DStream that are
directly created, not using DStream transformations). I think you need to use
the withScope in places like StreamingContext.socketStream(). Example:
```
class StreamingContext {
def socketTextStream(): DStream[String] = withScope {
new SocketInputDStream[String](...)
}
```
This needs to be done for every subclass of `InputDStream` and
`ReceiverInputDStream`
---
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]