Skip to content

Commit

Permalink
feat: v 0.0.2 version (#88)
Browse files Browse the repository at this point in the history
* feat: add defult config.tomal support one-shut deploy

* test: add run cases (#61)

* feat: add defult config.tomal support one-shut deploy (#59)

* test: add run cases

Co-authored-by: joeycli <1297465889@qq.com>
Co-authored-by: will-2012-nr <will.nodereal@gmail.com>

* refactor: rename bfs to gnfd(GreenField) (#63)

Co-authored-by: will-2012-nr <will.nodereal@gmail.com>

* rename imported protobuf package name (#64)

Co-authored-by: DylanYong <dylan.y@nodereal.io>

* fix: adjust the dispatching strategy of replica and inline data into storage provider (#66)

* fix: dispatch strategy of replica and inline data into storage provider

Co-authored-by: DylanYong <dylan.y@nodereal.io>

* refactor(jobdb): add jobdb v2 interface, objectID as primary key (#68)

* ci: add commit lint, code lint and unit test ci files (#67)

* faet: change index from create object hash to object id (#70)

* impl: implement memory jobdb v2 index by object id

* fix: adjust default config order by service level

* feat: change index from txhash to objectid

* impl: challenge api (#71)

* ci: add docker release pipe (#74)

* feat(metadb): add sql metadb (#73)

* feat(metadb): add sql metadb

* feat(metadb): integrate sql metadb and polish code

* ci: close slack channel jobs (#72)

Co-authored-by: DylanYong <dylan.y@nodereal.io>

* fix: delete stone ut txhash (#75)

* fix: delete stone ut txhash

* fix: reject job sql db ut that requir net connect sql

* fix: stone node ut panic

* fix: golintci error (#76)

* fix: golint error

Co-authored-by: will-2012 <will.w@nodereal.io>

* build: improve build instructions (#78)

* chore(gateway): remove debug mode (#79)

* fix: use multi-dimensional array to send piece data and piece hash (#69)

* fix: use multi-dimensional array to send piece data and piece hash

---------

Co-authored-by: DylanYong <dylan.y@nodereal.io>

* feat(gateway): verify signature (#65)

* feat(stone_node): supports sending data to different storage provider (#82)

* feat: use stone node supports send data to different sp

---------

Co-authored-by: DylanYong <dylan.y@nodereal.io>

* chore(sql): polish sql workflow (#83)

* chore(sql): polish sql workflow

* fix: update by review tips

* fix(stone_node): fix uint test of stone node (#84)

* fix(stone_node): fix uint test of stone node

* chore: add pull request template (#85)

* fix(stone_node): fix the verification of syncer number (#86)

* fix(stone_node): fix the verification of syncer number

* chore: add setup-test-env tool (#87)

---------

Co-authored-by: will-2012 <117156346+will-2012@users.noreply.github.com>
Co-authored-by: will-2012-nr <will.nodereal@gmail.com>
Co-authored-by: VM <112189277+sysvm@users.noreply.github.com>
Co-authored-by: DylanYong <dylan.y@nodereal.io>
Co-authored-by: dylanhuang <j75689@gmail.com>
Co-authored-by: will-2012 <will.w@nodereal.io>
  • Loading branch information
7 people committed Feb 10, 2023
1 parent 288d421 commit 10bb7f6
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions config/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,29 @@ TestMode = true
#NoSignRequest = false
#TlsInsecureSkipVerify = false

[UploaderCfg]
StorageProvider = "bnb-sp"
Address = "127.0.0.1:9133"
StoneHubServiceAddress = "127.0.0.1:9333"
MetaDBType = "leveldb"
[UploaderCfg.PieceStoreConfig]
Shards = 0
[UploaderCfg.PieceStoreConfig.Store]
Storage = "file"
BucketURL = "./data/primary_payload_data"
MaxRetries = 5
TestMode = true
#AccessKey = "ACCESSKEY"
#SecretKey = "SECRETKEY"
#SessionToken = "SESSIONTOKEN"
#NoSignRequest = false
#TlsInsecureSkipVerify = false
[UploaderCfg.MetaLevelDBConfig]
Path = "./data/meta"
NameSpace = "bnb-sp"
Cache = 4096
FileHandles = 1000
ReadOnly = false

[StoneHubCfg]
StorageProvider = "bnb-sp"
Expand All @@ -78,6 +101,35 @@ MetaDBType = "leveldb"
FileHandles = 1000
ReadOnly = false

[DownloaderCfg]
Address = "127.0.0.1:9233"
[DownloaderCfg.PieceStoreConfig]
Shards = 0
[DownloaderCfg.PieceStoreConfig.Store]
Storage = "file"
BucketURL = "./data/primary_payload_data"
MaxRetries = 5
TestMode = true
#AccessKey = "ACCESSKEY"
#SecretKey = "SECRETKEY"
#SessionToken = "SESSIONTOKEN"
#NoSignRequest = false
#TlsInsecureSkipVerify = false


[StoneHubCfg]
StorageProvider = "bnb-sp"
Address = "127.0.0.1:9333"
JobDBType = "memory"
MetaDBType = "leveldb"
[StoneHubCfg.MetaLevelDBConfig]
Path = "./data/meta"
NameSpace = "bnb-sp"
Cache = 4096
FileHandles = 1000
ReadOnly = false


[StoneNodeCfg]
StorageProvider = "bnb-sp"
Address = "127.0.0.1:9433"
Expand Down

0 comments on commit 10bb7f6

Please sign in to comment.