选择以特定模式开头的字段:Spark XML Parsing

时间:2018-06-12 23:14:50

标签: scala apache-spark apache-spark-sql apache-spark-xml

我不得不解析一些非常大的xml文件。我想要提取这些xml文件中的一些字段,然后对它们执行一些工作。但是,我需要遵循一些规则,即如果它们遵循某种模式,我只能选择字段。

这是我想要实现的一个例子:

// Some made up data
val schema = new StructType()
      .add("devices", 
        new StructType()
          .add("thermostats", MapType(StringType,
            new StructType()
              .add("device_id", StringType)
              .add("locale", StringType)
              .add("E2EDK1000", StringType)
              .add("E2EDK2000", StringType)
              .add("E2EDK3000", StringType))))

val nestDataDS2 = Seq("""{
    "devices": {
      "thermostats": {
          "peyiJNo0IldT2YlIVtYaGQ": {
            "device_id": "peyiJNo0IldT2YlIVtYaGQ",
            "locale": "en-US",
            "E2EDK1000": "4.0",
            "E2EDK2000": "VqFabWH21nwVyd4RWgJgNb292wa7hG_dUwo2i2SG7j3-BOLY0BA4sw",
            "E2EDK3000": "Hallway Upstairs"}}}}""").toDS
val nestDF2 = spark
            .read
            .schema(nestSchema2)
            .json(nestDataDS2.rdd)

root
 |-- devices: struct (nullable = true)
 |    |-- thermostats: map (nullable = true)
 |    |    |-- key: string
 |    |    |-- value: struct (valueContainsNull = true)
 |    |    |    |-- device_id: string (nullable = true)
 |    |    |    |-- locale: string (nullable = true)
 |    |    |    |-- E2EDK1000: string (nullable = true)
 |    |    |    |-- E2EDK2000: string (nullable = true)
 |    |    |    |-- E2EDK3000: string (nullable = true)

鉴于此,我想进入值字段,所以我执行以下操作

val tmp = nestDF2.select($"devices.thermostats.value")
root
 |-- value: struct (nullable = true)
 |    |-- device_id: string (nullable = true)
 |    |-- locale: string (nullable = true)
 |    |-- E2EDK1000: string (nullable = true)
 |    |-- E2EDK2000: string (nullable = true)
 |    |-- E2EDK3000: string (nullable = true)

这是我的问题:我想选择值中以以下模式E2EDK1开头的所有字段。但是,我仍然坚持如何做到这一点。这是我想要的最终结果:

root
 |-- E2EDK1000: string (nullable = true)

我知道我可以直接选择该字段,但在我使用的数据中并不总是E2EDK1000始终存在的情况。总是会有E2EDK1。

我尝试过使用startsWith(),但这似乎不起作用,例如。

val tmp2 = tmp
  .select($"value".getItem(_.startsWith("E2EDK1")))

1 个答案:

答案 0 :(得分:1)

您可以使用.*选择值列的所有元素到单独的列中,过滤所有以E2EDK1开头的元素名称,最后只选择那些列,如下所示

//flattens the struct value column to separate columns
val tmp = nestDF2.select($"devices.thermostats.value.*")
//filter in the column names that starts with E2EDK1
val e2edk1Columns = tmp.columns.filter(_.startsWith("E2EDK1"))
//select only the columns that starts with E2EDK1
tmp.select(e2edk1Columns.map(col):_*)

它应该为您提供以E2EDK1作为单独列开头的 value struct column 的所有元素。对于您给出的示例,您应该输出为

+---------+
|E2EDK1000|
+---------+
|null     |
+---------+

root
 |-- E2EDK1000: string (nullable = true)

如果您愿意,可以将它们组合回struct