Hadoop streaming is a utility that allows running map-reduce jobs using any executable that reads from standard input and writes to standard output.

learn more… | top users | synonyms

1
vote
1answer
18 views

Getting the number of reduce tasks operating at the moment

I'm using Amazon AWS, Dynamo DB, and EMR cluster for hadoop streaming. My reduce tasks write to a Dynamo table. I need to establish and adhere to an upper bound on writing to the table, say at 50% of ...
1
vote
1answer
33 views

Go client for Hadoop Streaming

Is there a well known client for the Go programming language that supports Hadoop Streaming? I have searched around and was unable to find anything of value.
0
votes
1answer
24 views

awk doesn't work in hadoop's mapper

This is my hadoop job: hadoop streaming \ -D mapred.map.tasks=1\ -D mapred.reduce.tasks=1\ -mapper "awk '{if(\$0<3)print}'" \ # doesn't work -reducer "cat" \ -input "/user/***/input/" \ -output ...
0
votes
2answers
20 views

How to process Unstuctured data thru Mapreduce

I'm trying to understand Unstructured data first. To me mentioned below is the Unstructured data. I have followed thru the "Hadoop : Definitive Guide" mentioning Earthquake example and that is a ...
1
vote
0answers
15 views

Manually splitting and compressing input for Amazon EMR

Instead of using hadoop-lzo to index my LZO input file, I decided to simply split it into a chunks, which compressed with LZO would be close to 128MB (since it is default block size on Amazon ...
0
votes
1answer
42 views

OpenCL with Hadoop

How do I use OpenCL(for GPU compute) with Hadoop ? My data set resides in HDFS. I need to compute 5 metrics, among which 2 are compute intensive. So I want to compute those 2 metrics on GPU using ...
0
votes
0answers
14 views

Hadoop Streaming: acknowledge processing a record

I've got a Hadoop Streaming job which works with binary data. Input file lists all the files to be processed. When I run the job mapper sends everything to the stdin and the ui shows that the map ...
0
votes
0answers
48 views

How to resolve org.apache.hadoop.streaming.PipeMapRed: java.io.IOException: Stream closed?

I am trying to execute NLTK in Hadoop environment. Following is the command which i used for execution. bin/hadoop jar $HADOOP_HOME/contrib/streaming/hadoop-streaming-1.0.4.jar -input ...
0
votes
0answers
116 views

How to resolve java.lang.RuntimeException: PipeMapRed.waitOutputThreads(): subprocess failed with code 2?

I am trying to execute NLTK in Hadoop environment. Following is the command which i used for execution. bin/hadoop jar $HADOOP_HOME/contrib/streaming/hadoop-streaming-1.0.4.jar -input ...
-1
votes
1answer
52 views

Hadoop file system is physical file system or virtual file system [closed]

Hadoop file system is physical file system or virtual file system
0
votes
1answer
36 views

How to integrate NLTK with Hadoop HDFS?

I have a working sentiment analysis program using NLTK which reads the text from a .txt file placed in my local machine. Now i would like to read txt file placed in Hadoop HDFS and perform same ...
0
votes
0answers
35 views

Reading through sys.stdin and output sys.stdout

I am recursing through multiple directories to get some data out of each file and print it. The following is the code for that : def main(): for root, dirs, files in ...
0
votes
2answers
51 views

Pass environment variables to Hive Transform or MapReduce

I am trying to pass a custom environment variable to an executable (my-mapper.script in the example below) used in a Hive Transform eg: SELECT TRANSFORM(x, y, z) USING 'my-mapper.script' FROM ( ...
0
votes
0answers
23 views

Include map and reduce in written in C/OpenCL in hadoop

I have written my own codes of map and reduce function in OpenCL kernel. General scenario of MapReduce which is basically incorporated in Hadoop itself is written in java. How can I use my own ...
0
votes
1answer
35 views

How to decode a binary file which must be decoded using an external binary in one shot?

I have a large number of input files in a proprietary binary format. I need to turn them into rows for further processing. Each file must be decoded in one shot by an external binary (i.e. files must ...
0
votes
1answer
40 views

Splitting responsibilities of mappers on Elastic MapReduce (MySQL + MongoDB input)

I want to make sure I understand EMR correctly. I'm wondering - does what I'm talking about make any sense with EMR / Hadoop? I currently have a recommendation engine on my app that examines data ...
1
vote
2answers
41 views

Hadoop streaming to invoke python script

I have two small python scripts CountWordOccurence_mapper.py #!/usr/bin/env python import sys #print(sys.argv[1]) text = sys.argv[1] wordCount = text.count(sys.argv[2]) #print ...
0
votes
1answer
28 views

Adding extra arguements to HadoopJarStepConfig fails

I am trying to get this command via the AWS SDK: hadoop jar /home/hadoop/contrib/streaming/hadoop-streaming.jar -input hdfs:///logs/ -output hdfs:///no_dups -mapper dedup_mapper.py -reducer ...
1
vote
2answers
27 views

Hadoop streaming with python on Windows

I'm using Hortonworks HDP for Windows and have it successfully configured with a master and 2 slaves. I'm using the following command; bin\hadoop jar ...
0
votes
1answer
21 views

As the input data of Amazon-EMR, is the only legal format plain text?

As quoted in the "Developer Guide" of Amazon EMR, the files in the input directory should be formatted as plain text. Does it mean that i cannot upload some binary files or .png files and parse them ...
0
votes
1answer
224 views

Hadoop Streaming job error - Map Tasks exceed allowed limit

I have the following hadoop code to find the betweenness centrality of a graph java_home=/usr/lib/jvm/java-1.7.0-openjdk-amd64 hadoop_home=/usr/local/hadoop/hadoop-1.0.4 ...
0
votes
3answers
46 views

how to work on specific part of cvs file uploaded into HDFS?

how to work on specific part of cvs file uploaded into HDFS ? I'm new in Hadoop and i have an a question that is if i export an a relational database into cvs file then uploaded it into HDFS . so how ...
0
votes
0answers
18 views

cannot put hadoop job parameters in an array

I put all the hadoop job parameters in an array like this: #!/bin/sh hadoop_job=(-jobconf mapred.job.name="test"\ mapred.map.tasks=200\ mapred.reduce.tasks=200\ ...
0
votes
1answer
147 views

Hadoop Streaming with Java Mapper/Reducer

I'm trying to run a hadoop streaming job with a java Mapper/Reducer over some wikipedia dumps (in compressed bz2 form). I'm trying to use WikiHadoop, which is an interface released by Wikimedia ...
0
votes
1answer
17 views

the number of running mappers in a hadoop job

Using streaming, I set the number of map to 200, like this: -D mapred.map.tasks=200 -D mapred.job.map.capacity=200 But later I found that the number of running mappers is just 9, with 500+ mapper ...
0
votes
1answer
23 views

Consilidating multiple Hadoop clusters

We have multiple hadoop cluster using hive and pig, what is the best way to consolidate them in to one? In BI this was done by build EDW or MDM approach. how about hadoop is any one thinking about ...
0
votes
1answer
172 views

Can't run EMR Hadoop Streaming job with custom executable

Edit: Looking at namenode logs, I notice that an exception gets raised periodically. Could it be relevant? 2013-04-10 19:23:50,613 WARN org.apache.hadoop.security.ShellBasedUnixGroupsMapping (IPC ...
0
votes
2answers
30 views

configuring Hadoop to use a different Reducer process for each key?

Related to my question I have a streaming process written in Python. I notice that each Reducer gets all the values associated with multiple keys through sys.stdin. I would prefer to have the ...
0
votes
1answer
27 views

Reducer getting multiple keys through sys.stdin?

I know that all the values associated with a Key are sent to a single Reducer. Is it the case that a Reducer could get multiple keys at once via it's standard input? My use case is that I am ...
0
votes
1answer
78 views

How HDFS Command executes

I am trying to learn how hdfs works when we give the command like hadoop fs -put or -ls, but I couldn't find the particular source file which gets this input and process it. Can someone please tell me ...
1
vote
2answers
46 views

Post hook for Elastic MapRecude

I wonder if there is an example of post process for EMR (Elastic MapReduce)? What I am trying to achieve is send an email to group of people right after Amazon's Hadoop finished the job.
0
votes
1answer
114 views

mapred.local.dir error in hadoop streaming

Error: hadoop_admin@ubuntu:~/hadoop$ bin/hadoop jar /home/hadoop_admin/hadoop/contrib/streaming/hadoop-0.20.0-streaming.jar -input data -output DOUT -mapper ...
0
votes
0answers
25 views

What does PipeMapRed do in Hadoop streaming?

I run a hadoop job for more than one time, and every time it takes too much time to finish, like *15 mins * in all. I checked the syslog, found out that, org.apache.hadoop.streaming.PipeMapRed was ...
0
votes
1answer
66 views

Finding mean median using python hadoop streaming

Very dumb question.. I have data as following id1, value 1, 20.2 1,20.4 .... I want to find the mean and median of id1? (Note.. mean, median for each id and not the global mean,median) I am using ...
0
votes
1answer
53 views

What is job.get() and job.getBoolean() in mapreduce

I am working on pdf document clustering over hadoop so I am learning mapreduce by reading some examples on internet.In wordcount examples have lines job.get("map.input.file") job.getboolean() What ...
1
vote
0answers
86 views

Hadoop streaming mapper byte offset not being generated

I'm running a streaming Hadoop job and the byte offsets are not being generated as output (keys) of the mapper, like I would expect it too. The command: $HADOOP_INSTALL/bin/hadoop \ jar ...
0
votes
1answer
94 views

Processing XML With Hadoop Streaming failed

i did bin/hadoop jar contrib/streaming/hadoop-streaming-1.0.4.jar -inputreader "StreamXmlRecordReader, begin=<metaData>,end=</metaData>" -input /user/root/xmlpytext/metaData.xml -mapper ...
2
votes
2answers
333 views

Load snappy-compressed files into Elastic MapReduce

I have a bunch of snappy-compressed server logs in S3, and I need to process them using streaming on Elastic MapReduce. How do I tell Amazon and Hadoop that the logs are already compressed (before ...
0
votes
0answers
25 views

Is there a way to specify the title of a job from mrjob in the Hadoop Administration web interface?

I have several different jobs started from the Python library mrjob, including jobs with multiple steps. How can I replace streamjob with a custom name? For example, wordcount_step_1, ...
0
votes
0answers
91 views

Oozie: how to launch an embedded executable from within a shell script in hadoop streaming

Asking here for help on how to launch an executable from within a shell script in the context of hadoop streaming job in oozie. Following is the relevant oozie step info: <streaming> ...
0
votes
3answers
174 views

Running the Python Code on Hadoop Failed

I have tried to follow the instructions on this page: http://www.michael-noll.com/tutorials/writing-an-hadoop-mapreduce-program-in-python/ $bin/hadoop jar ...
0
votes
0answers
314 views

hadoop /usr/bin/env: python: No such file or directory

I am trying to run a hadoop streaming server with following command from a shell script hadoop jar /usr/local/hadoop/contrib/streaming/hadoop-0.19.2-streaming.jar -input $1 -output ...
0
votes
0answers
25 views

Process mapred output files before they are compressed and written

Is there a way to insert default records for keys missing in the input? Here is simplified example of what I need. Input file: 2013-01-01 birthday: John 2013-01-03 note: something interesting ...
0
votes
0answers
56 views

Hadoop Streaming: Writing userlogs to a different local folder

I have a problem with userlogs in Hadoop Streaming (CDH4). They always end up in /var/log/hadoop-0.20-mapreduce/userlogs under the mapred username. Is there any parameter to put them in a different ...
0
votes
1answer
200 views

Hadoop Streaming Command Failure with Python Error

I'm a newcomer to Ubuntu, Hadoop and DFS but I've managed to install a single-node hadoop instance on my local ubuntu machine following the directions posted on Michael-Noll.com here: ...
1
vote
1answer
182 views

Exception in thread “main” org.apache.hadoop.mapred.InvalidJobConfException: Output directory not set

Hey All can u please help me in clearing following error ? I am getting this when I am running Mapreduce job fopr inserting data into hbase tables from hdfs files. using HFileOutputFormat.class , ...
1
vote
1answer
84 views

Hadoop on CentOS streaming example with python - permission denied on /mapred/local/taskTracker

I have been able to set up the streaming example with python mapper & reducer. The mapred folder location is /mapred/local/taskTracker both root & mapred users have the ownership to this ...
0
votes
2answers
125 views

Hadoop streaming with zip input files

I'm trying to run a streaming job where the input files are csv inside zip files. I tried using this, however it doesn't seem for work with CDH4 (I get the error class ...
0
votes
0answers
89 views

Unzip files using hadoop streaming

I have many files in HDFS, all of them a zip file with one CSV file inside it. I'm trying to uncompress the files so I can run a streaming job on them. I tried: hadoop jar ...
2
votes
1answer
155 views

Hadoop Configuration Error

I am attempting to start up my hadoop application, however upon startup i am seeing this in the log files, does anyone have a clue as to what the problem is? Creating filesystem for ...

1 2 3 4 5