Hadoop Distributed File System (HDFS) is the primary storage system used by Hadoop applications. HDFS creates multiple replicas of data blocks and distributes them on compute nodes throughout a cluster to enable reliable, extremely rapid computations.
14
votes
9answers
6k views
Scalable Image Storage
I'm currently designing an architecture for a web-based application that should also provide some kind of image storage. Users will be able to upload photos as one of the key feature of the service. ...
6
votes
5answers
447 views
Are there any existing batch log file aggregation solutions?
I wish to export from multiple nodes log files (in my case apache access and error logs) and aggregate that data in batch, as a scheduled job. I have seen multiple solutions that work with streaming ...
5
votes
1answer
155 views
Looking for overall review on Hadoop
I am looking for some performance review on Hadoop (300-600 boxes cluster, commodity hardware), especially on the following aspects:
High concurrent read & write
Web crawling
Mapreduce, parallel ...
5
votes
3answers
245 views
Is there any distributed file system which runs on Windows except Hadoop?
I'm desperate to find any DFS which supports Windows. The only such DFS is Hadoop HDFS but it's very hard to deploy it other big number of Windows machines because it requires Cygwin + SSH.
Almost ...
4
votes
1answer
96 views
Programmatic equivalent of 'hadoop fs -tail -f'
I want to tail an hdfs file programmatically using the org.apache.hadoop.fs.FileSystem API.
Is there a way to tail the file using the API in a way which is equivalent to hadoop fs -tail -f command?
4
votes
1answer
404 views
MapReduce shuffle/sort method
Somewhat of an odd question, but does anyone know what kind of sort MapReduce uses in the sort portion of shuffle/sort? I would think merge or insertion (in keeping with the whole MapReduce ...
4
votes
1answer
281 views
HDFS says file is still open, but process writing to it was killed
I'm new to hadoop and I've spent the past couple hours trying to google this issue, but I couldn't find anything that helped. My problem is HDFS says the file is still open, even though the process ...
4
votes
3answers
1k views
CouchDB, HDFS, HBase or which is right for my situation?
This question is regarding data storage systems such as CouchDB, HDFS and HBase, specifically, which is right.
I am looking at making a simple and customized Document Management System for my ...
4
votes
2answers
1k views
CloudStore vs. HDFS
Does anyone have any familiarity with working with both CloudStore and HDFS. I am interested to see how far CloudStore has been scaled and how heavily it has been used in production. CloudStore seems ...
3
votes
2answers
58 views
hadoop dfs -copyFromLocal src dest
My question is that why do we need to specify a dest. The file which I am putting into hdfs does not necessarily lie entirely on the local machine, so what is the use of specifying dest in the ...
3
votes
2answers
132 views
Running Hadoop MapReduce, is it possible to call external executables outside of HDFS
Within my mapper I'd like to call external software installed on the worker node outside of the HDFS. Is this possible? What is the best way to do this?
I understand that this may take some of the ...
3
votes
1answer
164 views
Indexing a HDFS sequence file
What is the best library/way of indexing a very large sequence file (millions of key/value pairs where each value can be of a different length so you cannot have a random access scheme)?
Thanks for ...
3
votes
4answers
583 views
Processing large set of small files with Hadoop
I am using Hadoop example program WordCount to process large set of small files/web pages (cca. 2-3 kB). Since this is far away from optimal file size for hadoop files, the program is very slow. I ...
3
votes
1answer
249 views
FileInputStream for a generic file System
I have a file that contains java serialized objects like "Vector". I have stored this file over Hadoop Distributed File System(HDFS). Now I intend to read this file (using method readObject) in one of ...
2
votes
1answer
44 views
+50
javax.management.InstanceAlreadyExistsException when using hadoop MiniDFSCluster
I am using MiniDFSCluster to do junit tests.
Now I just start and close the cluster, the junit runs green.
But I get this exception:
javax.management.InstanceAlreadyExistsException: MXBean already ...
2
votes
3answers
102 views
Hadoop: how to access (many) photo images to be processed by map/reduce?
I have 10M+ photos saved on the local file system. Now I want to go through each of them to analyze the binary of the photo to see if it's a dog. I basically want to do the analysis on a clustered ...
2
votes
2answers
54 views
Best way to process line at a time data from hdfs file from within CPython (without using stdin)?
I would like to use CPython in a hadoop streaming job that needs access to supplementary information from a line-oriented file kept in a hadoop file system. By "supplementary" I mean that this file is ...
2
votes
2answers
124 views
HIVE/HDFS for realtime storage of sensor data on a massive scale?
I am evaluating sensor data collection systems with the following requirements,
1 million endpoints sending in 100 bytes of data every minute (as a
time series).
Basically millions of small writes ...
2
votes
3answers
94 views
HDFS distributed reads without Map/Reduce
Is it possible to achieve distributed reads from HDSF cluster using an HDFS client on one machine?
I have carried out an experiment with a cluster consisting of 3 data nodes (DN1,DN2,DN3). Then I run ...
2
votes
0answers
107 views
MESOS+HADOOP+SPARK: How to correctly setup?
I wish to run spark map/reduce jobs on a hadoop cluster that uses cloudera CDH3.
I got the latest mesos snapshop from the apache repo using:
git clone git://git.apache.org/mesos.git
I had some ...
2
votes
0answers
153 views
How to read/write “binary” files form Hadoop/HDFS using RUBY gem ganapati
I am using the Ganapati Ruby gem to read/write files from a Hadoop HDFS cluster as pointed out in this question - How to write and read files in/from Hadoop HDFS using Ruby?
But this works properly ...
2
votes
2answers
292 views
Apache Pig permissions issue
I'm attempting to get Apache Pig up and running on my Hadoop cluster, and am encountering a permissions problem. Pig itself is launching and connecting to the cluster just fine- from within the Pig ...
2
votes
2answers
208 views
What is the maximum number of files allowed in a HDFS directory?
What is the maximum number of files and directories allowed in a HDFS (hadoop) directory?
2
votes
2answers
754 views
Moving files in Hadoop using the Java API?
I want to move files around in HDFS using the Java APIs. I cannot figure out a way to do this. The FileSystem class only seems to want to allow moving to and from the local file system.. but I want ...
2
votes
1answer
453 views
Hadoop HDFS maximum file size
A colleague of mine thinks that HDFS has no maximum file size, i.e., by partitioning into 128 / 256 meg chunks any file size can be stored (obviously the HDFS disk has a size and that will limit, but ...
2
votes
1answer
513 views
How can I troubshoot this Hadoop filesystem installation error?
I'm trying to install Hadoop on a non-Cloudera Ubuntu test image. Everything seems to have been going well until I ran ./bin/start-all.sh. The name node never comes up so I can't even run a hadoop fs ...
2
votes
1answer
1k views
Where does Hive store its files in HDFS?
I'm relatively new to Hadoop and Hive, so this may be a very stupid question, and yet I just spent the better part of the day looking for an answer. I need to find the mapping between Hive tables and ...
2
votes
2answers
345 views
Which is the easiest way to combine small HDFS blocks?
I'm collecting logs with Flume to the HDFS. For the test case I have small files (~300kB) because the log collecting process was scaled for the real usage.
Is there any easy way to combine these ...
2
votes
4answers
2k views
Problem with copying local data onto HDFS on a Hadoop cluster using Amazon EC2/ S3
I have setup a Hadoop cluster containing 5 nodes on Amazon EC2. Now, when i login into the Master node and submit the following command
bin/hadoop jar <program>.jar <arg1> <arg2> ...
2
votes
1answer
311 views
Where HDFS stores files locally by default?
I am running hadoop with default configuration with one-node cluster, and would like to find where HDFS stores files locally.
Any ideas?
Thanks.
1
vote
2answers
25 views
about hadoop filesystem transferFromLocalFile
I am writing code to transfer files to hadoop hdfs parallel. So I have many threads calling filesystem.copyFromLocalFile.
I think the cost of opening a filesystem is not small, so I just have one ...
1
vote
2answers
31 views
Access hdfs from outside hadoop
I want to run some executables outside of hadoop (but on the same cluster) using input files that are stored inside HDFS.
Do these files need to be copied locally to the node? or is there a way to ...
1
vote
2answers
32 views
About hadoop hdfs filesystem rename
I am storing lots of data into hdfs. And I need to move the files from one folder to another.
May I ask generally how much is the cost of filesystem's rename method?
Say I have to move terabytes of ...
1
vote
1answer
48 views
Hadoop. About file creation in HDFS
I read that whenever the client needs to create a file in HDFS (The Hadoop Distributed File System), client's file must be of 64mb. Is that true? How can we load a file in HDFS which is less than 64 ...
1
vote
1answer
23 views
How to save a file in MapR HDFS using Ruby
Is there a way to save a file in HDFS using MapR distribution of Hadoop from Ruby?
Apparently, there's a Thrift API called thriftfs that makes it possible to communicate with HDFS from clients but ...
1
vote
1answer
39 views
Hadoop - how are map-reduce tasks know which part of a file to handle?
I've been starting to learn hadoop, and currently I'm trying to process log files that are not too well structured - in that the value I normally use for the M/R key is typiclly found at the top of ...
1
vote
1answer
33 views
About transfer file in hdfs
I need to transfer files from one hdfs folder to another hdfs folder in java code.
May I ask is there api that we can call to transfer files among hdfs paths?
Also I'd like to ask is there anyway to ...
1
vote
1answer
42 views
Hadoop: Example process to generating a SequenceFile with image binaries to be processed in map/reduce
Following Hadoop: how to access (many) photo images to be processed by map/reduce? question, where orangeoctopus provides a reasonable direction to load the image binaries and collect them into ...
1
vote
2answers
39 views
How to set HDFS directory times for unit testing
I'm trying to unit test a Java program that uses Hadoop's HDFS programmatic interface. I need to create directories and set their times to make sure that my program will "clean up" the directories at ...
1
vote
1answer
109 views
Import data from HDFS to HBase (cdh3u2)
I have Installed hadoop and hbase cdh3u2. In hadoop i have a file at the path /home/file.txt. it has the data like
one,1
two,2
three,3
I want to import this file into hbase. in that, the first ...
1
vote
1answer
45 views
Small files and HDFS blocks
Does a block in Hadoop Distributed File System store multiple small files, or a block stores only 1 file?
1
vote
1answer
43 views
Adding different files on different hadoop nodes
When we add files with
bin/hadoop dfs -put input_folder input
by this command in HDFS.
When we add files , they are replicated to all the nodes.
Is there any way by which we can distribute ...
1
vote
1answer
59 views
Hadoop: Performance degradation when increasing block sizes?
Has anyone seen any performance degradation when increasing the block size in Hadoop? We're setting up a cluster and we're expecting a large amount of data (100s of GBs) coming in per day that we need ...
1
vote
1answer
219 views
Under-replicated blocks count is inaccurate, buy why?
I am getting wildly varying reports of under-replicated blocked. I am wondering what's causing this. hadoop dfsadmin -metasave reports ~232,000 MISSING blocks awaiting replication. How do I fix this? ...
1
vote
1answer
68 views
HDFS block size and file size problems file smaller than block size
I have a HDFS cluster running on several linux machines with default block size of 64MB, if I store a file of size 1MB, will it occupy 64MB storage on my linux machine?
Similarly, if I store a file ...
1
vote
1answer
194 views
How can I access hadoop via the hdfs protocol from java?
I found a way to connect to hadoop via hftp, and it works fine, (read only) :
uri = "hftp://172.16.xxx.xxx:50070/";
System.out.println( "uri: " + uri );
Configuration conf = ...
1
vote
2answers
213 views
HDFS replication factor
When I'm uploading a file to HDFS, if I set the replication factor to 1 then the file splits gonna reside on one single machine or the splits would be distributed to multiple machines across the ...
1
vote
1answer
205 views
How do I copy files from S3 to Amazon EMR HDFS?
I'm running hive over EMR,
and need to copy some files to all EMR instances.
one way as I understand is just to copy files to the local file system on each node
the other is to copy the files to ...
1
vote
2answers
282 views
Does HDFS encrypt or compress the data while storing?
When I put a file into HDFS, for example
$ ./bin/hadoop/dfs -put /source/file input
Is the file compressed while storing?
Is the file encrypted while storing? Is there a config setting that we can ...
1
vote
2answers
79 views
How does hive/hadoop assures that each mapper works on data that is local for it?
2 basic questions that trouble me:
How can I be sure that each of the 32 files hive uses to store my tables sits on its unique machine?
If that happens, how can I be sure that if hive creates 32 ...