Tagged Questions

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

learn more… | top users | synonyms

37
votes
10answers
3k views

Please explain MapReduce simply

Related to my CouchDB question.... Can anyone explain MapReduce in terms a numbnuts could understand?
33
votes
9answers
12k views

Is there a .NET equivalent to Apache Hadoop?

So, I've been looking at Hadoop with keen interest, and to be honest I'm fascinated, things don't get much cooler. My only minor issue is I'm a C# developer and it's in Java. It's not that I don't ...
32
votes
9answers
22k views

What programming language is Google written in?

I mean google the search engine.
31
votes
6answers
3k views

What is Map/Reduce

I hear a lot of noise about map/reduce, esp in the context of Google's massively parallel compute system. What exactly is it, and why is it "cool"?
26
votes
3answers
10k views

How does the MapReduce sort algorithm work?

One of the main examples that is used in demonstrating the power of MapReduce is the Terasort benchmark. I'm having trouble understanding the basics of the sorting algorithm used in the MapReduce ...
21
votes
8answers
3k views

What type of problems can mapreduce solve?

Is there a theoretical analysis available which describes what kind of problems mapreduce can solve?
19
votes
8answers
9k views

20 Billion Rows/Month - Hbase / Hive / Greenplum / What?

I'd like to use your wisdom for picking up the right solution for a data-warehouse system. Here are some details to better understand the problem: Data is organized in a star schema structure with ...
18
votes
10answers
4k views

Is there anything like Hadoop in C++?

What is the closest thing like Hadoop, but in C++? In particular, I want to do distributed computing using MapReduce. Thanks!
17
votes
8answers
2k views

Simple Java Map/Reduce framework

Can anyone point me at a simple, open-source Map/Reduce framework/API for Java? There doesn't seem to much evidence of such a thing existing, but someone else might know different. The best I can ...
16
votes
1answer
666 views

compute bootstrapping algorithm using Map/Reduce

This question was originally a homework assignment I had, but my answer was wrong, and I'm curious what is the best solution for this problem. The goal is to compute key aspects of the "Recommender ...
15
votes
6answers
5k views

MapReduce implementation in Scala

I'd like to find out good and robust MapReduce framework, to be utilized from Scala.
14
votes
7answers
691 views

Large scale Machine Learning

I need to run various machine learning techniques on a big dataset (10-100 billions records) The problems are mostly around text mining/information extraction and include various kernel techniques but ...
12
votes
1answer
3k views

Can OLAP be done in BigTable?

In the past I used to build WebAnalytics using OLAP cubes running on MySQL. Now an OLAP cube the way I used it is simply a large table (ok, it was stored a bit smarter than that) where each row is ...
11
votes
3answers
4k views

How to use Cassandra's Map Reduce with or w/o Pig?

Can someone explain how MapReduce works with Cassandra .6? I've read through the word count example, but I don't quite follow what's happening on the Cassandra end vs. the "client" end. ...
11
votes
2answers
4k views

CouchDB: map-reduce in Erlang

How can I write map-reduce functions in Erlang for CouchDB? I am sure Erlang is faster than JavaScript.
10
votes
3answers
530 views

Should I learn/use MapReduce, or some other type of parallelization for this task?

After talking with a friend of mine from Google, I'd like to implement some kind of Job/Worker model for updating my dataset. This dataset mirrors a 3rd party service's data, so, to do the update, I ...
10
votes
7answers
5k views

Chaining multiple MapReduce jobs in Hadoop

In many real-life situations where you apply MapReduce, the final algorithms end up being several MapReduce steps. I.e. Map1 , Reduce1 , Map2 , Reduce2 , etc. So you have the output from the last ...
10
votes
4answers
933 views

Hadoop Distribution Differences

Can somebody outline the various differences between the various Hadoop Distributions available: Cloudera - http://www.cloudera.com/hadoop Yahoo - http://developer.yahoo.net/blogs/hadoop/ using ...
10
votes
9answers
3k views

MapReduce on Azure

Is there an implementation of MapReduce/Hadoop on Azure?
10
votes
9answers
5k views

Hadoop on windows server

I'm thinking about using hadoop to process large text files on my existing windows 2003 servers (about 10 quad core machines with 16gb of RAM) The questions are: Is there any good tutorial on how ...
10
votes
5answers
3k views

How do you use MapReduce/Hadoop?

I'm looking for some general information about how other people are using Hadoop or other MapReduce-like technologies. In general, I am curious to whether you are writing MR applications to process ...
9
votes
3answers
2k views

Can someone explain map-reduce in C#?

Can anyone please explain the concept of map-reduce, particularly in Mongo? I also use C# so any specifics in that area would also be useful.
9
votes
3answers
1k views

Scala analogues of QtConcurrent

What are the analogues of QtConcurrent for Scala (or Java)? Ie simplified implementation of MapReduce, the parallel map and foldl. Thank you
9
votes
4answers
388 views

Where do I start with distributed computing?

I'm interested in learning techniques for distributed computing. As a Java developer, I'm probably willing to start with Hadoop. Could you please recommend some books/tutorials/articles to begin with? ...
9
votes
4answers
1k views

Is it possible to write map/reduce jobs for Amazon Elastic MapReduce using .NET?

Is it possible to write map/reduce jobs for Amazon Elastic MapReduce (http://aws.amazon.com/elasticmapreduce/) using .NET languages? In particular I would like to use C#. Preliminary research ...
8
votes
1answer
94 views

State of Map-Reduce on Appengine?

There is appengine-mapreduce which seems the official way to do things on AppEngine. But there seems no documentation besides some hacked to gather Wiki Pages and lengthy videos. There are Statements ...
8
votes
1answer
2k views

Does Mongoid have Map/Reduce?

I am using Ruby code to calculate sum from the array returned by Mongoid. But maybe using Map/Reduce can be faster, except I don't see any docs for Map Reduce on mongoid.org and Google for map ...
8
votes
2answers
425 views

What is the computational complexity of the MapReduce overhead

Given that the complexity of the map and reduce tasks are O(map)=f(n) and O(reduce)=g(n) has anybody taken the time to write down how the Map/Reduce intrinsic operations (sorting, shuffling, sending ...
8
votes
1answer
2k views

Best way to do one-to-many “JOIN” in CouchDB

There are CouchDB documents that are list elements: { "type" : "el", "id" : "1", "content" : "first" } { "type" : "el", "id" : "2", "content" : "second" } { "type" : "el", "id" : "3", "content" : ...
8
votes
3answers
2k views

MongoDB: What's the point of using MapReduce without parallelism?

Quoting http://www.mongodb.org/display/DOCS/MapReduce#MapReduce-Parallelism As of right now, MapReduce jobs on a single mongod process are single threaded. This is due to a design limitation ...
8
votes
1answer
1k views

Difference between Fork/Join and Map/Reduce

What is the key difference between Fork/Join and Map/Reduce? Do they differ in the kind of decomposition and distribution (data vs. computation)?
8
votes
5answers
2k views

CouchDB - .NET or Mono Equivalent Technology

Is there any active "document-based" database projects using .NET or Mono? Something similar to CouchDB, SimpleDB, LotusNotes, etc... Prefer open source. I figure the JScript.NET technology could be ...
8
votes
7answers
4k views

how to implement eigenvalue calculation with MapReduce/Hadoop?

It is possible because PageRank was a form of eigenvalue and that is why MapReduce introduced. But there seems problems in actual implementation, such as every slave computer have to maintain a copy ...
7
votes
1answer
198 views

Streaming or custom Jar in Hadoop

I'm running a streaming job in Hadoop (on Amazon's EMR) with the mapper and reducer written in Python. I want to know about the speed gains I would experience if I implement the same mapper and ...
7
votes
1answer
277 views

Why does my Mapreduce implementation (real world haskell) using iteratee IO also fails with “Too many open files”

I am implementing a haskell program wich compares each line of a file with each other line in the file. Which can be implemented single threaded as follows distance :: Int -> Int -> Int ...
7
votes
1answer
1k views

how to compute the average with mongodb and NumberLong

I am trying to compute an average value from a collection using the mongodb java driver, like this: DBObject condition = new BasicDBObject("pluginIdentifier", plugin.getIdentifier()); DBObject ...
7
votes
1answer
790 views

Map Reduce with F# agents

After playing with F# agents I tried to do a map reduce using them. The basic structure I use is: map supervisor which queues up all the work to do in its state and receives work request from map ...
7
votes
2answers
2k views

RavenDB Map-Reduce Example using .NET Client

I'm looking for an example of how to implement and use Map-Reduce within the RavenDB .NET Client. I'd like to apply it to a specific scenario: generating unique and total visitor counts. A sample ...
7
votes
4answers
2k views

Sorting large data using MapReduce/Hadoop

I am reading about MapReduce and the following thing is confusing me. Suppose we have a file with 1 million entries(integers) and we want to sort them using MapReduce. The way i understood to go ...
7
votes
2answers
598 views

Hadoop Map Reduce: Algorithms

Can someone point me to a good web site with good collection of Hadoop algorithms. For example, the most complex thing that I can do with Hadoop right now is Page Rank. Other than that, I can do ...
7
votes
1answer
600 views

Hadoop in windows : file not found exception

I'm using hadoop in windows and i've configured everything good (installing cygwin, passwordless ssh etc..) I've compiled the wordcount program in WC.jar and tried to run. Its running perfectly in ...
7
votes
4answers
523 views

What's the best way to count unique visitors with Hadoop?

hey all, just getting started on hadoop and curious what the best way in mapreduce would be to count unique visitors if your logfiles looked like this... DATE siteID action username ...
7
votes
1answer
475 views

Disco/MapReduce: Using results of previous iteration as input to new iteration

Currently am implementing PageRank on Disco. As an iterative algorithm, the results of one iteration are used as input to the next iteration. I have a large file which represents all the links, with ...
7
votes
2answers
6k views

Run Hadoop job without using JobConf

I can't find a single example of submitting a Hadoop job that does not use the deprecated JobConf class. JobClient, which hasn't been deprecated, still only supports methods that take a JobConf ...
7
votes
9answers
713 views

How do I tell a multi-core / multi-CPU machine to process function calls in a loop in parallel?

I am currently designing an application that has one module which will load large amounts of data from a database and reduce it to a much smaller set by various calculations depending on the ...
6
votes
3answers
80 views

Distributed unit testing and code coverage in Python

My current project has a policy of 100% code coverage from its unit tests. Our continuous integration service will not allow developers to push code without 100% coverage. As the project has grown, ...
6
votes
2answers
146 views

MapReduce alternatives

Are there any alternative paradigms to MapReduce (Google, Hadoop)? Is there any other reasonable way how to split & merge big problems?
6
votes
2answers
145 views

Relationship between python map reduce and cloud-computing map/reduce?

I'm new to Python, Do someone know what's relationships between Python (and functional languages') functions map() / reduce() and MapReduce concept related to distributed computations?
6
votes
2answers
219 views

Is it better to use the mapred or the mapreduce package to create a Hadoop Job?

To create MapReduce jobs you can either use the old org.apache.hadoop.mapred package or the newer org.apache.hadoop.mapreduce package for Mappers and Reducers, Jobs ... The first one had been marked ...
6
votes
4answers
267 views

F# async stack overflow

I am surprised by a stack overflow in my async-based program. I suspect the main problem is with the following function, which is supposed to compose two async computations to execute in parallel and ...

1 2 3 4 5 20