Skip to content

Instantly share code, notes, and snippets.

@robinkraft
Created March 5, 2013 00:17
Show Gist options
  • Select an option

  • Save robinkraft/5086922 to your computer and use it in GitHub Desktop.

Select an option

Save robinkraft/5086922 to your computer and use it in GitHub Desktop.
lein do sub install, deps, compile
Reading project from cascalog-core
Compiling 76 source files to /mnt/hgfs/Dropbox/code/github/nathanmarz/cascalog/cascalog-core/target/classes
warning: [options] bootstrap class path not set in conjunction with -source 1.6
/mnt/hgfs/Dropbox/code/github/nathanmarz/cascalog/cascalog-core/src/java/cascalog/ClojureCombinerBase.java:32: error: package org.apache.hadoop.mapred does not exist
import org.apache.hadoop.mapred.JobConf;
^
/mnt/hgfs/Dropbox/code/github/nathanmarz/cascalog/cascalog-core/src/java/cascalog/MultiGroupBy.java:33: error: package org.apache.hadoop.io.compress does not exist
import org.apache.hadoop.io.compress.CompressionCodec;
^
/mnt/hgfs/Dropbox/code/github/nathanmarz/cascalog/cascalog-core/src/java/cascalog/hadoop/ClojureKryoSerialization.java:5: error: package org.apache.hadoop.conf does not exist
import org.apache.hadoop.conf.Configuration;
^
/mnt/hgfs/Dropbox/code/github/nathanmarz/cascalog/cascalog-core/src/java/cascalog/hadoop/ClojureKryoSerialization.java:14: error: cannot access Serialization
public class ClojureKryoSerialization extends KryoSerialization {
^
class file for org.apache.hadoop.io.serializer.Serialization not found
/mnt/hgfs/Dropbox/code/github/nathanmarz/cascalog/cascalog-core/src/java/cascalog/hadoop/ClojureKryoSerialization.java:20: error: cannot find symbol
public ClojureKryoSerialization(Configuration conf) {
^
symbol: class Configuration
location: class ClojureKryoSerialization
/mnt/hgfs/Dropbox/code/github/nathanmarz/cascalog/cascalog-core/src/java/cascalog/ClojureCombinerBase.java:77: error: cannot find symbol
JobConf jc = ((HadoopFlowProcess) flowProcess).getJobConf();
^
symbol: class JobConf
location: class ClojureCombinerBase
/mnt/hgfs/Dropbox/code/github/nathanmarz/cascalog/cascalog-core/src/java/cascalog/MultiGroupBy.java:50: error: cannot find symbol
HadoopSpillableTupleList _results = new HadoopSpillableTupleList(10000, (CompressionCodec) null, null);
^
symbol: class CompressionCodec
location: class MultiBufferContext
/mnt/hgfs/Dropbox/code/github/nathanmarz/cascalog/cascalog-core/src/java/cascalog/MultiGroupBy.java:50: error: cannot access Configured
HadoopSpillableTupleList _results = new HadoopSpillableTupleList(10000, (CompressionCodec) null, null);
^
class file for org.apache.hadoop.conf.Configured not found
/mnt/hgfs/Dropbox/code/github/nathanmarz/cascalog/cascalog-core/src/java/cascalog/KryoService.java:41: error: cannot find symbol
Kryo k = new ClojureKryoSerialization().populatedKryo();
^
symbol: method populatedKryo()
location: class ClojureKryoSerialization
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
9 errors
1 warning
Compilation of Java sources (lein javac) failed, aborting.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment