誰かがmapとflatMapの違いを説明してもらえますか?それぞれの良い使用例は何ですか?
「結果を平坦化する」とはどういう意味ですか?それは何に適していますか?
誰かがmapとflatMapの違いを説明してもらえますか?それぞれの良い使用例は何ですか?
「結果を平坦化する」とはどういう意味ですか?それは何に適していますか?
回答:
以下は、spark-shell
セッションとしての違いの例です。
まず、いくつかのデータ-2行のテキスト:
val rdd = sc.parallelize(Seq("Roses are red", "Violets are blue")) // lines
rdd.collect
res0: Array[String] = Array("Roses are red", "Violets are blue")
ここで、map
長さNのRDDを長さNの別のRDDに変換します。
たとえば、2つの線から2つの線の長さにマップします。
rdd.map(_.length).collect
res1: Array[Int] = Array(13, 16)
しかしflatMap
(大まかに言えば)長さNのRDDをN個のコレクションのコレクションに変換し、それらを結果の単一のRDDにフラット化します。
rdd.flatMap(_.split(" ")).collect
res2: Array[String] = Array("Roses", "are", "red", "Violets", "are", "blue")
1行に複数の単語があり、複数の行がありますが、最終的に単語の単一の出力配列になります
それを説明するために、行のコレクションから単語のコレクションへのflatMappingは次のようになります。
["aa bb cc", "", "dd"] => [["aa","bb","cc"],[],["dd"]] => ["aa","bb","cc","dd"]
したがって、入力RDDと出力RDDは通常、のサイズが異なりflatMap
ます。
関数で使用しようとした場合map
、入力ごとに1つの結果しか得られないためsplit
、ネストされた構造(型の単語の配列のRDD)になってしまいRDD[Array[String]]
ます。
rdd.map(_.split(" ")).collect
res3: Array[Array[String]] = Array(
Array(Roses, are, red),
Array(Violets, are, blue)
)
最後に、便利な特殊なケースの1つは、応答を返さない可能性がある関数を使用してマッピングすることOption
です。を使用flatMap
して、返される要素を除外し、None
aを返す要素から値を抽出できますSome
。
val rdd = sc.parallelize(Seq(1,2,3,4))
def myfn(x: Int): Option[Int] = if (x <= 2) Some(x * 10) else None
rdd.flatMap(myfn).collect
res3: Array[Int] = Array(10,20)
(ここでは、オプションは1つの要素または0つの要素を持つリストのように動作することに注意してください)
["a b c", "", "d"] => [["a","b","c"],[],["d"]]
?
split
は文字列のリストへのマッピングは配列のリストを生成します)
通常、hadoopでは単語数の例を使用します。私は同じユースケースを使用して使用map
しflatMap
、データの処理方法の違いを確認します。
以下はサンプルデータファイルです。
hadoop is fast
hive is sql on hdfs
spark is superfast
spark is awesome
上記のファイルはmap
およびを使用して解析されますflatMap
。
map
>>> wc = data.map(lambda line:line.split(" "));
>>> wc.collect()
[u'hadoop is fast', u'hive is sql on hdfs', u'spark is superfast', u'spark is awesome']
入力は4行で、出力サイズも4です。つまり、N要素==> N要素です。
flatMap
>>> fm = data.flatMap(lambda line:line.split(" "));
>>> fm.collect()
[u'hadoop', u'is', u'fast', u'hive', u'is', u'sql', u'on', u'hdfs', u'spark', u'is', u'superfast', u'spark', u'is', u'awesome']
出力はマップとは異なります。
各キーの値として1を割り当てて、単語数を取得します。
fm
:を使用して作成されたRDD flatMap
wc
:を使用して作成されたRDD map
>>> fm.map(lambda word : (word,1)).collect()
[(u'hadoop', 1), (u'is', 1), (u'fast', 1), (u'hive', 1), (u'is', 1), (u'sql', 1), (u'on', 1), (u'hdfs', 1), (u'spark', 1), (u'is', 1), (u'superfast', 1), (u'spark', 1), (u'is', 1), (u'awesome', 1)]
一方flatMap
、RDD wc
は以下の望ましくない出力を提供します。
>>> wc.flatMap(lambda word : (word,1)).collect()
[[u'hadoop', u'is', u'fast'], 1, [u'hive', u'is', u'sql', u'on', u'hdfs'], 1, [u'spark', u'is', u'superfast'], 1, [u'spark', u'is', u'awesome'], 1]
のmap
代わりにを使用すると、単語数を取得できませんflatMap
。
定義に従って、違いmap
とflatMap
されています。
map
:RDDの各要素に特定の関数を適用することにより、新しいRDDを返します。関数inmap
は1つのアイテムのみを返します。
flatMap
:と同様にmap
、RDDの各要素に関数を適用して新しいRDDを返しますが、出力はフラット化されます。
.map(lambda line:line.split(" "))
文字列の配列ではありません。に変更data.collect()
するwc.collect
必要があり、配列の配列が表示されます。
wc.collect()
?
それはあなたの最初の質問に要約されます:あなたが平らにすることはどういう意味ですか?
flatMapを使用すると、「多次元」コレクションは「1次元」コレクションになります。
val array1d = Array ("1,2,3", "4,5,6", "7,8,9")
//array1d is an array of strings
val array2d = array1d.map(x => x.split(","))
//array2d will be : Array( Array(1,2,3), Array(4,5,6), Array(7,8,9) )
val flatArray = array1d.flatMap(x => x.split(","))
//flatArray will be : Array (1,2,3,4,5,6,7,8,9)
flatMapを使用したい場合、
test.md
例として使用:
➜ spark-1.6.1 cat test.md
This is the first line;
This is the second line;
This is the last line.
scala> val textFile = sc.textFile("test.md")
scala> textFile.map(line => line.split(" ")).count()
res2: Long = 3
scala> textFile.flatMap(line => line.split(" ")).count()
res3: Long = 15
scala> textFile.map(line => line.split(" ")).collect()
res0: Array[Array[String]] = Array(Array(This, is, the, first, line;), Array(This, is, the, second, line;), Array(This, is, the, last, line.))
scala> textFile.flatMap(line => line.split(" ")).collect()
res1: Array[String] = Array(This, is, the, first, line;, This, is, the, second, line;, This, is, the, last, line.)
map
method を使用すると、の行が表示されtest.md
、flatMap
methodには、単語の数が表示されます。
map
この方法は、に似ているflatMap
、彼らはすべての新しいRDDを返しています。map
多くの場合、新しいRDDを返すために使用する方法、flatMap
分割した単語を使用するために頻繁に使用する方法。
map
同じ数の要素のRDDを返しますflatMap
が、そうでない場合もあります。
flatMap
欠落または誤ったデータをフィルターで除外する使用例。
map
入力と出力の要素の数が同じである、さまざまなケースでの使用の使用例。
number.csv
1
2
3
-
4
-
5
map.pyは、add.csvにすべての数値を追加します。
from operator import *
def f(row):
try:
return float(row)
except Exception:
return 0
rdd = sc.textFile('a.csv').map(f)
print(rdd.count()) # 7
print(rdd.reduce(add)) # 15.0
flatMap.pyはflatMap
、追加する前に欠落データを除外するために使用します。以前のバージョンと比較して追加される数は少なくなっています。
from operator import *
def f(row):
try:
return [float(row)]
except Exception:
return []
rdd = sc.textFile('a.csv').flatMap(f)
print(rdd.count()) # 5
print(rdd.reduce(add)) # 15.0
すべての例は良いです...ここに素敵な視覚的なイラストがあります...ソースの礼儀:スパークのDataFlairトレーニング
マップ:マップは、Apache Sparkの変換操作です。RDDの各要素に適用され、結果を新しいRDDとして返します。マップでは、操作開発者は自分のカスタムビジネスロジックを定義できます。同じロジックがRDDのすべての要素に適用されます。
Spark RDD map
関数は、カスタムコード(開発者が指定)に従って1つの要素を入力プロセスとして受け取り、一度に1つの要素を返します。マップは長さNのRDDを長さNの別のRDDに変換します。通常、入力RDDと出力RDDは同じ数のレコードを持ちます。
map
scala の使用例:
val x = spark.sparkContext.parallelize(List("spark", "map", "example", "sample", "example"), 3)
val y = x.map(x => (x, 1))
y.collect
// res0: Array[(String, Int)] =
// Array((spark,1), (map,1), (example,1), (sample,1), (example,1))
// rdd y can be re writen with shorter syntax in scala as
val y = x.map((_, 1))
y.collect
// res1: Array[(String, Int)] =
// Array((spark,1), (map,1), (example,1), (sample,1), (example,1))
// Another example of making tuple with string and it's length
val y = x.map(x => (x, x.length))
y.collect
// res3: Array[(String, Int)] =
// Array((spark,5), (map,3), (example,7), (sample,6), (example,7))
FlatMap:
A flatMap
は変換操作です。RDDの各要素に適用され、結果をnewとして返しますRDD
。Mapに似ていますが、FlatMapはmap関数から0、1、またはそれ以上の要素を返すことができます。FlatMap操作では、開発者は独自のカスタムビジネスロジックを定義できます。同じロジックがRDDのすべての要素に適用されます。
「結果を平坦化する」とはどういう意味ですか?
FlatMap関数は、カスタムコード(開発者が指定)に従って1つの要素を入力プロセスとして受け取り、一度に0個以上の要素を返します。flatMap
()は、長さNのRDDを長さMの別のRDDに変換します。
flatMap
scala の使用例:
val x = spark.sparkContext.parallelize(List("spark flatmap example", "sample example"), 2)
// map operation will return Array of Arrays in following case : check type of res0
val y = x.map(x => x.split(" ")) // split(" ") returns an array of words
y.collect
// res0: Array[Array[String]] =
// Array(Array(spark, flatmap, example), Array(sample, example))
// flatMap operation will return Array of words in following case : Check type of res1
val y = x.flatMap(x => x.split(" "))
y.collect
//res1: Array[String] =
// Array(spark, flatmap, example, sample, example)
// RDD y can be re written with shorter syntax in scala as
val y = x.flatMap(_.split(" "))
y.collect
//res2: Array[String] =
// Array(spark, flatmap, example, sample, example)
違いは、以下のサンプルpysparkコードから確認できます。
rdd = sc.parallelize([2, 3, 4])
rdd.flatMap(lambda x: range(1, x)).collect()
Output:
[1, 1, 2, 1, 2, 3]
rdd.map(lambda x: range(1, x)).collect()
Output:
[[1], [1, 2], [1, 2, 3]]
RDD.map
すべての要素を単一の配列で返します
RDD.flatMap
配列の配列の要素を返します
text.txtファイルに次のようなテキストがあるとします。
Spark is an expressive framework
This text is to understand map and faltMap functions of Spark RDD
地図を使う
val text=sc.textFile("text.txt").map(_.split(" ")).collect
出力:
text: **Array[Array[String]]** = Array(Array(Spark, is, an, expressive, framework), Array(This, text, is, to, understand, map, and, faltMap, functions, of, Spark, RDD))
flatMapの使用
val text=sc.textFile("text.txt").flatMap(_.split(" ")).collect
出力:
text: **Array[String]** = Array(Spark, is, an, expressive, framework, This, text, is, to, understand, map, and, faltMap, functions, of, Spark, RDD)
PySpark関連を望んでいたすべての人のために:
変換の例:flatMap
>>> a="hello what are you doing"
>>> a.split()
['やあ、元気']
>>> b=["hello what are you doing","this is rak"]
>>> b.split()
トレースバック(最後の最後の呼び出し):ファイル ""、行1、AttributeError: 'list'オブジェクトに属性 'split'がありません
>>> rline=sc.parallelize(b)
>>> type(rline)
>>> def fwords(x):
... return x.split()
>>> rword=rline.map(fwords)
>>> rword.collect()
[['hello'、 'what'、 'are'、 'you'、 'doing']、['this'、 'is'、 'rak']]
>>> rwordflat=rline.flatMap(fwords)
>>> rwordflat.collect()
['hello'、 'what'、 'are'、 'you'、 'doing'、 'this'、 'is'、 'rak']
それが役に立てば幸い :)
map
:RDD
関数をの各要素に適用することにより、新しいを返しますRDD
。.map内の関数は1つのアイテムのみを返すことができます。
flatMap
:マップと同様に、それは新しいを返すRDD
ことにより、RDDの各要素に関数を適用しますが、出力が平坦化されています。
また、関数in flatMap
は要素のリスト(0以上)を返すことができます
例えば:
sc.parallelize([3,4,5]).map(lambda x: range(1,x)).collect()
出力:[[1、2]、[1、2、3]、[1、2、3、4]]
sc.parallelize([3,4,5]).flatMap(lambda x: range(1,x)).collect()
出力:o / pが単一のリストにフラット化されることに注意してください[1、2、1、2、3、1、2、3、4]
出典:https : //www.linkedin.com/pulse/difference-between-map-flatmap-transformations-spark-pyspark-pandey/
地図:
関数を入力として取り、それをソースRDDの各要素に適用する高次のメソッドです。
flatMap:
入力関数を使用する高次のメソッドと変換操作。
mapとflatMapの出力の違い:
1。flatMap
val a = sc.parallelize(1 to 10, 5)
a.flatMap(1 to _).collect()
出力:
1, 1, 2, 1, 2, 3, 1, 2, 3, 4, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
2. map
:
val a = sc.parallelize(List("dog", "salmon", "salmon", "rat", "elephant"), 3)
val b = a.map(_.length).collect()
出力:
3 6 6 3 8
間
RDD.map
とRDD.flatMap
でApacheのスパーク。一般に、SparkのRDD操作は、対応するScalaコレクション操作をモデルにしています。Scala との違いについて説明しているstackoverflow.com/q/1059776/590203の回答は、参考になるかもしれません。map
flatMap