6
votes
4answers
672 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 applic …
1
vote
2answers
53 views
Caching of Map applications in Hadoop MapReduce?
Looking at the combination of MapReduce and HBase from a data-flow perspective, my problem seems to fit. I have a large set of documents which I want to Map, Combine and Reduce. My …
1
vote
2answers
120 views
MapReduce, Python and NetworkX
I have implemented an unweighted random walk function for a graph that I built in Python using NetworkX. Below is a snippet of my program that deals with the random walk. Elsewhere …
1
vote
2answers
91 views
Splitting input into substrings in PIG (Hadoop)
Assume I have the following input in Pig:
some
And I would like to convert that into:
s
so
som
some
I've not (yet) found a way to iterate over a chararray in pig latin. I hav …
2
votes
4answers
192 views
What is the maximum value for a compound CouchDB key?
I'm using what seems to be a common trick for creating a join view:
// a Customer has many Orders; show them together in one view:
function(doc) {
if (doc.Type == "customer") {
…
0
votes
1answer
34 views
Hadoop mapreduce streaming from HBase
I'm building a Hadoop (0.20.1) mapreduce job that uses HBase (0.20.1) as both the data source and data sink. I would like to write the job in Python which has required me to use ha …
5
votes
1answer
171 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) w …
2
votes
4answers
98 views
Generating Separate Output files in Hadoop Streaming
Using only a mapper (a Python script) and no reducer, how can I output a separate file with the key as the filename, for each line of output, rather than having long files of outpu …
2
votes
3answers
406 views
MapReduce implementation in Scala
I'd like to find out good and robust MapReduce framework, to be utilized from Scala.
7
votes
9answers
516 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 depend …
-1
votes
4answers
222 views
Why Google and not others? [closed]
What contributed to Google greatness other than its "algorithms". Even the algorithms were somewhat state of the art ideas
Authority ranking existed before Google (the idea can b …
0
votes
3answers
84 views
Sorting the values before they are send to the reducer.
I'm thinking about building a small testing application in hadoop to get the hang of the system.
The application I have in mind will be in the realm of doing statistics.
I want to …
0
votes
2answers
102 views
What are some scenarios for which MPI is a better fit than MapReduce?
As far as I understand, MPI gives me much more control over how exactly different nodes in the cluster will communicate.
In MapReduce/Hadoop, each node does some computation, exch …
4
votes
5answers
2k 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' …
4
votes
6answers
270 views
What are some of the other old / researched techniques that are not in the main stream yet?
With the recent announcement of Google Wave I started looking into how it worked, I then found that work and research on Real-time Collaborative Editing Systems has been around for …
