etcd-fs

Use etcd as a filesystem

  • Owner: xetorthio/etcd-fs
  • Platform:
  • License:: Apache License 2.0
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

etcd-fs

Use etcd as a filesystem

THis IS STILL WORK IN PROGRESS

Why using etcd as a fileystem?

Because filesystem API is super stable, widely known and supported, and very simple.

Also because it seems like this can be useful for lots of companies out there that have already deployed apps that read some configuration file from local filesystem and would love to load these configuration files to something like etcd and ensure a consistent view of across a cluster of nodes.

How does it work?

Etcd-fs uses go-fuse and go-etcd, two nice modules to create fuse filesystem in go and use etcd from go.

Every file maps to a key in etcd. Every directory maps to a directory in etcd.
The content of every file maps to the value of the key in etcd.

When you mount the filesystem, it will mount the root directory of etcd.

How do I install it?

Clone the project and build it.

make build

This generates an executable file etcdfs. You can mount etcd as a filesystem by running etcdfs ETCD_ENDPOINT MOUNT_PATH. For example:

./etcds /tmp/foobar http://localhost:4001

Then you can access /tmp/foobar and use etcd as a filesystem.

To unmount it:

fusermount -u /tmp/foobar

What is supported?

Basic filesystem operations like:

  • Reading/Writing files
  • Creating/Deleting files
  • Creating/Deleting directories

What is missing?

  • Lots of optimizations
  • Lots of error handling
  • Specifiying more options to etcd connection
  • Mount filesystem to some node in etcd, not necessarily the root
  • Use watch to get updates from etcd and maybe change file modification time (????)

Main metrics

Overview
Name With Ownerxetorthio/etcd-fs
Primary LanguageGo
Program languageGo (Language Count: 2)
Platform
License:Apache License 2.0
所有者活动
Created At2014-03-17 20:00:07
Pushed At2018-11-04 16:00:16
Last Commit At2017-05-17 19:07:59
Release Count0
用户参与
Stargazers Count184
Watchers Count20
Fork Count32
Commits Count23
Has Issues Enabled
Issues Count11
Issue Open Count9
Pull Requests Count1
Pull Requests Open Count2
Pull Requests Close Count3
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private