我使用下面的代码来读取spark scala中的avro文件。
val buf = scala.collection.mutable.ListBuffer.empty[GenericRecord]
while(dataFileReader.hasNext) {
buf += dataFileReader.next
}
我想在文本文件中保存它的输出。请帮帮我
答案 0 :(得分:0)
您可以使用avro-tools实用程序执行此操作
avro-tools fromtext from_fille.avro to_file.txt