FrostFS is a decentralized distributed object storage integrated with the NEO Blockchain.
Find a file
Leonard Lyubich e48f8a189e [#142] metabase: Replace exclusive select with the inclusive one
The previous metabase implementation took an exclusionary approach: filters
narrowed the set of all objects to those that match all filters. An
inclusive approach is presented. In it, when traversing the indexed headers,
the object becomes a candidate for selection. If at least one of the
subsequent filters is not passed, the object ceases to be a candidate. At
the end of the traversal, the remaining candidates are added to the
resulting sample. The borderline case of no filters is handled in a special
way: all stored objects are added to the resulting selection.

Presented inclusive approach showed better performance in most scenarios
(although not all).

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2020-11-03 18:42:32 +03:00
.github [#100] Add GH Actions for DCO, tests and linter 2020-10-19 08:53:34 +03:00
cmd [#136] cmd/neofs-node: Use new metabase in app 2020-11-03 18:42:32 +03:00
misc cli: Add empty neofs-cli app structure 2020-10-02 11:25:35 +03:00
pkg [#142] metabase: Replace exclusive select with the inclusive one 2020-11-03 18:42:32 +03:00
.dockerignore Initial commit 2020-07-10 17:45:00 +03:00
.gitattributes build: Better GitHub handling of auto-generated code 2020-08-04 12:17:09 +03:00
.gitignore build: Simplify test/lint related targets 2020-08-04 12:17:09 +03:00
.golangci.yml Initial commit 2020-07-10 17:45:00 +03:00
CHANGELOG.md Add Inner Ring code 2020-07-24 17:07:37 +03:00
CONTRIBUTING.md doc: Add development workflow notes 2020-08-03 12:41:16 +03:00
CREDITS.md Add Inner Ring code 2020-07-24 17:07:37 +03:00
Dockerfile.cli cli: Add empty neofs-cli app structure 2020-10-02 11:25:35 +03:00
Dockerfile.ir Add Inner Ring code 2020-07-24 17:07:37 +03:00
Dockerfile.storage build: Simplify Docker image build 2020-08-04 12:17:09 +03:00
go.mod [#141] Fix double sidechain GAS emission on asset mint 2020-11-03 16:28:01 +03:00
go.sum Update go.sum 2020-11-03 14:14:38 +03:00
LICENSE Initial commit 2020-07-10 17:45:00 +03:00
Makefile Separate test dependency install 2020-10-19 08:53:34 +03:00
README.md Add Inner Ring code 2020-07-24 17:07:37 +03:00

NeoFS

NeoFS is a decentralized distributed object storage integrated with the NEO Blockchain.


Report GitHub release (latest SemVer) License

Overview

NeoFS Nodes are organized in peer-to-peer network that takes care of storing and distributing user's data. Any Neo user may participate in the network and get paid for providing storage resources to other users or store his data in NeoFS and pay a competitive price for it.

Users can reliably store object data in the NeoFS network and have a transparent data placement process due to decentralized architecture and flexible storage policies. Each node is responsible for executing the storage policies that the users select for geographical location, reliability level, number of nodes, type of disks, capacity, etc. Thus, NeoFS gives full control over data to users.

Deep Neo Blockchain integration allows NeoFS to be used by dApp directly from NeoVM on the Smart Contract code level. This way dApps are not limited to on-chain storage and can manipulate large amounts of data without paying a prohibitive price.

NeoFS has native gRPC API and popular protocol gates such as AWS S3, HTTP, FUSE and sFTP allowing developers to easily integrate applications without rewriting their code.

Contributing

Feel free to contribute to this project after reading the contributing guidelines.

Before starting to work on a certain topic, create an new issue first, describing the feature/topic you are going to implement.

Credits

NeoFS is maintained by NeoSPCC with the help and contributions from community members.

Please see CREDITS for details.

License