尝试将CSV数据框生成的StringType转换为JSON的ArrayType。
在pyspark
上使用Spark2
我正在处理的CSV文件;如下-
date,attribute2,count,attribute3
2017-09-03,'attribute1_value1',2,'[{"key":"value","key2":2},{"key":"value","key2":2},{"key":"value","key2":2}]'
2017-09-04,'attribute1_value2',2,'[{"key":"value","key2":20},{"key":"value","key2":25},{"key":"value","key2":27}]'
如上所示,它在文字字符串中包含一个属性"attribute3"
,从技术上讲,这是一个字典(JSON)列表,精确长度为2。
(这是功能不同的输出)
printSchema()
的片段
attribute3: string (nullable = true)
我正尝试将"attribute3"
强制转换为ArrayType
,如下所示:
temp = dataframe.withColumn(
"attribute3_modified",
dataframe["attribute3"].cast(ArrayType())
)
Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: __init__() takes at least 2 arguments (1 given)
实际上,ArrayType
期望将数据类型作为参数。我尝试使用"json"
,但是没有用。
所需输出-
最后,我需要将attribute3
转换为ArrayType()
或简单的简单Python列表。 (我正在尝试避免使用eval
)
如何将其转换为ArrayType
,以便将其视为JSON列表?
我在这里错过了什么吗?
(documentation并不能直接解决此问题)
答案 0 :(得分:3)
将from_json
用于与attribute3
列中的实际数据相匹配的架构,以将json转换为ArrayType:
原始数据框:
df.printSchema()
#root
# |-- date: string (nullable = true)
# |-- attribute2: string (nullable = true)
# |-- count: long (nullable = true)
# |-- attribute3: string (nullable = true)
from pyspark.sql.functions import from_json
from pyspark.sql.types import *
创建模式:
schema = ArrayType(
StructType([StructField("key", StringType()),
StructField("key2", IntegerType())]))
使用from_json
:
df = df.withColumn("attribute3", from_json(df.attribute3, schema))
df.printSchema()
#root
# |-- date: string (nullable = true)
# |-- attribute2: string (nullable = true)
# |-- count: long (nullable = true)
# |-- attribute3: array (nullable = true)
# | |-- element: struct (containsNull = true)
# | | |-- key: string (nullable = true)
# | | |-- key2: integer (nullable = true)
df.show(1, False)
#+----------+----------+-----+------------------------------------+
#|date |attribute2|count|attribute3 |
#+----------+----------+-----+------------------------------------+
#|2017-09-03|attribute1|2 |[[value, 2], [value, 2], [value, 2]]|
#+----------+----------+-----+------------------------------------+
答案 1 :(得分:3)
@Psidom的answer对我不起作用,因为我正在使用Spark 2.1。
就我而言,我不得不稍微修改您的attribute3
字符串以将其包装在字典中:
import pyspark.sql.functions as f
df2 = df.withColumn("attribute3", f.concat(f.lit('{"data": '), "attribute3", f.lit("}")))
df2.select("attribute3").show(truncate=False)
#+--------------------------------------------------------------------------------------+
#|attribute3 |
#+--------------------------------------------------------------------------------------+
#|{"data": [{"key":"value","key2":2},{"key":"value","key2":2},{"key":"value","key2":2}]}|
#+--------------------------------------------------------------------------------------+
现在,我可以如下定义架构:
schema = StructType(
[
StructField(
"data",
ArrayType(
StructType(
[
StructField("key", StringType()),
StructField("key2", IntegerType())
]
)
)
)
]
)
现在使用from_json
,然后使用getItem()
:
df3 = df2.withColumn("attribute3", f.from_json("attribute3", schema).getItem("data"))
df3.show(truncate=False)
#+----------+----------+-----+---------------------------------+
#|date |attribute2|count|attribute3 |
#+----------+----------+-----+---------------------------------+
#|2017-09-03|attribute1|2 |[[value,2], [value,2], [value,2]]|
#+----------+----------+-----+---------------------------------+
和架构:
df3.printSchema()
# root
# |-- attribute3: array (nullable = true)
# | |-- element: struct (containsNull = true)
# | | |-- key: string (nullable = true)
# | | |-- key2: integer (nullable = true)