FrostFS is a decentralized distributed object storage integrated with the NEO Blockchain.
Find a file
Evgenii Stratonikov 5cf75404dc [#1818] metabase: Add UpdateStorageID operation
By default writecache puts the whole object to update storage ID.
This logic comes from the times when we needed to put objects
in the metabase by the writecache itself. Now this is done by the
blobstor at unmarshaling objects during flush only to update storage ID
is an overkill.

Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
2022-11-02 14:24:02 +03:00
.docker [#1250] go.mod: Bump supported go version to 1.17 2022-04-07 17:23:28 +03:00
.github [#1910] .github: Update golangci-lint version 2022-10-18 15:08:26 +03:00
cmd [#1338] neofs-cli: Add support to store/restore/delete binary objects 2022-11-01 15:30:00 +03:00
config [#1992] writecache: Allow to open in NOSYNC mode 2022-11-01 09:42:26 +03:00
debian [#409] Fix more lintian warnings 2022-10-28 12:58:32 +03:00
docs [#1994] docs: Update storage node configuration 2022-11-01 09:42:26 +03:00
misc [#1592] Remove debug builds 2022-07-14 10:39:51 +03:00
pkg [#1818] metabase: Add UpdateStorageID operation 2022-11-02 14:24:02 +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 [#409] Debian packaging 2022-10-28 12:58:32 +03:00
.golangci.yml [#1910] .golangci.yml: Add predeclared linker 2022-10-18 15:08:26 +03:00
CHANGELOG.md [#1338] neofs-cli: Add support to store/restore/delete binary objects 2022-11-01 15:30:00 +03:00
CONTRIBUTING.md Minor typo fixes 2020-12-30 13:22:50 +03:00
CREDITS.md [#719] Update contributors list 2021-07-23 19:41:15 +03:00
go.mod [#1980] go.mod: Update neofs-sdk to rc7 2022-10-31 15:07:53 +03:00
go.sum [#1980] go.mod: Update neofs-sdk to rc7 2022-10-31 15:07:53 +03:00
help.mk [#1578] Minor Makefile fixes 2022-07-06 10:00:19 +03:00
LICENSE Initial commit 2020-07-10 17:45:00 +03:00
Makefile [#1980] make: Update linter version in docker command 2022-10-31 15:07:53 +03:00
README.md Release v0.33.0 2022-10-17 19:09:42 +03:00
VERSION Release v0.34.0 - Marado (마라도, 馬羅島) 2022-10-31 15:07:53 +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 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 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 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, NeoFS gives full control over data to users.

Deep Neo Blockchain integration allows NeoFS 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.

NeoFS 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 neofs-node works with neofs-contract v0.16.0.

Building

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

make all

The resulting binaries will appear in bin/ folder.

To make a specific binary use:

make bin/neofs-<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/neofs-<name> # build a specific binary

Docker images

To make docker images suitable for use in neofs-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

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

Please see CREDITS for details.

License