Re: Unsubscribe

2015-04-14 Thread Jonathan Aquilina
All emails coming through this list i feel should have a signature with an unsubscribe link. Who do I need to contact to be able to get that done? --- Regards, Jonathan Aquilina Founder Eagle Eye T On 2015-04-14 18:12, Preya Shah wrote: > unsubscribe

Re: Using 2.4 hadoop version - Thinking in a future deployment in AWS (EC2)

2015-04-14 Thread José Luis Larroque
I received this email from Craig Foster , member of AWS, related to my complaints for not having HADOOP-10547 fixed in the 2.4 AMI: I’ll forward the feedback wrt to HADOOP-10547 patch to the team that integrates the Apache releases into EMR. It

Re: Not able to run more than one map task

2015-04-14 Thread Drake민영근
Hi, Amit. Test these: Increase "yarn.nodemanager.resource.memory-mb" beyond 8192. That's ok for testing. And decrease "mapreduce.map.memory.mb" to 256 and add "yarn.nodemanager.vmem-check-enabled" to "false" in yarn-site.xml. Thanks. Drake 민영근 Ph.D kt NexR On Sat, Apr 11, 2015 at 8:01 AM, Niels

RE: Unsubscribe

2015-04-14 Thread Brahma Reddy Battula
You can mailto user-unsubscr...@hadoop.apache.org Date: Tue, 14 Apr 2015 09:12:07 -0700 Subject: Unsubscribe From: preya.2.s...@gmail.com To: user@hadoop.apache.org unsubscribe

Unsubscribe

2015-04-14 Thread Preya Shah
unsubscribe

is this a best practice to do....

2015-04-14 Thread Kumar Jayapal
Hello all, I want to use snappy to import data from sqoop is this the best way to do. sqoop import --connect jdbc:as400://DEV400.mmc.com --username kkms --P --driver com.ibm.as400.access.AS400JDBCDriver --table INATSTDTA.INWCTLP --as-avrodatafile --split-by WCWHS5 --target-dir /user/kkms/a

Deprecation Error

2015-04-14 Thread Anand Murali
Hi: I am using Tom Whyte's text book on Hadoop 2.X for learning. However I have installed 2.6 and using text code to get started. I get the following error on the main class anand_vihar@Latitude-E5540:~/hadoop-2.6.0/code$ javac -classpath $(hadoop classpath) MaxTemperature.java MaxTemperature.

RE: Hadoop imports Fail

2015-04-14 Thread Mich Talebzadeh
Great probably the easiest option is to create CLASSPATH as below and just do javac –cp $CLASSPATH –d .. HTH Mich Talebzadeh http://talebzadehmich.wordpress.com Author of the books "A Practitioner’s Guide to Upgrading to Sybase ASE 15", ISBN 978-0-9563693-0-7. co-author "Syba

Re: Hadoop imports Fail

2015-04-14 Thread Anand Murali
Many thanks. Ii fixed the problem using $javac -classpath $(hadoop classpath) -d Thanks  Anand Murali  11/7, 'Anand Vihar', Kandasamy St, MylaporeChennai - 600 004, IndiaPh: (044)- 28474593/ 43526162 (voicemail) On Tuesday, April 14, 2015 2:56 PM, Mich Talebzadeh wrote: #yiv71706

RE: Hadoop imports Fail

2015-04-14 Thread Mich Talebzadeh
You need to create an environment file like environment.ksh or use ./kshrc in your home directory to build env variables for hadoop etc something like below export HADOOP_HOME=~/hadoop/hadoop-2.6.0 PATH="$HADOOP_HOME/bin:$HADOOP_HOME/sbin:/usr/java/latest/bin":$PATH export PATH=~/pig-0.14.0/

Re: Hadoop imports Fail

2015-04-14 Thread Andre Kelpe
Please just use a build tool like maven or gradle for your build. There is no way to manage your classpath like this and stay sane. Nobody does this and you shouldn't either. - André On Tue, Apr 14, 2015 at 7:34 AM, Anand Murali wrote: > Dear Naik: > > I have already set path both for Hadoop and