多項選擇題下列關(guān)于spark中的RDD描述正確的有()。

A.RDD(Resilient distributed dataset)叫做彈性分布式數(shù)據(jù)集,是spark中最基本的數(shù)據(jù)抽象
B.Resilient:表示彈性的,彈性表示
C.Destributed:分布式,可以并行在集群計算
D.Dataset:就是一個集合,用于存放數(shù)據(jù)的


您可能感興趣的試卷

你可能感興趣的試題

1.多項選擇題下列是transformation的算子()。

A.mapPartitions
B.lookup
C.mapPartitionsWithIndex
D.count

2.多項選擇題RDD和它的父RDD的關(guān)系有()。

A.寬依賴
B.窄依賴
C.分區(qū)關(guān)系
D.繼承關(guān)系

3.單項選擇題在Scala中如何獲取字符串“Hello”的首字符和尾字符?()

A."Hello"(0),"Hello"(5)
B."Hello".take(1),"Hello".reverse(0)
C."Hello"(1),"Hello"(5)
D."Hello".take(0), "Hello".takeRight(1)

4.單項選擇題如果需要使用scala庫中的sqrt函數(shù),如sqrt(2),下列引用包的方式錯誤的是()。

A.import scala.math._
B.import sqrt
C.import math._
D.import math.sqrt