Core Concepts and Architecture of the Hadoop Distributed File System
HDFS Overview
HDFS (Hadoop Distributed File System) is a distributed storage system designed to handle massive datasets, typically in terabytes or petabytes. It forms the storage layer of the Hadoop ecosystem, enabling applications to work with large-scale data using a unified interface similar to a conventional file system. HDFS streams data d ...
Posted on Sun, 07 Jun 2026 16:15:38 +0000 by MFHJoe
Understanding GlusterFS: A Distributed File System Solution
Introduction to GlusterFS
GlusterFS is an open-source distributed file system composed of storage servers, clients, and optional NFS/Samba storage gateways. Unlike traditional distributed file systems that rely on metadata servers, GlusterFS operates without a metadata server component, enhancing performance, reliability, and stability.
Tradi ...
Posted on Wed, 03 Jun 2026 17:45:18 +0000 by Qense
FastDFS File Upload Implementation in Java
This guide covers the implementation of file upload and download operations using FastDFS with Java client.
Prerequisites
Before proceeeding, ensure you have FastDFS server deployed and running. You need to obtain the fastdfs-client-java library either by downloading the pre-built JAR or building from source.
Configuration Setup
Create a client ...
Posted on Sat, 09 May 2026 22:21:32 +0000 by kungfu71186