[jira] [Created] (HADOOP-9203) RPCCallBenchmark should find a random available port

2013-01-12 Thread Andrew Purtell (JIRA)
Andrew Purtell created HADOOP-9203: -- Summary: RPCCallBenchmark should find a random available port Key: HADOOP-9203 URL: https://issues.apache.org/jira/browse/HADOOP-9203 Project: Hadoop Common

[jira] [Created] (HADOOP-9202) test-patch.sh fails during mvn eclipse:eclipse if patch adds a new module to the build

2013-01-12 Thread Chris Nauroth (JIRA)
Chris Nauroth created HADOOP-9202: - Summary: test-patch.sh fails during mvn eclipse:eclipse if patch adds a new module to the build Key: HADOOP-9202 URL: https://issues.apache.org/jira/browse/HADOOP-9202

Build failed in Jenkins: Hadoop-Common-trunk #651

2013-01-12 Thread Apache Jenkins Server
See Changes: [eli] Update CHANGES.txt to reflect HDFS-4274 merge. [bobby] MAPREDUCE-4921. JobClient should acquire HS token with RM principal (daryn via bobby) [eli] Update CHANGES.txt to move HDFS-4328. [eli] HDFS-4384. test_lib

Build failed in Jenkins: Hadoop-Common-0.23-Build #492

2013-01-12 Thread Apache Jenkins Server
See Changes: [tgraves] YARN-80. Add support for delaying rack-local containers in CapacityScheduler. (acmurthy) [jlowe] svn merge -c 1429872 to add svn:ignore properties to hadoop-mapreduce-client-hs-plugins [tgraves] MAPRED

Re: Re: python streaming error

2013-01-12 Thread Nitin Pawar
computedb-13 is not a valid host name may be if you have local hadoop then you can name refer it with hdfs://localhost:9100/ or hdfs://127.0.0.1:9100 if its on other machine then just try with IP address of that machine On Sat, Jan 12, 2013 at 12:55 AM, springring wrote: > hi, > > I modif

Re:Re: python streaming error

2013-01-12 Thread springring
hi, I modify the file as below, there is still error 1 #!/bin/env python 2 3 import sys 4 5 for line in sys.stdin: 6 offset,filename = line.split("\t") 7 file = "hdfs://computeb-13:9100/user/hdfs/catalog3/" + filename 8 print line 9 print filename 10 pri

Re: python streaming error

2013-01-12 Thread Nitin Pawar
is this correct path for writing onto hdfs? "hdfs://user/hdfs/catalog3." I don't see the namenode info in the path. Can this cause any issue. Just making an guess something like hdfs://host:port/path On Sat, Jan 12, 2013 at 12:30 AM, springring wrote: > hdfs://user/hdfs/catalog3/ -- Niti

python streaming error

2013-01-12 Thread springring
Hi, When I run code below as a streaming, the job error N/A and killed. I run step by step, find it error when " file_obj = open(file) " . When I run same code outside of hadoop, everything is ok. 1 #!/bin/env python 2 3 import sys 4 5 for line in sys.stdin: 6 offset,file