object JavaStreamingContext
JavaStreamingContext object contains a number of utility functions.
- Alphabetic
- By Inheritance
- JavaStreamingContext
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
def
getOrCreate(checkpointPath: String, creatingFunc: Function0[JavaStreamingContext], hadoopConf: Configuration, createOnError: Boolean): JavaStreamingContext
Either recreate a StreamingContext from checkpoint data or create a new StreamingContext.
Either recreate a StreamingContext from checkpoint data or create a new StreamingContext. If checkpoint data exists in the provided
checkpointPath
, then StreamingContext will be recreated from the checkpoint data. If the data does not exist, then the provided factory will be used to create a JavaStreamingContext.- checkpointPath
Checkpoint directory used in an earlier StreamingContext program
- creatingFunc
Function to create a new JavaStreamingContext
- hadoopConf
Hadoop configuration if necessary for reading from any HDFS compatible file system
- createOnError
Whether to create a new JavaStreamingContext if there is an error in reading checkpoint data.
-
def
getOrCreate(checkpointPath: String, creatingFunc: Function0[JavaStreamingContext], hadoopConf: Configuration): JavaStreamingContext
Either recreate a StreamingContext from checkpoint data or create a new StreamingContext.
Either recreate a StreamingContext from checkpoint data or create a new StreamingContext. If checkpoint data exists in the provided
checkpointPath
, then StreamingContext will be recreated from the checkpoint data. If the data does not exist, then the provided factory will be used to create a JavaStreamingContext.- checkpointPath
Checkpoint directory used in an earlier StreamingContext program
- creatingFunc
Function to create a new JavaStreamingContext
- hadoopConf
Hadoop configuration if necessary for reading from any HDFS compatible file system
-
def
getOrCreate(checkpointPath: String, creatingFunc: Function0[JavaStreamingContext]): JavaStreamingContext
Either recreate a StreamingContext from checkpoint data or create a new StreamingContext.
Either recreate a StreamingContext from checkpoint data or create a new StreamingContext. If checkpoint data exists in the provided
checkpointPath
, then StreamingContext will be recreated from the checkpoint data. If the data does not exist, then the provided factory will be used to create a JavaStreamingContext.- checkpointPath
Checkpoint directory used in an earlier JavaStreamingContext program
- creatingFunc
Function to create a new JavaStreamingContext
-
def
jarOfClass(cls: Class[_]): Array[String]
Find the JAR from which a given class was loaded, to make it easy for users to pass their JARs to StreamingContext.