Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I setup Kerberos on CDH4 with 1 namenode on 1 machine and 1 datanode on a second machine.

I can start the namenode, and job tracker just fine after doing a kinit.

Firstly, I am wondering where the tasktracker is supposed to be started. Is is started on the namenode, or on the datanode?

Right now, I am starting it on the namenode, and it start fine.

I then put a csv file on the cluster, run kinit as a kerb user, run Hive, and create a table, and all is fine to this point.

Problem 1) When I try to load the csv file into the table, I get a permission denied error, since /user/hive/warehouse is 755 and belongs to hdfs:hadoop and I'm running Hive as a kerb user (this is a requirement for a later step)

Problem 2) If I load the data into the table after running Hive as hdfs, it does work, but I can run no queries, like select count(customer) from cc_details. I get a very generic error:

Error initializing attempt_201210100956_0017_m_000002_0:
java.io.IOException: Job initialization failed (24) with output: Reading task controller            config from /etc/hadoop/conf.cloudera.mapreduce1/taskcontroller.cfg   
Invalid conf file provided : /etc/hadoop/conf.cloudera.mapreduce1/taskcontroller.cfg 

at org.apache.hadoop.mapred.LinuxTaskController.initializeJob(LinuxTaskController.java:194)
at org.apache.hadoop.mapred.TaskTracker$4.run(TaskTracker.java:1406)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAs(Subject.java:396)
at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1332)
at org.apache.hadoop.mapred.TaskTracker.initializeJob(TaskTracker.java:1381)
at org.apache.hadoop.mapred.TaskTracker.localizeJob(TaskTracker.java:1296)
at org.apache.hadoop.mapred.TaskTracker.startNewTask(TaskTracker.java:2697)
at org.apache.hadoop.mapred.TaskTracker$TaskLauncher.run(TaskTracker.java:2661)

this is my taskcontroller.cfg file

mapred.local.dir=/tmp/hadoop/mapred/local
hadoop.log.dir=/usr/lib/hadoop/logs
mapreduce.tasktracker.group=mapred
banned.users=mapred,hdfs,bin
min.user.id=1000

I got mapred.local.dir and hadoop.log.dir by running ps aux | grep "tasktracker" and examining the -Dhadoop.log.dir param, and I made an arbitrary mapred.local.dir. Is that correct?

Finally, I read on Cloudera's site that the (24) error code is due to an invalid configuration file, but I don't see anything wrong with my config?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.