Questions relating to Amazon's Elastic-Map-Reduce (EMR) product.

learn more… | top users | synonyms

0
votes
2answers
30 views

jar containing org.apache.hadoop.hive.dynamodb

I was trying to programmatically Load a dynamodb table into HDFS (via java, and not hive), I couldnt find examples online on how to do it, so thought I'd download the jar containing ...
1
vote
1answer
35 views

Any Scala sdk or interface for aws?

Does anyone know of a scala sdk for aws , I am particularly interested in the EMR jobs.
1
vote
1answer
39 views

Scale for Elastic MapReduce (EMR)?

I'm evaluating EC2/EMR for running a ~20 node Hadoop cluster. (custom JAR cluster). I've run the simple WordCount example on a single-node 3.3 GHz 2GB RAM local VMWare instance which takes less than ...
0
votes
0answers
37 views

Running Nutch crawls on EMR (newbie)

I'm a first time EMR/Hadoop user and first time Apache Nutch user. I'm trying to use Apache Nutch 2.1 to do some screen scraping. I'd like to run it on hadoop, but don't want to setup my own cluster ...
0
votes
1answer
30 views

pig aws emr jython serialization error

I am trying to run a trivial Python UDF in Pig on Amazon EMR and it throws a java serialization error: java.io.IOException: Deserialization error: could not instantiate ...
1
vote
1answer
72 views

AWS EMR loading from S3

When crating a new EMR Job with an S3 bucket as the input source, is the data automatically copied from S3 into HDFS on the nodes? Or does the data remain solely in S3 and read when needed by map ...
-1
votes
0answers
30 views

How to get the public DNS of the master node in an EMR cluster via Boto? [closed]

I'm using Boto to create an EMR cluster and starting a jobflow. Starting the jobflow returns a jobflowid. I want to figure out the public DNS of the master node, which should like this: ...
-1
votes
1answer
26 views

Override hadoop

I'm running an EMR Activity inside a Data Pipeline analyzing log files and I get the following error when my Pipeline fails: Exception in thread "main" ...
1
vote
1answer
25 views

Amazon EMR not utilizing all the nodes

I am using 4 core nodes.. I am using hive to run queries on a table. Various queries seem to be under utilizing the capacity. My table consists of 8 integer fields and about 1000 rows. queries of ...
0
votes
0answers
45 views

httpclient.RestS3Service 404 error when distcp-ing

I couldn't run a distcp from S3 to HDFS on a newly installed CDH4 system on EC2. I also couldn't -ls a S3 directory from it. ubuntu@ip-10-145-227-232:~$ hadoop distcp ...
1
vote
1answer
68 views

How to reduce number of output files in Apache Hive

Does anyone know of a tool that can "crunch" the output files of Apache Hadoop into fewer files or one file. Currently I am downloading all the files to a local machine and the concatenate them in one ...
0
votes
1answer
86 views

Slow Hive Query Performance under AWS Elastic MapReduce

There's a strange problem I'm experiencing, and I assure you I've googled a lot. I'm running a set of AWS Elastic MapReduce Clusters, and I have a Hive Table with about 16 partitions. They're created ...
0
votes
2answers
75 views

How do I write the output of an EMR streaming job to HDFS?

I see examples of people writing EMR output to HDFS, but I haven't been able to find examples of how it's done. On top of that, this documentation seems to say that the --output parameter for an EMR ...
0
votes
1answer
25 views

Data set join using EMR

I have 2 tab-delimited datasets stored in AWS S3. I am trying to write an EMR job that will join these 2 datasets based on a common key (a set of field values). My current version populates 2 lists ...
0
votes
1answer
52 views

hadoop/emr how to store key-value pairs

I am running a series of MapReduce jobs on EMR. However, the 3rd MapReduce job needs the data output from the 2nd MapReduce job, and the output is essentially over a million key-value pairs (both the ...
1
vote
1answer
36 views

How to use s3distcp for selecting date ranges?

I have logs that look like the below in s3 with a time stamp in the the name. I want to use s3distcp to get data into EMR so I can use hive. ...
0
votes
1answer
44 views

Amazon EMR : java.io.IOException: File already exists: s3n://<bucketname>/output/part-r-00002

I am running a MapReduce Job. My code consists of only one class that does a simple calculation. It runs successfully on the single node setup of hadoop1.0.3 When I run it on EMR, I get the following ...
0
votes
1answer
102 views

Concatenate S3 files to read in EMR

I have an S3 bucket with log files that I want to concatenate, then use as an input to an EMR job. The log files are in paths like: bucket-name/[date]/product/out/[hour]/[minute-based-file]. I'd like ...
0
votes
1answer
73 views

Pattern match input files for Amazon Elastic MapReduce

I am trying to run a MapReduce streaming job that takes input files from directories in an s3 bucket that match a given pattern. The pattern is something like ...
1
vote
1answer
88 views

Map Reduce multiple outputs in python boto

I am trying to partition an input file using AWS EMR. I use a streaming step to read from stdin. I want to split this file into 2 files based on the values of specific fields from each line of stdin ...
0
votes
1answer
79 views

Splitting a file using Map Reduce

I would like to split the content of a text file into 2 different files using EMR. The input file, as well as the mapper and reducer scripts are all stored in AWS' S3. Currently, my mapper reformats ...
0
votes
2answers
82 views

Can't download or read Hive output in Amazon S3 bucket

I'm new to AWS and Hive, and I'm trying to use Hive to analyze Google Ngrams data. I tried to save a table as tab-delimited CSV in an S3 bucket, but now I don't know how to view it or download it to ...
0
votes
2answers
93 views

Pig on EMR: how to include semicolon in regex argument of EXTRACT function

I'm working with some data in Pig that includes strings of interest, optionally separated by semicolons and in random order, e.g. test=12345;foo=bar test=12345 foo=bar;test=12345 The following code ...
0
votes
1answer
111 views

Unable to resolve ERROR 2017: Internal error creating job configuration on EMR when running PIG

I have been trying to run a very simple task with Pig on Amazon EMR. When I run the commands in interactive shell, everything works fine. But when I ran the same thing as batch job, I get [main] ...
1
vote
1answer
234 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 ...
1
vote
0answers
123 views

s3distcp fails on CDH 4.2

I am trying to run s3distcp as to merge a lot of small (200-600KB) files from S3 to HDFS. I am running Hadoop on CDH 4.2 over Ubuntu. To be specific: Hadoop 2.0.0-cdh4.2.0 Subversion ...
0
votes
1answer
118 views

How to merge the small files on S3 generated by EMR with thousands of reducers

My cascalog EMR job generated thousands of small files on S3 buckets. It generate the same number of files as the number of reducers I used. Dumping all these tiny files take minutes. I wonder if ...
1
vote
2answers
52 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
0answers
69 views

EMR(Elastic Map Reduce) vs nonEMR(EC2-Hadoop)

What is the difference between running jobs on EMR or on some EC2 instances that they have hadoop installed on them in terms of performance. I know the key difference is that running jobs with EMR is ...
0
votes
0answers
120 views

OpenEMR and HL7

I am very much new to EMR and HL7. I have separate installations of Joomla CMS and OpenEMR. I need my JoomlaCMS to send HL7 messages to OpenEMR and receive response in HL7 over internet. I dont know ...
2
votes
2answers
62 views

Hadoop data locality, counter-intuitive observation

Can anyone help me understand following observation that is opposite to my understand of Hadoop data locality. A Hadoop cluster with 3 nodes: master: 10.28.75.146 slave1: 10.157.6.202 slave2: ...
0
votes
0answers
135 views

Google Glass and Myo motion control app programming [closed]

I'm nurse with an invite for a Glass Explorer edition, I'm looking to develop an integrated speech and motion controlled electronic medical record app based on the Glass and Myo UI's. Working with ...
0
votes
1answer
116 views

Loading the map datatype column using python script as reducer using hive

In one of the columns of Hive table, I want to store key-value pairs. Hive's complex data-type map supports that construct. (This is only a toy example of what I want to be able to do, I have many ...
2
votes
2answers
406 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
66 views

AWS Elastic Mapreduce optimizing Pig job

I am using boto 2.8.0 to create EMR jobflows over large log file stored in S3. I am relatively new to Elastic Mapreduce and am getting the feel for how to properly handle jobflows from this issue. ...
0
votes
1answer
325 views

Hive multiple subqueries and group by

I'm switching statistics from MySQL to Amazon DynamoDB and Elastic MapReduce. I have query bellow that works with MySQL and I have the same table on hive and need the same results as on MySQL ...
0
votes
1answer
139 views

Passing directories to hadoop streaming : some help needed

The context is that I am trying to run a streaming job on Amazon EMR (the web UI) with a bash script that I run like: -input s3://emrdata/test_data/input -output s3://emrdata/test_data/output ...
0
votes
0answers
78 views

Storing log data in S3 using Protocol Buffers for EMR?

I'm looking to store log data in Amazon S3 using serialized Protocol Buffer format. Ideally I'd like to use these files as input data for EMR mapreduce jobs. My question is how can I best format the ...
0
votes
1answer
48 views

Amazon EMR how to find out when job is finish?

I'm using Amazon Elastic MapReduce Ruby (http://aws.amazon.com/developertools/2264) to run my hive job. Is there a way to know when the job is done? Right now all I could think of is the keep running ...
0
votes
1answer
83 views

Elastic Map Reduce: continue on error?

We use Elastic Map Reduce quite extensively, and are processing more and more data with it. Sometimes our jobs fail because the data is malformed. We've constantly revised our map scripts to handle ...
0
votes
1answer
180 views

Hadoop: Input and Output paths in AWS EMR job

I am trying to run a Hadoop job in Amazon Elastic Mapreduce. I have my data and jar located in aws s3. When i setup the job flow I pass the JAR Arguments as s3n://my-hadoop/input ...
0
votes
1answer
59 views

Incorrect or incompletely read Value sent to map method in Mapper class

I have a Job that consists of 3 steps. My input is encrypted JSON objects (one per line) stored in Amazon S3. (s3e://). Job parameters: job.setInputFormatClass(TextInputFormat.class); ...
0
votes
1answer
63 views

How to do an “Order of Events” query in Hadoop Hive?

I've been learning Hive over the past 2 months, but I'm having trouble figuring out how to do certain sequence based queries. Take this example: I have a huge log consisting of user actions Every ...
0
votes
1answer
371 views

Compress file on S3

I have a 17.7GB file on S3. It was generated as the output of a Hive query, and it isn't compressed. I know that by compressing it, it'll be about 2.2GB (gzip). How can I download this file locally ...
0
votes
1answer
107 views

Amazon Elastic Map Reduce - Creating a job flow

I'm very new to amazon services. I'm facing problems in creating job flows. Every time i create any job flow it fails or shuts down. Input, output or mapper function upload techniques are not clear to ...
0
votes
0answers
106 views

random java.io.FileNotFoundException jobcache error on EMR with MrJob

I am using MrJob and trying to run a Hadoop job on Elastic Map Reduce which keeps crashing at random. The data looks like this (tab separated): 279391888 261151291 107.303163 ...
0
votes
0answers
49 views

EMR No output for a long time

I have a MapReduce job written in python using MRJob library. The job takes around 30 mins to complete on my local machine. While running the same job on the EMR, I am seeing no output for a long time ...
0
votes
1answer
68 views

How to process EMR_FORCEUFIMAPPING and EMR_GDICOMMENT?

I am converting EMF to PDF, but I went into a problematic field. I have some EMF spool files, which contain some undocumented EMR structures such as EMR_FORCEUFIMAPPING and EMR_GDICOMMENT. The MSDN ...
2
votes
1answer
286 views

Write 100 million files to s3

My main aim is to split out records into files according to the ids of each record, and there are over 15 billion records right now which can certainly increase. I need a scalable solution using ...
0
votes
2answers
771 views

How does MapReduce read from multiple input files?

I am developing a code to read data and write it into HDFS using mapreduce. However when I have multiple files I don't understand how it is processed . The input path to the mapper is the name of the ...

1 2 3