>-6ren">
gpt4 book ai didi

python - PySpark,通过 JSON 文件导入模式

转载 作者:太空狗 更新时间:2023-10-30 00:02:23 25 4
gpt4 key购买 nike

tbschema.json 看起来像这样:

[{"TICKET":"integer","TRANFERRED":"string","ACCOUNT":"STRING"}]

我使用下面的代码加载它

>>> df2 = sqlContext.jsonFile("tbschema.json")
>>> f2.schema
StructType(List(StructField(ACCOUNT,StringType,true),
StructField(TICKET,StringType,true),StructField(TRANFERRED,StringType,true)))
>>> df2.printSchema()
root
|-- ACCOUNT: string (nullable = true)
|-- TICKET: string (nullable = true)
|-- TRANFERRED: string (nullable = true)
  1. 当我希望元素的顺序与它们在 JSON 中出现的顺序相同时,为什么要对架构元素进行排序。

  2. JSON导出后数据类型integer转成StringType,如何保留数据类型。

最佳答案

Why does the schema elements gets sorted, when i want the elemets in the same order as they appear in the json.

因为不能保证字段的顺序。虽然没有明确说明,但当您查看 JSON 阅读器 docstring 中提供的示例时,它就会变得显而易见。如果您需要特定的顺序,您可以手动提供模式:

from pyspark.sql.types import StructType, StructField, StringType

schema = StructType([
StructField("TICKET", StringType(), True),
StructField("TRANFERRED", StringType(), True),
StructField("ACCOUNT", StringType(), True),
])
df2 = sqlContext.read.json("tbschema.json", schema)
df2.printSchema()

root
|-- TICKET: string (nullable = true)
|-- TRANFERRED: string (nullable = true)
|-- ACCOUNT: string (nullable = true)

The data type integer has been converted into StringType after the json has been derived, how do i retain the datatype.

JSON 字段 TICKET 的数据类型是字符串,因此 JSON 读取器返回字符串。它是 JSON 阅读器,而不是某种模式阅读器。

一般来说,您应该考虑一些开箱即用的模式支持的适当格式,例如 Parquet , AvroProtocol Buffers .但是如果你真的想玩 JSON 你可以像这样定义穷人的“模式”解析器:

from collections import OrderedDict 
import json

with open("./tbschema.json") as fr:
ds = fr.read()

items = (json
.JSONDecoder(object_pairs_hook=OrderedDict)
.decode(ds)[0].items())

mapping = {"string": StringType, "integer": IntegerType, ...}

schema = StructType([
StructField(k, mapping.get(v.lower())(), True) for (k, v) in items])

JSON 的问题在于,实际上无法保证任何字段顺序,更不用说处理丢失的字段、不一致的类型等。因此,使用上述解决方案实际上取决于您对数据的信任程度。

或者您可以使用 built-in schema import / export utilities .

关于python - PySpark,通过 JSON 文件导入模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32028149/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com