我不懂怎么用textio读。谁能举例说明一下吗?
dced5bon1#
请尝试以下操作。在我的案子里是有效的。
String[] args1 = new String[] { "--hdfsConfiguration=[{\"fs.defaultFS\":\"hdfs://localhost:9000\"}]" }; HadoopFileSystemOptions options = PipelineOptionsFactory.fromArgs(args1).withValidation().as( HadoopFileSystemOptions.class); Pipeline pipeline = Pipeline.create(options); pipeline.apply( TextIO.read().from("hdfs://localhost:9000/path-to-file/*"));
1条答案
按热度按时间dced5bon1#
请尝试以下操作。在我的案子里是有效的。