Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: Booster bitswap #1030

Merged
merged 32 commits into from
Jan 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
9df537d
feat(booster-bitswap): support exposing bitswap publicly
hannahhoward Nov 20, 2022
83d2fe5
chore(docs): cleanup build and docs
hannahhoward Nov 20, 2022
975c488
refactor(node): move over Lotus index provider code
hannahhoward Nov 23, 2022
be79b05
feat(filters): add peer filter
hannahhoward Nov 23, 2022
3ab025d
Apply suggestions from code review
hannahhoward Nov 30, 2022
044ddd7
refactor(filters): rename onTimerSet -> onTick
hannahhoward Nov 30, 2022
01e776f
feat(bandwidthmeasure): tool to sample bandwidth
hannahhoward Nov 30, 2022
47eafad
feat(filters): augment peer filter
hannahhoward Nov 30, 2022
d0ea832
feat(booster-bitswap): hook up new filters
hannahhoward Nov 30, 2022
e753db9
refactor(filters): rename peer filter
hannahhoward Nov 30, 2022
3e88682
style(lint): mod tidy
hannahhoward Nov 30, 2022
8dd2ce8
refactor(filters): make filters work without endpoint
hannahhoward Dec 2, 2022
7c341f9
fix(booster-bitswap): fix run command issue
hannahhoward Dec 2, 2022
aa47372
Merge branch 'feat/update-indexer-announce'
hannahhoward Dec 5, 2022
c67697c
Merge branch 'feat/api-filter-configs'
hannahhoward Dec 5, 2022
8fff4dd
refactor(booster-bitswap): reconfigure request limits
hannahhoward Dec 8, 2022
24247d8
feat(filters): support auth header for config endpoint
hannahhoward Dec 8, 2022
f4cb847
feat(booster-bitswap): add error log
hannahhoward Dec 8, 2022
96e008b
Update node/config/types.go
hannahhoward Dec 8, 2022
8b8e1a1
Update node/config/types.go
hannahhoward Dec 8, 2022
893d342
refactor(indexprovider): clean up bitswap announcements
hannahhoward Dec 8, 2022
dfe2f83
Merge branch 'feat/update-indexer-announce' into release/booster-bitswap
hannahhoward Dec 8, 2022
cf34e3f
Merge branch 'feat/api-filter-configs' into release/booster-bitswap
hannahhoward Dec 8, 2022
fc49efb
fix(booster-http): fix lotus import
hannahhoward Dec 8, 2022
ff40897
refactor(booster-bitswap): rename filter config file
hannahhoward Dec 8, 2022
f43be17
custom badbits filter (#1043)
LexLuthr Jan 4, 2023
2e54829
fix(booster-bitswap): remove peer+bandwidth filter (#1070)
hannahhoward Jan 14, 2023
720f1ad
Merge branch 'main' into release/booster-bitswap
hannahhoward Jan 14, 2023
85d3c29
fix(indexprovider): fix panic in wrapper (#1077)
hannahhoward Jan 16, 2023
9282d55
refactor: target lotus v1.18.x (#1080)
dirkmc Jan 16, 2023
b21b5ed
refactor: add some logging and clearer explanations of booster-bitswa…
dirkmc Jan 16, 2023
ed7b29e
fix: ensure that boost is connected to mesh before attempting to publ…
dirkmc Jan 17, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions build/params_shared_funcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,14 @@ func MustParseCid(c string) cid.Cid {

return ret
}
func IndexerIngestTopic(netName dtypes.NetworkName) string {

Comment on lines +41 to +42
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
func IndexerIngestTopic(netName dtypes.NetworkName) string {
func IndexerIngestTopic(netName dtypes.NetworkName) string {

nn := string(netName)
// The network name testnetnet is here for historical reasons.
// Going forward we aim to use the name `mainnet` where possible.
if nn == "testnetnet" {
nn = "mainnet"
}

return "/indexer/ingest/" + nn
}
1 change: 1 addition & 0 deletions cmd/boostd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ func before(cctx *cli.Context) error {
_ = logging.SetLogLevel("modules", "INFO")
_ = logging.SetLogLevel("cfg", "INFO")
_ = logging.SetLogLevel("boost-storage-deal", "INFO")
_ = logging.SetLogLevel("index-provider-wrapper", "INFO")

if cliutil.IsVeryVerbose {
_ = logging.SetLogLevel("boostd", "DEBUG")
Expand Down
241 changes: 0 additions & 241 deletions cmd/booster-bitswap/blockfilter/blockfilter.go

This file was deleted.

124 changes: 0 additions & 124 deletions cmd/booster-bitswap/blockfilter/blockfilter_test.go

This file was deleted.

Loading