MapReduce is an algorithm for processing huge datasets on certain kinds of distributable problems using a large number of nodes

learn more… | top users | synonyms

1
vote
0answers
14 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
0answers
22 views

java hadoop mapreduce implement count concurrency

How to implement it use hadoop mapreduce in java? In hive, I have a table with lots columns, which two of them are begin_time, end_time. I need to count the number on the each time a piece of the ...
3
votes
0answers
28 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
15 views

Error while executing mapreduce in mongo-shell

The following error occours Thu May 23 07:14:53.437 JavaScript execution failed: map reduce failed:{ "errmsg" : "exception: JavaScript execution failed: TypeError: Cannot read property ...
0
votes
1answer
34 views

MapReduce solution in python to identify asymetric pairs

I am attempting to write a Mapper and Reducer in Python, a language I am new to, that will print asymmetric key value pairs. For example: Input A,B B,A C,B B,C D,E E,F F,E D,B Output D,E D,B
0
votes
0answers
81 views

MapReduce Matrix Multiplication Multiplication In python

I am attempting to write Mapper and Reducer code in Python, but am new to Python. Does anyone have example code they could post. thanks, Chris
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) ...
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
0answers
9 views

run Pig in parallel job

I know pig script will translate several mapreduce job, now i'm in this situation and my pig script is like this split A into A1 if **, A2 if ** , A3 if ***; B = MACRO_B(A1); C = MACRO_C(A2); B ...
0
votes
0answers
48 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
0answers
35 views

ImportError: No module named MapReduce in Cloud9

I'm using Cloud9 (https://c9.io) and 'm trying to import MapReduce and I'm receiving "ImportError: No module named MapReduce". Someone can help-me to install this library in Cloud9 python environment? ...
1
vote
0answers
41 views

Searching for QtConurrent substitution (map-reduce)

I heavily used Qt concurrent in my projects, until recently found that is does not work. So, is there any substitution? I'm especially interested in map-reduce concept implementation. I've looked ...
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
1answer
22 views

different 'apply' methods in RHive API

RHive API contains 5 'apply' functions: rhive.napply rhive.sapply rhive.mrapply rhive.mapapply rhive.reduceapply Unfortunately, RHive manual does not provide any description what is the difference ...
5
votes
2answers
45 views

How to handle multiline record for inputsplit?

I have a text file of 100 TB and it has multiline records. And we are not given that each records takes how many lines. One records can be of size 5 lines, other may be of 6 lines another may be 4 ...
1
vote
3answers
26 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
2answers
38 views

hadoop textinputformat read only one line per file

I wrote a simple map task for hadoop 0.20.2, the input dataset consists of 44 files, each is about 3-5MB. Each line of any file has the format int,int. The input format is the default TextInputFormat ...
0
votes
1answer
25 views

Eclipse/MapReduce plugin

I've been searching for a MapReduce plugin for eclipse, but most of them didn't work for me. The only one that did work had the old API's template when creating Mappers/Reducers/Drivers. So I ...
-2
votes
0answers
34 views

SELECT COUNT DISTINCT from Hive [closed]

Everyone! There is one problem with Hive. This query: SELECT COUNT(DISTINCT field1) FROM some_table WHERE field2 = 'some vale' gives me a different result from these two : INSERT OVERWRITE TABLE ...
3
votes
1answer
45 views

Typesafe map-reduce in Java

How to write a type-safe mapper/transformer of collections? class Bean { public int value; } List<Bean> beans = .. List<Integer> ints = Lib.map(beans, b => b.value); Using Apache ...
1
vote
1answer
20 views

How to get the document ID in a Mapper with MultipleInputs

I'm codding a TF-IDF using Hadoop in Java (no Pig or Hive) for learning purposes. I'm going to split it in three rounds: word count, word count per doc and finally docCount per word. I believe main ...
0
votes
1answer
24 views

error in hadoop mapreduce program

I am trying to write data from hbase to hdfs and encountered this error in compilation. Is it problem with the reducer code or something else? HbaseFile.java:36: setReducerClass(java.lang.Class) in ...
-5
votes
0answers
35 views

How to Implement an Algorithm in Apache Hadoop MR [closed]

I am trying to implement the Weather forecast, for this I have chosen the KNN Algorithm but I don't know how to implement the algorithm in MapReduce. please help me Thanks in advance, Venkat
-2
votes
0answers
30 views

Hadoop R Streaming [closed]

How to read R streaming output. I cant read part-00000 no text. Should I use sink() to see output. My map reduce completed successfully. But part -00000 file size is zero. I m doing hadoop streaming ...
0
votes
1answer
24 views

Adding Writable objects to Hadoop Configuration

I see that the Configuration class in Hadoop is writable http://hadoop.apache.org/docs/current/api/org/apache/hadoop/conf/Configuration.html. However, I do not see any of the methods that it has ...
1
vote
2answers
39 views

Understanding the Hadoop File System Counters

I want to understand the filesystem counters in hadoop. Below are the counters for a job that I ran. In every job that I run, I observe that the Map file bytes read is like almost equal to the HDFS ...
0
votes
0answers
29 views

A join operation using Hadoop MapReduce

How to take a join of two record sets using Map Reduce ? Most of the solutions including those posted on SO suggest that I emit the records based on common key and in the reducer add them to say a ...
-1
votes
0answers
23 views

Hadoop Custom Writable

I have implemented a custom writable object containing multiple string fields and Hash Map. I want to process such objects in my reducer logic. For that purpose ,I'm storing custom object to a List ...
-3
votes
0answers
103 views

Matrix Multiplication and Cartesian Products in MapReduce [closed]

I will soon be engaged in Matrix and Cartesian Multiplication in MapReduce. I would appreciate concrete examples in python and Java as well as algorithmic approach description to better understand ...
1
vote
2answers
87 views

Are map() and reduce() appropriate for concurrent processing in Go?

Coming from a python background, and just starting with Go, I found myself looking for the equivalent of the map() and reduce() functions in Go. I didn't find them, so fell back on for loops. For ...
0
votes
0answers
22 views

mapreduce.yaml BlobstoreZipInputReader blob_key parameters

I can not figure out how to add the mappers params to a BlobstoreZipInputReader in my mapreduce.yaml, and i have searched everywhere. In python code i pass a dict in. Below is a full example. ...
-1
votes
0answers
74 views

Merge lists in python

I was learning MapReduce and was trying to merge two lists in python. mr = MapReduce.MapReduce() key = "test" new_list = [] new_list = listA + listB mr.emit(key,new_list) And I am getting the ...
1
vote
1answer
39 views

How to find optimal number of mappers when running Sqoop import and export?

I'm using Sqoop version 1.4.2 and Oracle database. When running Sqoop command. For example like this: ./sqoop import \ --fs <name node> ...
0
votes
1answer
29 views

Querying graph structured data in couchbase

Given some couchbase documents representing a graph, for example: { id: 1, name: "Node 1", type: "node" } { id: 2, name: "Node 2", type: "node" } { id: 3, name: "Node 3", type: "node" } { from_node: ...
0
votes
1answer
22 views

hbase dns connection error or could be ipv6

I have been trying to run MapReduce job that involves using Hbase as source and sink. However, when I try to use HBase client package 0.92.1, things seem to work. But when I use version 0.94.2 and ...
0
votes
1answer
34 views

Custom Partitioner : N number of keys to N different files

My requirement is to write a custom partitioner. I have these N number of keys coming from mapper for example('jsa','msa','jbac'). Length is not fixed. It can be anyword infact. My requirement is to ...
0
votes
0answers
29 views

To find subscript index in strsplit function

How to find subscript index number when we use strsplit() function in R. My output is N712SW|2008 8 N772SW|2008 19 N428WN|2008 8 what will be my output if I split by tab first ...
-3
votes
0answers
28 views

How does MPP compare with MapReduce for a columnar database, i.e. (Redshift vs Impala) [closed]

Redshift & Impala are both very attractive solutions to large scale log analysis. But they are based on different approach, e.g. Massively Parallel Processing vs MapReduce. What would be the ...
0
votes
1answer
15 views

How can I use s3 object names as inputs to an MRJob mapper, but not the s3 objects themselves?

I'm missing something obvious about Yelp's mrjob job library. Setting up an MRJob class is almost trivially easy. Running it over a file or stdin also so. But how can I change the input to the job ...
-1
votes
1answer
39 views

Hadoop reduce before map task completed [closed]

It's known that receive words in map task and sum up those "one" in reduce task in WordCount example. I've tried adding System.out.println to show how wordcount example code running in map/reduce ...
-4
votes
0answers
24 views

MapReduce using bash functions in C [closed]

I need to code a script in C that takes two arguments (map and reduce functions) and produce the result. Map function is assumed to do the following: Receives an argument that will be used to ...
1
vote
2answers
65 views

Algorithm for Ordered Combinations

I have the following task: there are 10M documents there are 100K unique labels each document has 100 labels For each label X I need to find 10 top Y labels, where X and Y are both present in ...
0
votes
1answer
51 views

MapReduce trouble with counting

I've got a problem, I have data in mongodb which looks like this: {"miejscowosci_str":"OneCity", "wojewodztwo":"FirstRegionName", "ZIP-Code" : "...", ...} {"miejscowosci_str":"TwoCity", ...
0
votes
0answers
29 views

In the Hadoop Source Code, which is the specific function that makes the MapOutputFile (for example in Hadoop 1.0.3)

I am trying to modify the Hadoop Source Code to implement an individual LoadBalancing algorithm. To achieve this, I need to find the function in the Hadoop source code (not in my individual jar), ...
1
vote
1answer
28 views

unix : how does a “./process | sort” work?

To debug some map/reduce jobs I often test them using a simple unix command that basically reads cat data/* | mapper | sort | reduce > out Now everything works just fine, but I'm wondering what ...
1
vote
2answers
22 views

Map function does not execute after saving

I am creating the below map function it chouchdb 1.3.0. If I run it as a temporary view it works fine, but as soon as I save it, it fails to compile. function(doc) { var datestamp = ...
1
vote
0answers
36 views

Computing simple moving average using Map Reduce in MongoDB

I stumbled upon this article: http://blog.cloudera.com/blog/2011/04/simple-moving-average-secondary-sort-and-mapreduce-part-3/ which mentions how to calculate moving average using Hadoop. Please ...
-2
votes
1answer
25 views

Accessing Hadoop Cluster remotely with Rest services and API's

Can you please provide me the tutorial or documentation on rest services and API's or anything related for developing applications and accessing hadoop cluster remotely for mr/pig/hive/hbase? Thanks!
-2
votes
0answers
17 views

Mapreduce development environment and developing udfs, lookups [closed]

Can you please provide me a documentation or tutorial to setup development environment for developing Mapreduce jobs using Java? Also environment for developing udf for pig/hive, hbase and lookups ...

1 2 3 4 5 63