Giter Club home page Giter Club logo

eafs's Introduction

EAFS
====

Disclaimer: This filesystem is _not_ ready for production. Please feel free to contribute in making it rock solid :)

EAFS is a distributed filesystem in python, aiming simplicity and very extendable. It is composed of 3 main parts:

- Master Servers
  Keep the meta data in SQL (currently sqlite for simplicity but support for mysql is planned)
  Manage chunks allocation
  Sample start command
    python eafs-master.py --host 192.168.0.10 --rootfs /tmp --init 1
    note: "--init 1" will erase any previous start and create a new database

- Chunk Servers
  Store chunks. You can connect as many as you want, the master will automatically store chunks on them.
  Sample start command:
    python eafs-chunkserver.py --host 192.168.0.10 --master 192.168.0.10:6799

- Clients
  Clients first connect to a master server for the meta data then directly to the chunk servers for the real data.
  Sample start command for the FUSE client:
    python eafs-fuse.py --master 192.168.0.10:6799 --mount /mnt


Requirements
------------

 - python-apsw
 - fuse.py (http://code.google.com/p/fusepy/ or http://php.lunasys.fr/fuse.py)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.