FrostFS is a decentralized distributed object storage integrated with the NEO Blockchain.
 
 
 
Go to file
Anton Nikiforov 79ba34714a [#79] cli: Fix panic when setting domain for container
Signed-off-by: Anton Nikiforov <an.nikiforov@yadro.com>
2023-03-01 11:11:11 +03:00
.docker [#10] .docker: Update go version to 1.18 2023-01-10 12:27:25 +03:00
.github [TrueCloudLab#78] .github: Fix CODEOWNERS 2023-02-28 16:44:50 +03:00
cmd [#79] cli: Fix panic when setting domain for container 2023-03-01 11:11:11 +03:00
config [#64] node: Use pool_size_local and separate pool for local puts 2023-02-22 13:43:19 +03:00
debian [#1] Fix Debian package references to old upstream 2023-02-06 17:41:14 +03:00
docs [#64] node: Use pool_size_local and separate pool for local puts 2023-02-22 13:43:19 +03:00
misc [#1592] Remove debug builds 2022-07-14 10:39:51 +03:00
pkg [#65] Use `strings.Cut` instead of `strings.Split*` where possible 2023-02-28 13:39:14 +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 [#53] Fix dirty in version 2023-02-16 11:10:43 +03:00
.golangci.yml [#1910] .golangci.yml: Add `predeclared` linker 2022-10-18 15:08:26 +03:00
CHANGELOG.md [#37] cli: Add `nns-name` and `nns-zone` for `container create` 2023-02-28 13:37:23 +03:00
CONTRIBUTING.md [#1] Documentation rebranding 2023-02-06 17:41:14 +03:00
CREDITS.md [#7] Rebranding leftovers 2023-01-09 11:41:51 +03:00
LICENSE Initial commit 2020-07-10 17:45:00 +03:00
Makefile [#1889] Move netmap.go and exit.go from `cli` to `cmd/internal/common` 2023-02-06 17:26:34 +03:00
README.md [#7] Rebranding leftovers 2023-01-09 11:41:51 +03:00
VERSION Release v0.35.0 2022-12-30 11:07:35 +03:00
go.mod [TrueCloudLab/hrw#2] node: Use typed HRW methods 2023-02-28 13:36:25 +03:00
go.sum [TrueCloudLab/hrw#2] node: Use typed HRW methods 2023-02-28 13:36:25 +03: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.18+ 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