Reference implementation of the Filecoin protocol, written in Go
Go to file
2020-08-04 00:37:49 +02:00
.circleci update to v26 proofs 2020-05-08 13:08:02 -07:00
docs readme: Add a section about architecture 2020-04-06 21:44:45 +02:00
extern Bump fil-commcid and filecoin-ffi deps 2020-07-16 23:00:22 +02:00
ffiwrapper Fix tests 2020-07-30 22:38:05 +02:00
fr32 specs-actors v0.6 2020-06-15 14:32:17 +02:00
fsutil Fix build on osx 2020-07-09 20:43:19 +02:00
mock mock: Make it possible to unfail sectors 2020-08-03 20:49:04 +02:00
sealtasks Add api to get active tasks 2020-07-21 20:01:25 +02:00
stores Merge pull request #84 from jackoelv/patch-1 2020-07-30 12:20:03 +02:00
storiface Add api to get active tasks 2020-07-21 20:01:25 +02:00
tarutil nolint the existing linting errors 2020-04-01 16:18:20 -07:00
zerocomm Bump fil-commcid and filecoin-ffi deps 2020-07-16 23:00:22 +02:00
.gitignore ignore build artifacts 2020-05-01 09:18:57 -07:00
.gitmodules Update imports; Add build scripts 2020-03-28 00:21:36 +01:00
faults.go Merge remote-tracking branch 'origin/master' into next 2020-07-10 10:37:27 +02:00
go.mod Update go-bitfield and specs-actors 2020-07-30 01:00:24 -04:00
go.sum Update go-bitfield and specs-actors 2020-07-30 01:00:24 -04:00
LICENSE-APACHE Repo setup 2020-03-28 00:02:52 +01:00
LICENSE-MIT Repo setup 2020-03-28 00:02:52 +01:00
localworker.go Try to not unseal in ReadPiece when don't need to 2020-07-30 22:03:43 +02:00
Makefile Add Makefile 2020-04-27 13:43:59 +02:00
manager_test.go remote: Limit parallel fetches 2020-07-24 16:43:46 +02:00
manager.go Try to not unseal in ReadPiece when don't need to 2020-07-30 22:03:43 +02:00
parameters.json v27 parameters 2020-06-09 01:02:44 +02:00
README.md readme: Add a section about architecture 2020-04-06 21:44:45 +02:00
request_queue_test.go container/heap doesn't provide sorted array 2020-07-27 13:20:18 +02:00
request_queue.go gofmt 2020-07-27 13:21:36 +02:00
resources.go Adjust resource table for filecoin-ffi 0.30.1 2020-06-30 19:26:56 +02:00
roprov.go specs-actors v0.6 2020-06-15 14:32:17 +02:00
sched_resources.go sched: implement runWorker 2020-07-09 15:10:06 +02:00
sched_test.go Fix tests 2020-07-30 22:38:05 +02:00
sched_watch.go fix worker setup/cleanup raciness 2020-07-17 12:59:12 +02:00
sched.go Fix some locking issues 2020-08-03 14:18:11 +02:00
selector_alloc.go gofmt 2020-07-16 23:41:15 +02:00
selector_existing.go specs-actors v0.6 2020-06-15 14:32:17 +02:00
selector_task.go specs-actors v0.6 2020-06-15 14:32:17 +02:00
stats.go Add api to get active tasks 2020-07-21 20:01:25 +02:00
testworker_test.go Fix tests 2020-07-30 22:38:05 +02:00
work_tracker.go Try to not unseal in ReadPiece when don't need to 2020-07-30 22:03:43 +02:00

sector-storage

CircleCI standard-readme compliant

a concrete implementation of the specs-storage interface

The sector-storage project provides a implementation-nonspecific reference implementation of the specs-storage interface.

Architecture

high-level architecture

Manager

Manages is the top-level piece of the storage system gluing all the other pieces together. It also implements scheduling logic.

package stores

This package implements the sector storage subsystem. Fundamentally the storage is divided into paths, each path has it's UUID, and stores a set of sector 'files'. There are currently 3 types of sector files - unsealed, sealed, and cache.

Paths can be shared between nodes by sharing the underlying filesystem.

stores.Local

The Local store implements SectorProvider for paths mounted in the local filesystem. Paths can be shared between nodes, and support shared filesystems such as NFS.

stores.Local implements all native filesystem-related operations

stores.Remote

The Remote store extends Local store, handles fetching sector files into a local store if needed, and handles removing sectors from non-local stores.

stores.Index

The Index is a singleton holding metadata about storage paths, and a mapping of sector files to paths

LocalWorker

LocalWorker implements the Worker interface with ffiwrapper.Sealer and a store.Store instance

License

The Filecoin Project is dual-licensed under Apache 2.0 and MIT terms: