lotus/extern/sector-storage
Steven Allen 83dfc460d4 fix race in unseal
1. Remove an invalid error check.
2. Make sure to shadow the outer error type from within the goroutine instead or
reading the outer type.

This may have been causing test issues (caught in TestMinerAllInfo with the race
detector).
2020-10-09 15:39:41 -07:00
..
docs keep storage-fsm (renamed to storage-sealing) and sector-storage in extern. 2020-08-17 14:26:18 +01:00
ffiwrapper fix race in unseal 2020-10-09 15:39:41 -07:00
fr32 Update to specs v0.9.6 2020-09-07 15:48:41 -04:00
fsutil Lint everything 2020-08-20 20:46:36 -07:00
mock gofmt, mod tidy 2020-09-10 22:07:20 +02:00
sealtasks sealing sched: Give more priority to tasks (re)moving data 2020-08-27 23:29:39 +02:00
stores lotus-miner: Cleanup storage attach helptext a bit 2020-10-03 11:30:22 +02:00
storiface Update to specs v0.9.6 2020-09-07 15:48:41 -04:00
tarutil Lint everything 2020-08-20 20:46:36 -07:00
zerocomm Update to specs v0.9.6 2020-09-07 15:48:41 -04:00
faults.go Update to specs v0.9.6 2020-09-07 15:48:41 -04:00
localworker.go Add --no-swap flag for worker 2020-09-30 14:23:35 +08:00
manager_test.go Update to specs v0.9.6 2020-09-07 15:48:41 -04:00
manager.go feat(manager): less restrictive storage lock 2020-09-14 18:48:14 -07:00
README.md keep storage-fsm (renamed to storage-sealing) and sector-storage in extern. 2020-08-17 14:26:18 +01:00
request_queue_test.go keep storage-fsm (renamed to storage-sealing) and sector-storage in extern. 2020-08-17 14:26:18 +01:00
request_queue.go sealing sched: Give more priority to tasks (re)moving data 2020-08-27 23:29:39 +02:00
resources.go Lower PC2 memory requirements 2020-10-01 00:54:53 +02:00
roprov.go Update to specs v0.9.6 2020-09-07 15:48:41 -04:00
sched_resources.go sched: Allow some single-thread tasks to run in parallel with PC2/C2 2020-10-01 00:28:44 +02:00
sched_test.go Fix storage manager tests 2020-10-01 00:54:34 +02:00
sched_watch.go keep storage-fsm (renamed to storage-sealing) and sector-storage in extern. 2020-08-17 14:26:18 +01:00
sched.go Update to specs v0.9.6 2020-09-07 15:48:41 -04:00
selector_alloc.go Update to specs v0.9.6 2020-09-07 15:48:41 -04:00
selector_existing.go Update to specs v0.9.6 2020-09-07 15:48:41 -04:00
selector_task.go Update to specs v0.9.6 2020-09-07 15:48:41 -04:00
stats.go sectorstorage: Compact assigned windows 2020-08-28 18:26:38 +02:00
testworker_test.go Update to specs v0.9.6 2020-09-07 15:48:41 -04:00
work_tracker.go Update to specs v0.9.6 2020-09-07 15:48:41 -04: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.

Disclaimer

Please report your issues with regards to sector-storage at the lotus issue tracker

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: