FrostFS is a decentralized distributed object storage integrated with the NEO Blockchain.
 
 
 
Go to file
Dmitrii Stepanov a531eaf8bc [#661] blobstor: Add Rebuild implementation
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
2023-12-07 15:37:32 +03:00
.docker [#581] Bump required go version to go1.20 2023-08-09 10:16:48 +00:00
.forgejo/workflows [#632] .forgejo: Print --version 2023-08-29 12:41:45 +03:00
.github Add to Possible Solutions 2023-03-21 15:41:20 +03:00
.woodpecker [#171] Remove unit tests from pipeline 2023-03-24 10:50:11 +03:00
cmd [#661] blobovniczatree: Use .db extension for db files 2023-12-07 15:37:32 +03:00
config [#715] node: Unify config parameter names 2023-11-22 17:13:50 +03:00
debian [#659] debian: Remove nspcc email 2023-08-30 08:29:26 +00:00
docs [#715] node: Unify config parameter names 2023-11-22 17:13:50 +03:00
internal [#661] blobstor: Add Rebuild implementation 2023-12-07 15:37:32 +03:00
misc [#1592] Remove debug builds 2022-07-14 10:39:51 +03:00
pkg [#661] blobstor: Add Rebuild implementation 2023-12-07 15:37:32 +03:00
scripts/export-metrics [#772] node: Apply gofumpt 2023-10-31 17:03:03 +03:00
.dockerignore [#144] Don't copy cache inside Docker environment 2023-03-17 10:36:50 +03:00
.gitattributes [#246] .gitattributes: Do not show diff for go.sum 2023-04-14 06:02:04 +00:00
.gitignore [#53] Fix dirty in version 2023-02-16 11:10:43 +03:00
.gitlint [#171] Syncrhonize pre-commit settings across FrostFS repos 2023-03-24 10:43:55 +03:00
.golangci.yml [#792] makefile: Fix protoc and staticcheck versions 2023-11-09 10:09:13 +00:00
.pre-commit-config.yaml [#837] .pre-commit: Update hook versions 2023-12-06 11:07:10 +00:00
CHANGELOG.md [#581] Bump required go version to go1.20 2023-08-09 10:16:48 +00:00
CONTRIBUTING.md [#511] docs: Remove GitHub mentions from CONTRIBUTING.md 2023-07-18 13:24:02 +00:00
CREDITS.md [#83] pre-commit: Add initial configuration 2023-03-13 07:07:29 +00:00
LICENSE Initial commit 2020-07-10 17:45:00 +03:00
Makefile [#792] makefile: Fix protoc and staticcheck versions 2023-11-09 10:09:13 +00:00
README.md [#581] Bump required go version to go1.20 2023-08-09 10:16:48 +00:00
VERSION Release v0.36.0 2023-04-12 16:57:02 +03:00
go.mod [#837] go.mod: Update dependencies 2023-12-06 11:07:10 +00:00
go.sum [#837] go.mod: Update dependencies 2023-12-06 11:07:10 +00:00
help.mk [#1578] Minor Makefile fixes 2022-07-06 10:00:19 +03:00

README.md

FrostFS

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


Report GitHub release (latest SemVer) License

Overview

FrostFS Nodes are organized in a 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 their data in FrostFS and pay a competitive price for it.

Users can reliably store object data in the FrostFS network and have a transparent data placement process due to a 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, FrostFS gives full control over data to users.

Deep Neo Blockchain integration allows FrostFS to be used by dApps 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.

FrostFS has a native gRPC API and has protocol gateways for popular protocols such as AWS S3, HTTP, FUSE and sFTP allowing developers to integrate applications without rewriting their code.

Supported platforms

Now, we only support GNU/Linux on amd64 CPUs with AVX/AVX2 instructions. More platforms will be officially supported after release 1.0.

The latest version of frostfs-node works with frostfs-contract v0.16.0.

Building

To make all binaries you need Go 1.20+ and make:

make all

The resulting binaries will appear in bin/ folder.

To make a specific binary use:

make bin/frostfs-<name>

See the list of all available commands in the cmd folder.

Building with Docker

Building can also be performed in a container:

make docker/all                     # build all binaries
make docker/bin/frostfs-<name> # build a specific binary

Docker images

To make docker images suitable for use in frostfs-dev-env use:

make images

Contributing

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

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

Credits

FrostFS is maintained by True Cloud Lab with the help and contributions from community members.

Please see CREDITS for details.

License