Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Control provider workers with experiment flag #110

Merged
merged 1 commit into from
Apr 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 9 additions & 5 deletions bitswap.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ const (
)

var (
ProvideEnabled = true

HasBlockBufferSize = 256
provideKeysBufferSize = 2048
provideWorkerMax = 6
Expand Down Expand Up @@ -258,11 +260,13 @@ func (bs *Bitswap) receiveBlockFrom(blk blocks.Block, from peer.ID) error {

bs.engine.AddBlock(blk)

select {
case bs.newBlocks <- blk.Cid():
// send block off to be reprovided
case <-bs.process.Closing():
return bs.process.Close()
if ProvideEnabled {
Copy link
Member

Choose a reason for hiding this comment

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

Any reason to make this a global flag? That's generally a last resort for things that should only be changed when debugging (or things that absolutely need to apply to the entire program like "force private networks").

cc @michaelavila

select {
case bs.newBlocks <- blk.Cid():
// send block off to be reprovided
case <-bs.process.Closing():
return bs.process.Close()
}
}
return nil
}
Expand Down
37 changes: 37 additions & 0 deletions bitswap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (

decision "github.com/ipfs/go-bitswap/decision"
"github.com/ipfs/go-bitswap/message"
bssession "github.com/ipfs/go-bitswap/session"
tn "github.com/ipfs/go-bitswap/testnet"

blocks "github.com/ipfs/go-block-format"
Expand Down Expand Up @@ -99,6 +100,42 @@ func TestGetBlockFromPeerAfterPeerAnnounces(t *testing.T) {
}
}

func TestDoesNotProvideWhenConfiguredNotTo(t *testing.T) {
ProvideEnabled = false
defer func() { ProvideEnabled = true }()

net := tn.VirtualNetwork(mockrouting.NewServer(), delay.Fixed(kNetworkDelay))
block := blocks.NewBlock([]byte("block"))
g := NewTestSessionGenerator(net)
defer g.Close()

hasBlock := g.Next()
defer hasBlock.Exchange.Close()

if err := hasBlock.Exchange.HasBlock(block); err != nil {
t.Fatal(err)
}

ctx, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()

wantsBlock := g.Next()
defer wantsBlock.Exchange.Close()

ns := wantsBlock.Exchange.NewSession(ctx).(*bssession.Session)
// set find providers delay to less than timeout context of this test
ns.SetBaseTickDelay(10 * time.Millisecond)

received, err := ns.GetBlock(ctx, block.Cid())
if received != nil {
t.Fatalf("Expected to find nothing, found %s", received)
}

if err != context.DeadlineExceeded {
t.Fatal("Expected deadline exceeded")
}
}

func TestUnwantedBlockNotAdded(t *testing.T) {

net := tn.VirtualNetwork(mockrouting.NewServer(), delay.Fixed(kNetworkDelay))
Expand Down
20 changes: 11 additions & 9 deletions workers.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,17 @@ func (bs *Bitswap) startWorkers(px process.Process, ctx context.Context) {
})
}

// Start up a worker to manage sending out provides messages
px.Go(func(px process.Process) {
bs.provideCollector(ctx)
})

// Spawn up multiple workers to handle incoming blocks
// consider increasing number if providing blocks bottlenecks
// file transfers
px.Go(bs.provideWorker)
if ProvideEnabled {
// Start up a worker to manage sending out provides messages
px.Go(func(px process.Process) {
bs.provideCollector(ctx)
})

// Spawn up multiple workers to handle incoming blocks
// consider increasing number if providing blocks bottlenecks
// file transfers
px.Go(bs.provideWorker)
}
}

func (bs *Bitswap) taskWorker(ctx context.Context, id int) {
Expand Down