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

Support WithIgnoreProviders() in provider query manager #10765

Merged
merged 2 commits into from
Apr 1, 2025

Conversation

hsanjuan
Copy link
Contributor

Adds Routing.IgnoreProviders.

This requires initializing a custom providerQueryManager and using it instead of the default created internally in Bitswap. Since the default is created with some internal default configuration options (MaxProviders), this hardcodes it.

@hsanjuan hsanjuan self-assigned this Mar 24, 2025
Adds `Routing.IgnoreProviders`.

This requires initializing a custom providerQueryManager and using it instead
of the default created internally in Bitswap. Since the default is created
with some internal default configuration options (MaxProviders), this hardcodes it.
@hsanjuan hsanjuan marked this pull request as ready for review March 27, 2025 16:17
@hsanjuan hsanjuan requested a review from a team as a code owner March 27, 2025 16:17
@hsanjuan hsanjuan enabled auto-merge April 1, 2025 07:54
@hsanjuan hsanjuan merged commit 8b54407 into master Apr 1, 2025
16 checks passed
@hsanjuan hsanjuan deleted the ignore-providers branch April 1, 2025 08:03
// internal setting in boxo.
pqm, err := rpqm.New(bitswapNetwork,
in.Rt,
rpqm.WithMaxProviders(10),
Copy link
Member

@lidel lidel Apr 2, 2025

Choose a reason for hiding this comment

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

@hsanjuan why do we hardcode 10 here?

Wasn't previous default DefaultMaxProviders = 0 (unlimited) from boxo/routing/providerquerymanager/providerquerymanager.go?

limiting to 10 feels like DoS vector, no?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes, this is the value we always used:
https://github.com/ipfs/boxo/blob/main/bitswap/client/client.go#L209

When passing in the pqm explicitally we need to set it...

No change on that front. As to why 10... 🤷 In rainbow we do unlimited, but in Kubo we never ventured to change the default of 10.

Copy link
Member

Choose a reason for hiding this comment

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

Thanks! Feels we should avoid hardcoding magic numbers without docs, opened #10773 to sort this out + maybe align with rainbow.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants