我有一个流式处理与Flink与csv文件在一个单一的路径。我想知道每个处理过的文件的文件名。
我目前正在使用此函数将csv文件读入路径(datapath)。
val recs:DataStream[CallCenterEvent] = env
.readFile[CallCenterEvent](
CsvReader.getReaderFormat[CallCenterEvent](dataPath, c._2),
dataPath,
FileProcessingMode.PROCESS_CONTINUOUSLY,
c._2.fileInterval)
.uid("source-%s-%s".format(systemConfig.name, c._1))
.name("%s records reading".format(c._1))
并使用此函数获取tuplecsvinputformat。
def getReaderFormat[T <: Product : ClassTag : TypeInformation](dataPath:String, conf:URMConfiguration): TupleCsvInputFormat[T] = {
val typeInfo = implicitly[TypeInformation[T]]
val format: TupleCsvInputFormat[T] = new TupleCsvInputFormat[T](new Path(dataPath), typeInfo.asInstanceOf[CaseClassTypeInfo[T]])
if (conf.quoteCharacter != null && !conf.quoteCharacter.equals(""))
format.enableQuotedStringParsing(conf.quoteCharacter.charAt(0))
format.setFieldDelimiter(conf.fieldDelimiter)
format.setSkipFirstLineAsHeader(conf.ignoreFirstLine)
format.setLenient(true)
return format
}
进程运行正常,但我找不到方法来获取每个csv文件的文件名。
提前谢谢
1条答案
按热度按时间mnemlml81#
我遇到了类似的情况,我需要知道正在处理的记录的文件名。文件名中有些信息在记录中不可用。要求客户更改记录模式不是一个选项。
我找到了一种方法来访问底层源代码。在我的例子中,它是fileinputsplit(它有源数据文件的路径信息)
现在,您可以在流设置中使用它
虽然我的情况略有不同,但这种方法也应该对你有所帮助!