File

Source plugin : File [Spark]

Description

read data from local or hdfs file.

Options

nametyperequireddefault value
formatstringnojson
pathstringyes-
common-optionsstringyes-
format [string]

Format for reading files, currently supports text, parquet, json, orc, csv.

path [string]
  • If read data from hdfs , the file path should start with hdfs://
  • If read data from local , the file path should start with file://

common options [string]

Source plugin common parameters, please refer to Source Plugin for details

Examples

file {
    path = "hdfs:///var/logs"
    result_table_name = "access_log"
}
file {
    path = "file:///var/logs"
    result_table_name = "access_log"
}