Skip to content

用于把source 和 Transform 的表(虚表)输出到 JSONFile。 配置方法:

xml
<target type="jsonfile" 
       table_name="cust_id_agmt_id_t"
       path="file:///path/output3.json"
       partition="1"
       compression="gzip"
       savemode="overwrite" />

配置说明:

  1. Path 为target 文件存储地址,支持file://和 hdfs://;
  2. Partition 为控制输出分区数,防止小文件过多;
  3. Compression 为压缩格式,无参数则无需压缩。压缩支持见【target压缩】;
  4. Savemode 为 overwrite 空覆盖写入,当写入目标已存在和删除再写入。否则根据 Spark 的特性任务会失败;