Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.05 KB

README.md

File metadata and controls

32 lines (24 loc) · 1.05 KB

PulseFS Build Status

PulseFS is an HTTP-based replicated filestore for distributed coordination. Its features include:

  • Sequentially consistent All the replicas see updates in the same order.
  • Ephemeral files and transient directories for implementing distributed coordination primitives such as locks and barriers.
  • Sequential files for ordering writes.
  • Dynamic cluster reconfiguration Add/remove servers without restarting the cluster.
  • Atomic updates Atomically execute multiple operations.

Getting Started

Compilation

mvn clean compile assembly:single

Usage

To start a cluster, run:

./bin/pulsefs -port 8080 -addr localhost:5000
./bin/pulsefs -port 8081 -addr localhost:5001 -join localhost:5000
./bin/pulsefs -port 8082 -addr localhost:5002 -join localhost:5000