Hadoop is an Apache open-source project that provides software for reliable and scaleable distributed computing. The project itself includes a variety of other complimentary additions.

learn more… | top users | synonyms | hadoop jobs

0
votes
0answers
8 views

Hadoop initial setup on AWS EC2?

I am just a newbie of Hadoop. does anyone know how to setup hadoop on EC2(micro) instance? or It would be helpful if anyone knows good reference on-line links for Hadoop on EC2. Thank you
0
votes
0answers
13 views

Hadoop pseudo distributed mode - Datanode and tasktracker not starting

I am running a Red Hat Enterprise Linux Server release 6.4 (Santiago) distribution with Hadoop 1.1.2 installed on it. I have made the required configurations to enable the pseudo distributed mode. But ...
1
vote
1answer
16 views

Pig Filter out NOT Matches

I have a bunch of strings that have various prefixes including "unknown:" I'd really like to filter out all the strings starting with "unknown:" in my Pig script, but it doesn't appear to work. ...
0
votes
2answers
21 views

Processing syslog output to csv with python

I need help with taking log events from my siem and processing them into a csv file that can be ingested into hadoop for further processing. Below is sample from the siem and the desired result. I'm ...
0
votes
1answer
11 views

Can distcp be used to copy a directory of files from S3 to HDFS?

I am wondering if hadoop distcp can be used to copy multiple files at once from S3 to HDFS. It appears to only work for individual files with absolute paths. I would like to copy either an entire ...
0
votes
0answers
12 views

Large Number of Small Files in mapr

Hi Does MapR support large number(4 Million) of small files (Each 20KB) How well can it manage metadata of these files? If I want to run a mapreduce which parses each of these files, what performance ...
3
votes
0answers
26 views

Integration testing Hive jobs

I'm trying to write a non-trivial Hive job using the Hive Thrift and JDBC interfaces, and I'm having trouble setting up a decent JUnit test. By non-trivial, I mean that the job results in at least one ...
0
votes
1answer
20 views

High throughput vs low latency in HDFS

I tried to define what the high throughput vs low latency means in HDFS in my own words, and came up with the following definition: HDFS is optimized to access batches of data set quicker (high ...
0
votes
1answer
11 views

SAX Parser support in Apache Pig

I am working on a UDF to process XML files on the Hadoop cluster. I am using PIG to load the XML files and then I use my UDF to flatten the structure of the XML data. My current implementation is ...
0
votes
0answers
10 views

Hadoop multiple input zipped files processing

I have a folder consisting of around 20Lakhs zipped input files. Each zipped file consists of 2 to 4 files. I have a MapR cluster of size 5. i am using hadoop MapReduce to process these files. I want ...
3
votes
1answer
28 views

how to get input file name as column within hive query

I have a hive external tables that mapped to some directory. This directory includes a several files. I want to run query like find file name where there is a user "abc" select file_name , usr from ...
0
votes
0answers
17 views

How do I parse a binary Sqoop sequence file in a Hadoop MapReduce job?

I have imported a table into Hadoop with Sqoop as a sequence file. I can see the contents of the file using "hadoop fs -text filename", so it's obvious that Hadoop can use the jar file I created with ...
0
votes
1answer
17 views

Hadoop - namenode is not starting up

I am trying to run hadoop as a root user, i executed namenode format command hadoop namenode -format when the Hadoop file system is running. After this, when i try to start the name node server, it ...
0
votes
0answers
13 views

run hadoop based on the sources generated from maven

I am trying to make some changes on the hadoop framework but i am stucked in setting up my development environment. I have cloned hadoop from git and generated all the java projects to import to ...
1
vote
1answer
21 views

Hadoop: cannot set default FileSystem as HDFS in core-site.xml

I am using Hadoop 1.0.3 in a Pseudo-Distributed mode. And my conf/core-site.xml is set as follows: <configuration> <property> <name>fs.default.name</name> ...
0
votes
1answer
24 views

Flume NG FileChannel is very slow

I have been experimenting with flume ng (flume-ng-1.2.0+24.81-1~lucid) and have been comparing the performance of the memory channel and file channel. Each event in my test system is 1KB in size and ...
-1
votes
0answers
12 views

How RecommenderJob(org.apache.mahout.cf.taste.hadoop.item.RecommenderJob) will call my custom mappers and reducers?

I am running Mahout in Action example for 6 using command: "hadoop jar target/mia-0.1-job.jar org.apache.mahout.cf.taste.hadoop.item.RecommenderJob -Dmapred.input.dir=input/input.txt ...
1
vote
1answer
16 views

How does hive store sequencefile?

There is a hive internal table which is stored as sequence file, and the first column type is string and the field seperator is '\1',I want to process it using Mapreduce directly, and find out that ...
0
votes
1answer
23 views

how to join relations in-sequence in hadoop pig?

I have one line data like this: a\tb1,b2,..,bn\tc1,c2,..,cn in which n is uncertain. And now, I want transform it to some lines like this: a\tb1\tc1 a\tb2\tc2 ... a\tbn\tcn Is it possible by pig ...
0
votes
0answers
7 views

Mesos configuration error

I am trying to install Apache Mesos. I have downloaded and extracted the tar.gz file in my system. The README file says to run ./configure next. But when i do this, I am getting an error "configure: ...
0
votes
1answer
19 views

Error while trying to launch Pig script with JAVA

I'm trying to launch a pig script from JAVA. Here is my code: import java.io.IOException; import java.util.Properties; import org.apache.pig.ExecType; import org.apache.pig.PigServer; import ...
0
votes
2answers
22 views

HDFS command line put throwing an exception

I am trying to put a file into hdfs using ssh from my client pc to the NameNode server. There are 2 machines: One NameNode and one DataNode. Here is the command I am trying; $ bin/hadoop fs -fs ...
1
vote
1answer
24 views

What is the difference between job.submit and job.waitForComplete in hadoop?

I have read the documentation so I know the difference. My question however is that, is there any risk in using .submit instead of waitForComplete if I want to run several Hadoop jobs on a cluster in ...
1
vote
1answer
35 views

Can Hadoop's Shuffle/Sort (or partition) phase be customized to perform a graph traversal?

I am still learning about the MapReduce framework, specifically implemented by Hadoop, and I wonder if it can be modified to perform the following task: The Map() function will emit (key,value) ...
1
vote
0answers
21 views

Processing of heterogeneous documents XML in Hadoop

I work with hadoop 1.1.1. as I process XML documents, I use XmlInputFormat existing in MAHOUT. It is plain that START_TAG and END_TAG should be assigned. This kind of process is suitable for these ...
2
votes
1answer
28 views

What happens if I add the same path twice to a Hadoop?

I am using elastic map reduce. I wonder what will happen if I use the exact same line twice in my main method. FileInputFormat.addInputPath(job, new Path( ...
1
vote
1answer
29 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
0answers
12 views

Hadoop JobRunner do not launch job

I started recently with Hadoop, and some problems came up at the very first moment, I've been able to work out with them thus far, but there is one that I have not been able to overcome with. The ...
0
votes
1answer
23 views

Pig Split Line on Regex

I'm attempting to write a PIG script that reads in a large single line file and splits it into a large multiple line file. I'm attempting to split the text when I find the string "alert" or "none"; ...
3
votes
3answers
86 views

Selecting 10% random number from a infinite stream

There is a stream of numbers coming. At any point of time i might need 10% random numbers. I obviously don't want to store the entire stream. The bigger problem is for which i am thinking the above ...
1
vote
0answers
15 views

Hadoop/cygwin failure in bin/hadoop tasktracker command

i am following http://ebiquity.umbc.edu/Tutorials/Hadoop/00%20-%20Intro.html Start the namenode in the first window by executing cd hadoop-0.19.1 bin/hadoop namenode Start the secondary namenode in ...
0
votes
0answers
45 views

Real time join on Hbase tables (not using map-reduce)

I am a beginner in HBase, need your help in creating the HBase data model for the below rdbms tables. The 3 tables are , Asset {asset id(p.k),ip_address,host_name,location,etc..} Metric ...
1
vote
1answer
19 views

Where to find info about file system counters in Mapreduce

While running a mapreduce job I get an output like this: 11/09/15 21:35:16 INFO mapreduce.Job: Counters: 24 File System Counters FILE: Number of bytes read=255967 FILE: Number of bytes ...
0
votes
2answers
16 views

Sqoop import failed, UnsupportedClassVersionError

I was trying to import table from MySQL to HDFS using sqoop. The commandline used is, sqoop import --connect jdbc:mysql://192.168.10.452/qw_key_test --username qw -P --split-by qw_id -m 10 ...
-3
votes
0answers
18 views

Large number of small sized zipped files in hadoop [closed]

I have around 2 million input zipped files,each around 20kb in size. I would like to know the best approach to process these files using Hadoop MapReduce. I am trying to achieve the processing of ...
0
votes
1answer
19 views

Unable to connect to Hbase remotly

I have set up Hadoop and Hbase in pseudo distributed mode on machine A. I am running my client ( Java program ) from machine B.(Machine A and B can communicate with each other). But i am facing ...
0
votes
0answers
11 views

Shuffle Error: Exceeded MAX_FAILED_UNIQUE_FETCHES; bailing-out

I am trying to run mapreduce job on two node cluster. I am getting the following error Shuffle Error: Exceeded MAX_FAILED_UNIQUE_FETCHES; bailing-out. I read through some posts which say it is due to ...
3
votes
2answers
33 views

how to start sort and reduce in hadoop before shuffle completes for all mappers?

I understand from When do reduce tasks start in Hadoop that the reduce task in hadoop contains three steps: shuffle, sort and reduce where the sort (and after that the reduce) can only start once all ...
0
votes
0answers
14 views

How can I use elasticsearch-hadoop plugin?

I want to use elasticsearch-hadoop plugin, but it is not working. How do I use this plugin? Relevant code: public static void main(String[] args) throws Exception { Configuration configuration ...
0
votes
2answers
26 views

Apache Pig - How to get number of matching elements between multiple bags?

I'm a new user of Apache Pig and I have a problem to solve. I'm trying to make a little search engine with apache pig. The idea is simple: I have a file, which is the concatenation of multiple ...
0
votes
0answers
8 views

Require Details about edge node in cluster

Can Some one explain me the architecture of Edge node in hadoop . I am able to find only the definition on the internet. I have some queries 1) Does the edge node a part of the cluster (What ...
0
votes
0answers
19 views

Out of memory due to hash maps used in map-side aggregation

MY Hive Query is throwing this exception. Hadoop job information for Stage-1: number of mappers: 6; number of reducers: 1 2013-05-22 12:08:32,634 Stage-1 map = 0%, reduce = 0% 2013-05-22 ...
-1
votes
2answers
38 views

big data - where does the data come from? [closed]

This might seem like an inane question but with all the buzz about big data I was curious as to how the typical datasets used in big data are sourced? Twitter keywords seem to be a common source - but ...
1
vote
1answer
39 views

How to decompress lzo_deflate file?

I used LZO to compress reduce output. I tried this: Hadoop-LZO project of Kevin Weil and then used LzoCodec class with my job: TextOutputFormat.setOutputCompressorClass(job, LzoCodec.class); Now ...
1
vote
2answers
40 views

Hive job not running properly on cassandra cluster, reducer get stuck

Hi I have 6 node datastax cassandra cluster(3 cassandra- 3 analytics). I am using hive to generate reports. The issue is when I run a hive job with count(*) or group by query, mappers get completed ...
0
votes
0answers
35 views

Runing map reduce job by unix

I need to run bellow map reduce command from unix shell script. MR_COMMAND="StreamsOnly_RM.jar -conf StreamsOnly_RM.xml \"$input_dir1/*/$IPPattern1\" $temp_output $output_dir" a echo command ...
1
vote
1answer
21 views

How do I read Snappy compressed files on HDFS without using Hadoop?

I'm storing files on HDFS in Snappy compression format. I'd like to be able to examine these files on my local Linux file system to make sure that the Hadoop process that created them has performed ...
1
vote
1answer
49 views

is FSDataInputStream limited to those bytes that were already written when it was created?

So I'm trying to understand some behavior in HDFS. My goal is to set up a configuration where I open an FSDataOutputStream to some location and then I have some other part of my application open up an ...
0
votes
0answers
24 views

Different hadoop MapReduce job configuration on client and on cluster

I need somewhat strange behaviour from my MapReduce job. I'd like part of code that configures and submits MapReduce job (Tool interface and so on, let's call it 'client') know only about HDFS / ...
0
votes
0answers
19 views

Mem usage is different from TOP and JMAP for java application

It's a reducer program in a hadoop job. "top" command tells me that the RES is about 4.0G mem, and the DATA is 4.5G. And the system begins to use SWAP. I run the reducer with -Xmx4g option. In the ...

1 2 3 4 5 130