1
vote
1answer
16 views

About online distributed environment

I am learning Mapreduce and Hadoop now. I know I can do some tests and run some samples on a singe node. But I really want to do some practice on a real distributed environment. So I want to ask : Is ...
0
votes
0answers
19 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
36 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 ...
0
votes
0answers
56 views

Pig Join is returning no results

I have been stuck on this problem for over twelve hours now. I have a Pig script that is running on Amazon Web Services. Currently, I am just running my script in interactive mode. I am trying to get ...
0
votes
1answer
53 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
43 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 ...
0
votes
0answers
19 views

Hadoop taking forever on EMR and profiling EMR

I am running a sample hadoop job over ~500 documents on S3, and when ran locally it takes <15min to complete. However, when I tried running the same job on EMR, it takes over 2 hours and still ...
0
votes
0answers
37 views

Exception in Using Hadoop for MapReduce

I am facing an exception in using Hadoop on local box. Exception in thread "main" java.lang.NoSuchMethodError: ...
1
vote
1answer
60 views

getting started with the latest version of hadoop and ec2

I am following Hadoop in Action to get started with hadoop with ec2. I'm running on ubuntu and have downloaded and installed the latest version of Hadoop. I am hitting a road block at this command: ...
0
votes
1answer
15 views

Using other files along with EMR streaming step?

I currently have a hadoop command that I would like to copy using the AWS SDK. The command I'm currently using hadoop jar /home/hadoop/contrib/streaming/hadoop-streaming.jar -input /no_dups -output ...
0
votes
2answers
53 views

using amazon s3 as input,output and to store intermediate results in EMR map reduce job

I am trying to use Amazon s3 storage with EMR. However, when I currently run my code I get multiple errors like java.lang.IllegalArgumentException: This file system object ...
0
votes
1answer
41 views

Import data to HVE (Finding trending topics using Google Books n-grams data )

I'm doing step by step guide http://aws.amazon.com/articles/5249664154115844 Step :Creating input table hive> CREATE EXTERNAL TABLE english_1grams ( gram string, year int, occurrences bigint, ...
0
votes
0answers
26 views

Access distributed cache on AWS

I have a local MapReduce job where I am accessing the Distributed Cache from main. I add the following line to my Configuration object. conf.addResource(new ...
0
votes
1answer
97 views

Pig group by and average function

I have data that looks like this STN--- WBAN YEARMODA TEMP DEWP SLP STP VISIB WDSP MXSPD GUST MAX MIN PRCP SNDP FRSHTT 030050 99999 19291029 ...
1
vote
1answer
54 views

Backup hdfs directory from full-distributed to a local directory?

I'm trying to back up a directory from hdfs to a local directory. I have a hadoop/hbase cluster running on ec2. I managed to do what I want running in pseudo-distributed on my local machine but now ...
0
votes
1answer
72 views

HIVE: How can I pass a hiveconf that contains a single quote?

I would like to pass a hive arg that contains a single quote in a string. This causes the EMR Job to fail with the following error: sh: -c: line 0: unexpected EOF while looking for matching `'' sh: ...
0
votes
0answers
25 views

Information on how to setup mongodb on AWS [closed]

I have a map reduce job which utilizes a Mongo database. I have it working locally but need help to set it up on AWS. Do you know any tutorials which I could use to setup a MongoDB on AWS as I cant ...
0
votes
1answer
161 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 ...
2
votes
0answers
54 views

How to properly configure the Amazon EC2 AMI for 'hadoop-ec2'?

I am trying to launch an instance on Amazon EC2. I have researched this problem extensively, but I have not found any helpful information. When I run the command hadoop-ec2 launch-cluster mycluster ...
2
votes
1answer
90 views

Hadoop DistributedCache object changed during job

I'm trying to run KMeans on AWS, and I ran into the following exception when trying to read updated cluster centroids from the DistributedCache: java.io.IOException: The distributed cache object ...
0
votes
1answer
73 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
0answers
83 views

s3distcp: can not create path from empty string

While running s3distcp from S3 to HDFS: sudo -u hdfs hadoop jar /usr/lib/hadoop/lib/s3distcp.jar --src ...
1
vote
2answers
45 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.
2
votes
2answers
324 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
1answer
84 views

Best technology stack for aggregation across various properties

We are working on developing a platform which models flow of entities across a graph. The system has to answer questions of the kind how many entities having these properties are sitting at a given ...
0
votes
1answer
229 views

Integrating Solr + Hadoop and Nutch + Hbase on Amazon Web Services and Local

I have a machine on Amazon Web Services and I am trying some search features on it. I have installed Nutch and Hbase on my AWS machine. I have crawled wikipedia.org as an example and the crawled data ...
0
votes
0answers
46 views

Variable assignment using Hive on AWS

I am getting an unexpected result when trying to follow the Hive documentation posted here. Can anyone spot my error? http://aws.amazon.com/articles/2855?_encoding=UTF8&jiveRedirect=1 Where I ...
0
votes
0answers
13 views

How To Check Variable State When Debugging AWS Elastic MapReduce Using Custom .jar?

I am running a custom .jar in AWS Elastic MapReduce and I'm trying to debug my errors. How can I see the value of a variable when debugging? Thanks
4
votes
3answers
138 views

Hadoop on EC2 vs Elastic Map Reduce

I'm trying to evaluate the differences between these two options. Here are some pros and cons I can think of : Elastic Map Reduce => Better support from Amazon, No need to administer cluster, More ...
0
votes
0answers
67 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
2answers
107 views

Hadoop and Amazon Web Services

I want to self-learn Hadoop and Amazon Web Services online. Are there any good university courses or tutorials on the web? I could find books on Amazon on Hadoop or AWS but I want something hands on ...
-2
votes
1answer
41 views

requirements for a social networking android app [closed]

i am planning to make an android app for social networking with at most user base of 10000. with almost the full-fledged feature of a social networking site So estimating the maximum concurrent users ...
0
votes
1answer
158 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
89 views

Amazon EMR: “no output” found in S3

I am not getting any output in S3 when I run a job in Amazon EMR. I specified the arguments: -inputfile s3n://exdsyslab/data/file.txt -outputdir s3n://exdsyslab/output When I checked the job log, ...
0
votes
0answers
49 views

Output Folders for Amazon EMR

I want to jun a custom jar, whose main class a chain of map reduce jobs, with the output of the first job going as the input of the second jar, and so on. What do I set in ...
0
votes
1answer
170 views

AWS EMR CLI - Pass Arguments to HIVE

I am using aws' emr ruby cli to generate Hadoop clusters and I am trying to include arguments to use within a HIVE script hosted elsewhere like so: ./elastic-mapreduce --create ... --args ...
1
vote
0answers
51 views

MapReduce job skipping / resizing?

I'm running a job on the whole commoncrawl corpus, and ran into this hiccup in the remaining map tasks. Anyone know what would cause that? I suspect it has something to do with this "resizing ...
0
votes
3answers
216 views

Reading in a parameter file in Amazon Elastic MapReduce and S3

I am trying to run my hadoop program in Amazon Elastic MapReduce system. My program takes an input file from the local filesystem which contains parameters needed for the program to run. However, ...
0
votes
1answer
321 views

PIG UDF handle multi-lined tuple split into different mapper

I have file where each tuple span multiple lines, for example: START name: Jim phone: 2128789283 address: 56 2nd street, New York, USA END START name: Tom phone: 6308789283 address: 56 5th street, ...
0
votes
1answer
397 views

Pig UDF running on AWS EMR with java.lang.NoClassDefFoundError: org/apache/pig/LoadFunc

I am developing an application that try to read log file stored in S3 bucks and parse it using Elastic MapReduce. Current the log file has following format ------------------------------- ...
0
votes
0answers
169 views

Error while connecting Elastic Map Reduce ruby client

I am following the steps mentioned on the AWS to use an interactive Hive session using SSH. I used the following resources ...
0
votes
0answers
119 views

API(s) to process Amazon public datasets

http://aws.amazon.com/publicdatasets/ - Are there any generic API(s) to process the public datasets exposed by Amazon, since most of them differ in their storage formats (csv, xls, email, tsv ...). ...
0
votes
1answer
1k views

Loading data with Hive, S3, EMR, and Recover Partitions

SOLVED: See Update #2 below for the 'solution' to this issue. ~~~~~~~ In s3, I have some log*.gz files stored in a nested directory structure like: s3://($BUCKET)/y=2012/m=11/d=09/H=10/ I'm ...
2
votes
0answers
202 views

Zookeeper client exception when executing any command in client

This is my configuration file: tickTime=2000 initLimit=20 syncLimit=5 dataDir=./store/data clientPort=2181 server.1=A:3181:4181 server.2=B:3181:4181 server.3=C:3181:4181 server.4=D:3181:4181 ...
0
votes
0answers
31 views

modify hadoop core on EMR

Is it possible to modify Hadoop core and rebuild the jars provided by AWS on EMR? (like adding some improvement : for example ...
3
votes
1answer
400 views

How to install JDK 7 on EC2 cluster via whirr?

I have some map-reduce programs compiled by Oracle JDK 7. And I'm trying to use whirr 0.8.1 to setup an EC2 cluster to run them. However, the default JDK installed by whirr 0.8.1 seems to be Open JDK ...
0
votes
2answers
175 views

Can I access zookeeper from AWS Elastic Mapreduce job

I'm new to Hadoop, and running under AWS Elastic Mapreduce. I need cluster-wide atomic counters in Hadoop and was suggested to use zookeeper for this. I believe zookeeper is part of the Hadoop stack ...
0
votes
1answer
227 views

Sessionized web logs, get previous and next domain

We have a large pile of web log data. We need to sessionize it, and also generate the previous domain, and next domain for each session. I am testing via an interactive job flow on AWS EMR. Right ...
1
vote
2answers
242 views

How to include third party library in hadoop when Using amazon elastic mapreduce service

I have to do some data-mining tasks using third party library called weka. But I am not sure how to include the required jar file in amazon elastic mapreduce service. Does anybody have experience in ...
1
vote
2answers
185 views

DynamoDB InputFormat for Hadoop

I have to process some data which is persisted in Amazon Dynamo DB using Hadoop map reduce. I was searching over internet for Hadoop InputFormat for Dynamo DB and couldn't find it. I'm not familiar ...

1 2 3