lotus/storage/sealer
Rod Vagg d8fb28e36d AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
2024-03-22 07:00:28 +01:00
..
commitment sealer: Utils for reading commitments from cache + unit tests 2023-11-14 15:20:58 +01:00
docs
ffiwrapper Merge branch 'master' into feat/sturdypost 2023-12-01 12:31:40 -06:00
fr32 fix: lint 2023-11-28 19:22:26 -06:00
fsutil
mock mock sealer: crypto/rand is fine here, I think.. 2023-12-01 23:06:09 +01:00
partialfile
proofpaths fix: cachefiles: add SynthPorep layers 2023-10-17 09:19:46 -04:00
sealtasks
storiface AggregateProofType nil when doing batch updates 2024-03-22 07:00:28 +01:00
tarutil
cbor_gen.go AggregateProofType nil when doing batch updates 2024-03-22 07:00:28 +01:00
cgroups_linux.go
cgroups.go
faults.go
manager_calltracker.go
manager_post.go
manager_test.go Merge branch 'master' into feat/sturdypost 2023-12-01 12:31:40 -06:00
manager.go master-to-sturdy 2023-09-21 10:37:02 -05:00
piece_provider_test.go Merge branch 'master' into feat/sturdypost 2023-12-01 12:31:40 -06:00
piece_provider.go piecereader: address review 2023-05-25 16:05:36 +02:00
piece_reader.go piecereader: address review 2023-05-25 16:05:36 +02:00
README.md
request_queue_test.go
request_queue.go
roprov.go master-to-sturdy 2023-09-21 10:37:02 -05:00
sched_assigner_common.go
sched_assigner_darts.go
sched_assigner_spread_tasks.go
sched_assigner_spread.go
sched_assigner_utilization.go
sched_post.go
sched_resources.go
sched_test.go fix: miner: Don't require db config when it's not used 2023-11-23 16:28:39 +01:00
sched_worker_cache.go
sched_worker.go
sched.go
selector_alloc.go
selector_existing.go
selector_move.go
selector_task.go
stats.go
teststorage_test.go
testworker_test.go
worker_calltracker.go
worker_local_test.go
worker_local.go Merge pull request #11550 from filecoin-project/fix/worker-multipart-post-err 2024-01-04 16:45:38 +01:00
worker_tracked.go

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 paths

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 5 types of sector files - unsealed, sealed, cache, update and update-cache.

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

paths.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

paths.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.

paths.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: