Spark Scala APIs
To avoid API compatibility or reliability issues after updates to the open-source Spark, it is advisable to use APIs of the version you are currently using.
Common Spark Core APIs
Spark mainly uses the following classes:
- SparkContext: external interface of Spark, which is used to provide the functions of Spark for Scala applications that invoke this class, for example, connecting Spark clusters and creating RDDs.
- SparkConf: Spark application configuration class, which is used to configure the application name, execution model, and executor memory.
- RDD: defines the RDD class in the Spark application. The class provides the data collection operation methods, such as map and filter.
- PairRDDFunctions: provides computation operations for the RDD data of the key-value pair, such as groupByKey.
- Broadcast: broadcast variable class. This class retains one read-only variable, and caches it on each machine, instead of saving a copy for each task.
- StorageLevel: data storage levels, including memory (MEMORY_ONLY), disk (DISK_ONLY), and memory+disk (MEMORY_AND_DISK).
Method |
Description |
---|---|
map[U](f: (T) => U): RDD[U] |
Returns a new RDD by applying a function to all elements of this RDD. |
filter(f: (T) => Boolean): RDD[T] |
Invokes the f method for all RDD elements to generate a satisfied data set that is returned in the form of RDD. |
flatMap[U](f: (T) => TraversableOnce[U])(implicit arg0: ClassTag[U]): RDD[U] |
Returns a new RDD by first applying a function to all elements of this RDD, and then flattening the results. |
sample(withReplacement: Boolean, fraction: Double, seed: Long = Utils.random.nextLong): RDD[T] |
Samples and returns a subset of RDD. |
union(other: RDD[T]): RDD[T] |
Returns a new RDD that contains a set of elements of the source RDD and the specified RDD. |
distinct([numPartitions: Int]): RDD[T] |
Deletes duplicate elements to generate a new RDD. |
groupByKey(): RDD[(K, Iterable[V])] |
Returns (K,Iterable[V]) and combines the values of the same key to a set. |
reduceByKey(func: (V, V) => V[, numPartitions: Int]): RDD[(K, V)] |
Invokes func on the values of the same key. |
sortByKey(ascending: Boolean = true, numPartitions: Int = self.partitions.length): RDD[(K, V)] |
Sorts by key in ascending or descending order. Ascending is of the boolean type. |
join[W](other: RDD[(K, W)][, numPartitions: Int]): RDD[(K, (V, W))] |
Returns the dataset of (K,(V,W)) when the (K,V) and (K,W) datasets exist. numPartitions indicates the number of concurrent tasks. |
cogroup[W](other: RDD[(K, W)], numPartitions: Int): RDD[(K, (Iterable[V], Iterable[W]))] |
Returns the dataset of (K, (Iterable[V], Iterable[W])) when the (K,V) and (K,W) datasets of two key-value pairs exist. numPartitions indicates the number of concurrent tasks. |
cartesian[U](other: RDD[U])(implicit arg0: ClassTag[U]): RDD[(T, U)] |
Returns the Cartesian product of the RDD and other RDDs. |
API |
Description |
---|---|
reduce(f: (T, T) => T): |
Invokes f on elements of the RDD. |
collect(): Array[T] |
Returns an array that contains all of the elements in this RDD. |
count(): Long |
Returns the number of elements in the dataset. |
first(): T |
Returns the first element in the dataset. |
take(num: Int): Array[T] |
Returns the first n elements. |
takeSample(withReplacement: Boolean, num: Int, seed: Long = Utils.random.nextLong): Array[T] |
Samples the dataset randomly and returns a dataset of num elements. withReplacement indicates whether replacement is used. |
saveAsTextFile(path: String): Unit |
Writes the dataset to a text file, HDFS, or file system supported by HDFS. Spark converts each record to a row of records and then writes it to the file. |
saveAsSequenceFile(path: String, codec: Option[Class[_ <: CompressionCodec]] = None): Unit |
This API can be used only on the key-value pair, and then it generates SequenceFile and writes the file to the local or Hadoop file system. |
countByKey(): Map[K, Long] |
Counts the appearance times of each key. |
foreach(func: (T) => Unit): Unit |
Runs func on each element of the dataset. |
countByValue()(implicit ord: Ordering[T] = null): Map[T, Long] |
Counts the times that each element of the RDD occurs. |
API |
Description |
---|---|
isSparkContextDown:AtomicBoolean |
Determines whether sparkContext is shut down completely. The initial value is false. The value true indicates that sparkContext is shut down completely. The value false indicates that sparkContext is not shut down. For example, sc.isSparkContextDown.get() == true indicates that sparkContext is shut down completely. |
Common Spark Streaming APIs
Spark Streaming mainly uses the following classes:
- StreamingContext: main entrance of Spark Streaming. It provides methods for creating the DStream. A batch interval needs to be set in the input parameter.
- dstream.DStream: a type of data which indicates the RDDs continuous sequence. It indicates the continuous data flow.
- dstream.PariDStreamFunctions: DStream of key-value, common operations are groupByKey and reduceByKey.
The Java APIs of the Spark Streaming are JavaStreamingContext, JavaDStream, and JavaPairDStream.
Common methods of Spark Streaming are the same as those of Spark Core. The following table describes some special Spark Streaming methods.
Method |
Description |
---|---|
socketTextStream(hostname: String, port: Int, storageLevel: StorageLevel = StorageLevel.MEMORY_AND_DISK_SER_2): ReceiverInputDStream[String] |
Creates an input stream from the TCP source host:port. |
start():Unit |
Starts the Spark Streaming computing. |
awaitTermination(timeout: long):Unit |
Terminates the await of the process, which is similar to pressing Ctrl+C. |
stop(stopSparkContext: Boolean, stopGracefully: Boolean): Unit |
Stops the Spark Streaming computing. |
transform[T](dstreams: Seq[DStream[_]], transformFunc: (Seq[RDD[_]], Time) ? RDD[T])(implicit arg0: ClassTag[T]): DStream[T] |
Performs the function operation on each RDD to obtain a new DStream. |
UpdateStateByKey(func) |
Updates the status of DStream. To use this method, you need to define the state and state update functions. |
window(windowLength, slideInterval) |
Generates a new DStream by batch calculating according to the window of the source DStream. |
countByWindow(windowLength, slideInterval) |
Returns the number of sliding window elements in the stream. |
reduceByWindow(func, windowLength, slideInterval) |
When the key-value pair of DStream is invoked, a new key-value pair of DStream is returned. The value of each key is obtained by aggregating the reduce function in batches in the sliding window. |
join(otherStream, [numTasks]) |
Performs a join operation between different Spark Streamings. |
DStreamKafkaWriter.writeToKafka() |
Writes data from the DStream into Kafka in batch. |
DStreamKafkaWriter.writeToKafkaBySingle() |
Writes data from the DStream into Kafka one by one. |
Method |
Description |
---|---|
DStreamKafkaWriter.writeToKafka() |
Writes data from the DStream into Kafka in batch. |
DStreamKafkaWriter.writeToKafkaBySingle() |
Writes data from the DStream into Kafka one by one. |
Common Spark SQL APIs
Spark SQL mainly uses the following classes:
- SQLContext: main entrance of the Spark SQL function and DataFrame.
- DataFrame: a distributed dataset organized by naming columns.
- HiveContext: An instance of the Spark SQL execution engine that integrates with data stored in Hive.
Method |
Description |
---|---|
collect(): Array[Row] |
Returns an array containing all the columns of a DataFrame. |
count(): Long |
Returns the number of DataFrame rows. |
describe(cols: String*): DataFrame |
Counts the statistic information, including the counting, average value, standard deviation, minimum value, and maximum value. |
first(): Row |
Returns the first row. |
Head(n:Int): Row |
Returns the first n rows. |
show(numRows: Int, truncate: Boolean): Unit |
Displays DataFrame in a table. |
take(n:Int): Array[Row] |
Returns the first n rows in a DataFrame. |
Method |
Description |
---|---|
explain(): Unit |
Prints the logical plan and physical plan of the SQL. |
printSchema(): Unit |
Prints the schema information to the console. |
registerTempTable(tableName: String): Unit |
Registers a DataFrame as a temporary table, whose period is bound to the SQLContext. |
toDF(colNames: String*): DataFrame |
Returns a DataFrame whose columns are renamed. |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot