Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
19da0570
Commit
19da0570
authored
Nov 20, 2014
by
Jeromy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove buffer timing in bitswap in favor of manual batching
parent
e4b2ae3b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
35 deletions
+39
-35
exchange/bitswap/bitswap.go
exchange/bitswap/bitswap.go
+18
-34
exchange/bitswap/bitswap_test.go
exchange/bitswap/bitswap_test.go
+1
-1
merkledag/merkledag.go
merkledag/merkledag.go
+20
-0
No files found.
exchange/bitswap/bitswap.go
View file @
19da0570
...
...
@@ -43,7 +43,7 @@ func New(ctx context.Context, p peer.Peer,
routing
:
routing
,
sender
:
network
,
wantlist
:
u
.
NewKeySet
(),
b
lock
Requests
:
make
(
chan
u
.
Key
,
32
),
b
atch
Requests
:
make
(
chan
[]
u
.
Key
,
32
),
}
network
.
SetDelegate
(
bs
)
go
bs
.
run
(
ctx
)
...
...
@@ -66,7 +66,10 @@ type bitswap struct {
notifications
notifications
.
PubSub
blockRequests
chan
u
.
Key
// Requests for a set of related blocks
// the assumption is made that the same peer is likely to
// have more than a single block in the set
batchRequests
chan
[]
u
.
Key
// strategy listens to network traffic and makes decisions about how to
// interact with partners.
...
...
@@ -97,7 +100,7 @@ func (bs *bitswap) GetBlock(parent context.Context, k u.Key) (*blocks.Block, err
promise
:=
bs
.
notifications
.
Subscribe
(
ctx
,
k
)
select
{
case
bs
.
b
lock
Requests
<-
k
:
case
bs
.
b
atch
Requests
<-
[]
u
.
Key
{
k
}
:
case
<-
parent
.
Done
()
:
return
nil
,
parent
.
Err
()
}
...
...
@@ -159,50 +162,31 @@ func (bs *bitswap) run(ctx context.Context) {
// Every so often, we should resend out our current want list
rebroadcastTime
:=
time
.
Second
*
5
var
providers
<-
chan
peer
.
Peer
// NB: must be initialized to zero value
broadcastSignal
:=
time
.
After
(
bs
.
strategy
.
GetRebroadcastDelay
())
broadcastSignal
:=
time
.
NewTicker
(
bs
.
strategy
.
GetRebroadcastDelay
())
// Number of unsent keys for the current batch
unsentKeys
:=
0
for
{
select
{
case
<-
broadcastSignal
:
unsentKeys
=
0
case
<-
broadcastSignal
.
C
:
wantlist
:=
bs
.
wantlist
.
Keys
()
if
len
(
wantlist
)
==
0
{
continue
}
if
providers
==
nil
{
// rely on semi randomness of maps
firstKey
:=
wantlist
[
0
]
providers
=
bs
.
routing
.
FindProvidersAsync
(
ctx
,
firstKey
,
maxProvidersPerRequest
)
}
providers
:=
bs
.
routing
.
FindProvidersAsync
(
ctx
,
wantlist
[
0
],
maxProvidersPerRequest
)
err
:=
bs
.
sendWantListTo
(
ctx
,
providers
)
if
err
!=
nil
{
log
.
Errorf
(
"error sending wantlist: %s"
,
err
)
}
providers
=
nil
broadcastSignal
=
time
.
After
(
bs
.
strategy
.
GetRebroadcastDelay
())
case
k
:=
<-
bs
.
blockRequests
:
if
unsentKeys
==
0
{
providers
=
bs
.
routing
.
FindProvidersAsync
(
ctx
,
k
,
maxProvidersPerRequest
)
case
ks
:=
<-
bs
.
batchRequests
:
if
len
(
ks
)
==
0
{
log
.
Warning
(
"Received batch request for zero blocks"
)
continue
}
unsentKeys
++
if
unsentKeys
>=
bs
.
strategy
.
GetBatchSize
()
{
// send wantlist to providers
err
:=
bs
.
sendWantListTo
(
ctx
,
providers
)
if
err
!=
nil
{
log
.
Errorf
(
"error sending wantlist: %s"
,
err
)
}
unsentKeys
=
0
broadcastSignal
=
time
.
After
(
bs
.
strategy
.
GetRebroadcastDelay
())
providers
=
nil
}
else
{
// set a timeout to wait for more blocks or send current wantlist
providers
:=
bs
.
routing
.
FindProvidersAsync
(
ctx
,
ks
[
0
],
maxProvidersPerRequest
)
broadcastSignal
=
time
.
After
(
bs
.
strategy
.
GetBatchDelay
())
err
:=
bs
.
sendWantListTo
(
ctx
,
providers
)
if
err
!=
nil
{
log
.
Errorf
(
"error sending wantlist: %s"
,
err
)
}
case
<-
ctx
.
Done
()
:
return
...
...
exchange/bitswap/bitswap_test.go
View file @
19da0570
...
...
@@ -345,7 +345,7 @@ func session(net tn.Network, rs mock.RoutingServer, id peer.ID) instance {
routing
:
htc
,
sender
:
adapter
,
wantlist
:
util
.
NewKeySet
(),
b
lock
Requests
:
make
(
chan
util
.
Key
,
32
),
b
atch
Requests
:
make
(
chan
[]
util
.
Key
,
32
),
}
adapter
.
SetDelegate
(
bs
)
go
bs
.
run
(
context
.
TODO
())
...
...
merkledag/merkledag.go
View file @
19da0570
...
...
@@ -252,6 +252,7 @@ func (n *dagService) Remove(nd *Node) error {
// FetchGraph asynchronously fetches all nodes that are children of the given
// node, and returns a channel that may be waited upon for the fetch to complete
func
FetchGraph
(
ctx
context
.
Context
,
root
*
Node
,
serv
DAGService
)
chan
struct
{}
{
log
.
Warning
(
"Untested."
)
var
wg
sync
.
WaitGroup
done
:=
make
(
chan
struct
{})
...
...
@@ -284,3 +285,22 @@ func FetchGraph(ctx context.Context, root *Node, serv DAGService) chan struct{}
return
done
}
// Take advantage of blockservice/bitswap batched requests to fetch all
// child nodes of a given node
// TODO: finish this
func
(
ds
*
dagService
)
BatchFetch
(
ctx
context
.
Context
,
root
*
Node
)
error
{
var
keys
[]
u
.
Key
for
_
,
lnk
:=
range
root
.
Links
{
keys
=
append
(
keys
,
u
.
Key
(
lnk
.
Hash
))
}
blocks
,
err
:=
ds
.
Blocks
.
GetBlocks
(
keys
)
if
err
!=
nil
{
return
err
}
_
=
blocks
//what do i do with blocks?
return
nil
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment