diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2025-11-19 20:06:57 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-19 20:06:57 -0800 |
| commit | c6b6ea40e61b79722e1a539f814933898b9780a7 (patch) | |
| tree | 3b09cd214ed6420881412ba9570122216d8df5bd /weed/server/filer_server.go | |
| parent | 8be9e258fc7d1110421aaee451945668cafa23e7 (diff) | |
| download | seaweedfs-c6b6ea40e61b79722e1a539f814933898b9780a7.tar.xz seaweedfs-c6b6ea40e61b79722e1a539f814933898b9780a7.zip | |
filer store: add foundationdb (#7178)
* add foundationdb
* Update foundationdb_store.go
* fix
* apply the patch
* avoid panic on error
* address comments
* remove extra data
* address comments
* adds more debug messages
* fix range listing
* delete with prefix range; list with right start key
* fix docker files
* use the more idiomatic FoundationDB KeySelectors
* address comments
* proper errors
* fix API versions
* more efficient
* recursive deletion
* clean up
* clean up
* pagination, one transaction for deletion
* error checking
* Use fdb.Strinc() to compute the lexicographically next string and create a proper range
* fix docker
* Update README.md
* delete in batches
* delete in batches
* fix build
* add foundationdb build
* Updated FoundationDB Version
* Fixed glibc/musl Incompatibility (Alpine → Debian)
* Update container_foundationdb_version.yml
* build SeaweedFS
* build tag
* address comments
* separate transaction
* address comments
* fix build
* empty vs no data
* fixes
* add go test
* Install FoundationDB client libraries
* nil compare
Diffstat (limited to 'weed/server/filer_server.go')
| -rw-r--r-- | weed/server/filer_server.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/weed/server/filer_server.go b/weed/server/filer_server.go index f395f6d60..79fb90742 100644 --- a/weed/server/filer_server.go +++ b/weed/server/filer_server.go @@ -28,6 +28,7 @@ import ( _ "github.com/seaweedfs/seaweedfs/weed/filer/cassandra2" _ "github.com/seaweedfs/seaweedfs/weed/filer/elastic/v7" _ "github.com/seaweedfs/seaweedfs/weed/filer/etcd" + _ "github.com/seaweedfs/seaweedfs/weed/filer/foundationdb" _ "github.com/seaweedfs/seaweedfs/weed/filer/hbase" _ "github.com/seaweedfs/seaweedfs/weed/filer/leveldb" _ "github.com/seaweedfs/seaweedfs/weed/filer/leveldb2" |
