Hi,
I am using CDH3.
I need to stream huge amount of data from our application to hadoop.
I am opening a connection like
config.set("fs.default.name",hdfsURI);
FileSystem dfs = FileSystem.get(config);
String path = hdfsURI + connectionKey;
Path destPath = new Path(path);
logger.debug("Path -- " +
Could you explain how/where you're stuck?
That DEBUG log doesn't even seem like a valid throw; its just to get a
strace I believe.
On Sat, Aug 6, 2011 at 8:52 AM, jagaran das wrote:
> Hi,
>
> I have been struck with this exception:
>
> java.io.IOException: config()
> at org.apache.hadoop.conf.Co
Hi,
I have been struck with this exception:
java.io.IOException: config()
at org.apache.hadoop.conf.Configuration.(Configuration.java:211)
at org.apache.hadoop.conf.Configuration.(Configuration.java:198)
at org.apache.hadoop.hbase.HBaseConfiguration.create(HBaseConfiguration.java:99)
at test.Test