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.
2
votes
1answer
22 views
How to find time spent by mappers and reducers in Hadoop?
How to find time spent by each mapper and reducer as well as time for shuffling (sorting) within the code (not in web interface) in Hadoop? How about total time by all mapper (or reducers?
0
votes
1answer
18 views
Collect and Display Hadoop MapReduce resutls in ASP.NET MVC?
Beginner questions. I read this article about Hadoop/MapReduce
http://www.amazedsaint.com/2012/06/analyzing-some-big-data-using-c-azure.html
I get the idea of hadoop and what is map and what is ...
0
votes
0answers
21 views
Hadoop tasktracker failed to start
I am new to hadoop. I have local dir and system dir mentioned in the mapred config. The error log is saying cannot create the directory so the start up failed.
...
0
votes
0answers
21 views
Handling tar headers in Pig
If I'm running Pig on a bunch of *.tar.gz files, PigStorage will handle unzipping fine, but the header lines between the files in tar aren't handled. Is there a simple way to handle this? Or do I ...
1
vote
1answer
17 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
0answers
15 views
Hadoop Cassandra Wide Row Support
When wide_row is set to false in ConfigHelper.setInputColumnFaily, the map method in the mapper class receives a thousand-column chunk per call (one call for each row key) limited by the number set in ...
0
votes
0answers
11 views
Query regarding Cloudera Manager on EC2
I have some query regarding Cloudera Manager(Free Edition) on EC2. I am not sure this is the correct place to ask the question. If I am wrong please also let me know Is there a place where I can put ...
0
votes
1answer
29 views
Cascading - regex parser - wrong number of fields
Starting to play with Cascading on Amazon EMR, have managed to get it running BUT falling at a fairly simple hurdle and I was hoping someone could shed some light on it.
My code:
import ...
0
votes
0answers
20 views
Path on various slaves node
I have installed hadoop on 3 nodes, 1 master and 2 -slave nodes.
on master node and one of slave node is having same hadoop path i.e. /home/hduser/hadoop,
but in one slave node it is different, i.e. ...
0
votes
2answers
28 views
Apache Pig - Is it possible to serialize a variable?
Let's take the wordCount example:
input_lines = LOAD '/tmp/my-copy-of-all-pages-on-internet' AS (line:chararray);
-- Extract words from each line and put them into a pig bag
-- datatype, then ...
1
vote
1answer
24 views
HBase: Thrift vs Rest performance
I know there are a couple of post on StackOverflow about REST and Thrift for HBase, but I would like to focus a bit on the question of performance.
I have been playing with the following libraries in ...
0
votes
0answers
17 views
Pig's DBStorage is not working with other Storage function
DBStorage is not working with other storage in pig script.
means DBStorage is not working with multiple storage statement.
What I was trying for:
1) I was trying to Store one output using DBStorage ...
1
vote
1answer
21 views
Hadoop filesystem reads linux filesystem instead of hdfs?
I have a strange thing happening, when I read hadoop filesystem it shows me linux filesystem not the hadoop one, anyone is familiar with this issue?
Thanks,
Mika
0
votes
1answer
19 views
Hadoop simple Java program - Interaction with MongoDB
I have chosen Hadoop for dataprocessing, and i use MongoDB for storage in one of my
project which includes much data.
I configured and installed hadoop and executed the sample given in this link, ...
0
votes
0answers
22 views
How to import LinkedIn Json file into Hive External Table?
The following is the JSON file exported from LinkedIn using API.
{
"numResults": 21,
"people":
{ "total": 21,
"values":
{ ...
-1
votes
0answers
21 views
How to speed up mahout learning process? [closed]
I have been using a dataset with million documents as a training set. It takes a day for mahout to learn in my machine with 8GB ram, intel i5 2.50GHZ?
Is there any tweak to improve the learning ...
1
vote
0answers
23 views
Job wide custom cleanup after all the map tasks are completed
While running a map-reduce job, that has only mapper, I have a counter that counts the number of failed documents .And after all the mappers are done, I want the job to fail if the total number of ...
0
votes
3answers
21 views
How to pass parameters to Python streaming script in Hive?
Hive user can stream table through script to transform that data:
ADD FILE replace-nan-with-zeros.py;
SELECT
TRANSFORM (...)
USING 'python replace-nan-with-zeros.py'
AS (...)
FROM some_table;
...
0
votes
1answer
17 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
1
vote
2answers
35 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
23 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
26 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
15 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
38 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 ...
1
vote
1answer
24 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
13 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
16 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
31 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
23 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
22 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
14 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
25 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
27 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 ...
-4
votes
1answer
20 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
17 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
2answers
31 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
1answer
22 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
23 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
25 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
40 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
25 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
32 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
32 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
16 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
24 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
90 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
16 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
55 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
20 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 ...
