gpt4 book ai didi

Java(类似SQL)和Shell脚本运行2个参数的问题

转载 作者:行者123 更新时间:2023-12-02 06:24:01 24 4
gpt4 key购买 nike

我有一个 java 类 Filter2,我想使用 shell 脚本 run2.sh 运行它。问题是我不知道如何在 shell 脚本中输入 2 个参数($1 和 $2)。

public class Filter2 {

public static void main(String[] args) throws Exception {
Configuration conf = new Configuration();
String[] otherArgs = new GenericOptionsParser(conf, args).getRemainingArgs();
conf.set("limit", otherArgs[0]);
conf.set("limit2", otherArgs[1]);//added here

Job job = new Job(conf, "Distributed Filter");
job.setJarByClass(Filter2.class);
job.setMapperClass(FilterMapper.class);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(IntWritable.class);
job.setNumReduceTasks(0); // Set number of reducers to zero
FileInputFormat.addInputPath(job, new Path(args[1]));
FileOutputFormat.setOutputPath(job, new Path(args[2]));
System.exit(job.waitForCompletion(true) ? 0 : 1);
}

public static class FilterMapper
extends Mapper<Object, Text, Text, IntWritable>{

private final static IntWritable counter = new IntWritable(0);
private Text word = new Text();
private Integer total;

private Integer limit;
private Integer limit2;//added here
public void map(Object key, Text value, Context context
) throws IOException, InterruptedException {
StringTokenizer itr = new StringTokenizer(value.toString());

limit = Integer.parseInt( context.getConfiguration().get("limit") );
limit2 = Integer.parseInt( context.getConfiguration().get("limit2") );

while (itr.hasMoreTokens()) {
word.set(itr.nextToken());
total = Integer.parseInt(itr.nextToken());//added here

if ((total > limit)&&(total<limit2))//added here
{ counter.set( total );
context.write(word, counter); }
}
}
}

}

run2.sh

$HADOOP_HOME/bin/hadoop jar Filter2.jar Filter2 $1 sales.txt /user/solution2/

我想在终端“./run.sh 45 50”中使用 shell 脚本运行我的 java,但我无法输入 2 个输入参数。如何修改我的 shell 脚本以实现此结果?

最佳答案

如果您想向脚本传递多个参数,变量的名称就会递增。

#/bin/bash
echo "arg1: $1"
echo "arg2: $2"
$HADOOP_HOME/bin/hadoop jar Filter2.jar Filter2 $1 $2 sales.txt /user/solution2/

如果您使用以下命令调用此脚本

./run.sh 45 50

你会看到

arg1: 45
arg2: 50

在控制台上(加上 hadoop 命令执行的任何操作)。请注意 hadoop 行中的 $2。这是第二个脚本参数。将其移动到需要的位置。

关于Java(类似SQL)和Shell脚本运行2个参数的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55807272/

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