Hadoop jar提交错误java.lang.InstantiationException

时间:2014-03-10 12:14:21

标签: hadoop cassandra

我正在尝试在hadoop文件系统上运行我的jar但是得到了这个异常 See image

Exception stacktrace

如果我从eclipse运行它,我的代码就会成功运行。

这是我的Runner主类

    public class ReadCassandra extends Configured implements Tool{

        public static void main(String args[]){
            try{
                /*ToolRunner.run(new Configuration(),new ReadCassandra(), args);
                System.exit(0);*/

                String keyspace ="Read_log";
                String clg ="readValidPost";
                String rowkey="117761667160131";
                List<ByteBuffer> cn = new ArrayList<ByteBuffer>();
                List<String> cl = new ArrayList<String>();
                cl.addAll(MyHector.getColumn(rowkey));
                for (String string : cl) {
                    ByteBuffer bf = ByteBufferUtil.bytes(string);
                    cn.add(bf);
                }
                Configuration conf = new Configuration();
                Job job = new Job(conf,"MEJfsd");
                //job.setJarByClass(ReadCassandra.class);

                job.setInputFormatClass(AbstractColumnFamilyInputFormat.class);
                job.setOutputFormatClass(TextOutputFormat.class);

                job.setOutputKeyClass(Text.class);
                job.setOutputValueClass(Text.class);

                job.setMapperClass(MyMapper.class);
                job.setReducerClass(MyReducer.class);

                ConfigHelper.setInputRpcPort(job.getConfiguration(), "9160");
                ConfigHelper.setInputInitialAddress(job.getConfiguration(), "127.0.0.1");
                ConfigHelper.setInputPartitioner(job.getConfiguration(), "org.apache.cassandra.dht.Murmur3Partitioner");
                ConfigHelper.setInputColumnFamily(job.getConfiguration(), keyspace, clg);

                SlicePredicate predicate = new SlicePredicate().setColumn_names(cn);
                ConfigHelper.setInputSlicePredicate(job.getConfiguration(), predicate);

                FileSystem.get(job.getConfiguration()).delete(new Path("Output"), true);
                FileOutputFormat.setOutputPath(job, new Path("Output"));
                job.waitForCompletion(true);

            }catch(Exception e){
                e.printStackTrace();
            }
        }

        public int run(String[] arg0) throws Exception {


            return (1);
        }


    }

我正在使用命令

运行
hadoop jar /home/winoria/Documents/JarFiles/ReadCas.jar ReadCassandra

1 个答案:

答案 0 :(得分:1)

您正在将输入格式类设置为抽象类:

 job.setInputFormatClass(AbstractColumnFamilyInputFormat.class);

您需要将其设置为可实例化的内容。但我不知道Cassandra-Hadoop集成以及在你的情况下有什么意义。只要确保它不是一个抽象类。