lotus/extern/sector-storage
2021-11-26 17:40:53 +01:00
..
docs keep storage-fsm (renamed to storage-sealing) and sector-storage in extern. 2020-08-17 14:26:18 +01:00
ffiwrapper Update proofs to v10.0.0 2021-10-01 18:38:27 +02:00
fr32 bypass task scheduler for reading unsealed pieces 2021-06-07 15:02:04 +05:30
fsutil add missing build constraint to statfs_unix.go 2021-10-18 16:29:01 +02:00
mock dagstore mount: Add random access support 2021-11-26 17:40:53 +01:00
partialfile do not depend on filecoin-ffi in api package 2021-06-07 11:51:25 +02:00
sealtasks remove read task type and run gen and docsgen 2021-06-07 15:03:06 +05:30
stores storage: Use 1M buffers for Tar transfers 2021-11-24 20:08:37 +01:00
storiface Show prepared tasks in sealing jobs 2021-10-18 18:44:56 +02:00
tarutil storage: Use 1M buffers for Tar transfers 2021-11-24 20:08:37 +01:00
cbor_gen.go integrate DAG store and CARv2 in deal-making (#6671) 2021-08-16 23:34:32 +01:00
faults.go fix: don't check for t_aux when proving 2021-08-09 11:07:35 -07:00
manager_calltracker.go Collect worker task metrics 2021-03-05 12:48:17 +01:00
manager_test.go unit tests for the remote store Reader 2021-06-07 15:02:52 +05:30
manager.go Don't remove sector data when moving data into a shared path 2021-10-11 21:11:38 +02:00
piece_provider_test.go Don't remove sector data when moving data into a shared path 2021-10-11 21:11:38 +02:00
piece_provider.go dagstore mount: Add random access support 2021-11-26 17:40:53 +01: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 Making sealing logic work with multiple seal proof types 2020-11-16 19:03:30 +01:00
resources.go remove read task type and run gen and docsgen 2021-06-07 15:03:06 +05:30
roprov.go Making sealing logic work with multiple seal proof types 2020-11-16 19:03:30 +01:00
sched_resources.go wip improve scheduling of ready work 2021-10-03 10:38:08 +02:00
sched_test.go add a unit test. 2021-06-21 20:49:24 +01:00
sched_worker.go Track prepared work 2021-10-18 18:44:56 +02:00
sched.go Block work in tracked worker before it is started 2021-10-18 18:44:56 +02:00
selector_alloc.go sched: use more letters for variables 2020-10-28 14:23:38 +01:00
selector_existing.go sched: use more letters for variables 2020-10-28 14:23:38 +01:00
selector_task.go Update selector_task.go 2020-11-03 09:20:48 +08:00
stats.go Show prepared tasks in sealing jobs 2021-10-18 18:44:56 +02:00
teststorage_test.go make sector-storage compile 2020-11-16 19:03:30 +01:00
testworker_test.go Add error codes to worker return 2020-11-17 16:17:55 +01:00
worker_calltracker.go sectorstorage: calltracker: work around cbor-gen bytearray len limit 2020-09-23 00:29:10 +02:00
worker_local.go Don't remove sector data when moving data into a shared path 2021-10-11 21:11:38 +02:00
worker_tracked.go make gen 2021-10-19 11:13:23 +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.

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: