4
votes
1answer
70 views
Is HBase meaningful if it’s not running in a distributed environment?
I'm building an index of data, which will entail storing lots of triplets in the form (document, term, weight). I will be storing up to a few million such rows. Currently I'm doing …
6
votes
4answers
667 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
50 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 …
0
votes
1answer
14 views
hadoop- determine if a file is being written to
Is there a way to determine if a file in hadoop is being written to? eg- I have a process that puts logs into hdfs. I have another process that monitors for the existence of new …
1
vote
2answers
118 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 …
0
votes
1answer
25 views
Looking for a good HBase tutorial
I'm looking for a good and tested HBase tutorial, where I can find one?
0
votes
2answers
46 views
How to parallelize execution on remote systems
What's a good method for assigning work to a set of remote machines? Consider an example where the task is very CPU and RAM intensive, but doesn't actually process a large dataset …
1
vote
2answers
90 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 …
0
votes
1answer
28 views
Building Apache Hive - impossible to resolve dependencies
I am trying out the Apache Hive as per http://wiki.apache.org/hadoop/Hive/GettingStarted and am getting this error from Ivy:
Downloaded file size doesn't match expected Content Le …
0
votes
1answer
33 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
169 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 …
1
vote
3answers
87 views
Setting up a (Linux) Hadoop cluster
Do you need to set up a Linux cluster first in order to setup a Hadoop cluster ?
0
votes
3answers
71 views
Writing data to Hadoop
I need to write data in to Hadoop (HDFS) from external sources like a windows box. Right now I have been copying the data onto the namenode and using HDFS's put command to ingest i …
2
votes
4answers
95 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
1answer
38 views
Is this a suitable (or possible) use of HBase?
I want to use HBase as a store where I can push in a few million entries of the format {document => {term => weight}} e.g. "Insert term X into document Y with weight Z" and t …
