gpt4 book ai didi

java - spark java api 有像 hadoop MultipleOutputs/FSDataOutputStream 这样的类吗?

转载 作者:可可西里 更新时间:2023-11-01 14:51:40 25 4
gpt4 key购买 nike

我试图在减少部分输出一些特定的记录,这取决于键值记录的值。在hadoop mapreduce中可以使用类似的代码

public void setup(Context context) throws IOException, InterruptedException {
super.setup(context);
Configuration conf = context.getConfiguration ();
FileSystem fs = FileSystem.get (conf);
int taskID = context.getTaskAttemptID().getTaskID().getId();
hdfsOutWriter = fs.create (new Path (fileName + taskID), true); // FSDataOutputStream
}
public void reduce(Text key, Iterable<Text> value, Context context) throws IOException, InterruptedException {
boolean isSpecificRecord = false;
ArrayList <String> valueList = new ArrayList <String> ();
for (Text val : value) {
String element = val.toString ();
if (filterFunction (element)) return;
if (specificFunction (element)) isSpecificRecord = true;
valueList.add (element);
}
String returnValue = anyFunction (valueList);
String specificInfo = anyFunction2 (valueList);
if (isSpecificRecord) hdfsOutWriter.writeBytes (key.toString () + "\t" + specificInfo);
context.write (key, new Text (returnValue));
}

我想在 spark 集群上运行这个过程,spark java api 可以像上面的代码那样做吗?

最佳答案

只是一个如何模拟的想法:

yoursRDD.mapPartitions(iter => {
val fs = FileSystem.get(new Configuration())
val ds = fs.create(new Path("outfileName_" + TaskContext.get.partitionId))
ds.writeBytes("Put yours results")
ds.close()
iter
})

关于java - spark java api 有像 hadoop MultipleOutputs/FSDataOutputStream 这样的类吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43654407/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com