Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
3ad4335a
Unverified
Commit
3ad4335a
authored
Dec 02, 2019
by
Martin Holst Swende
Committed by
Péter Szilágyi
Feb 25, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core/state/snapshot: node behavioural difference on bloom content
parent
fd39f722
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
6 deletions
+22
-6
difflayer.go
core/state/snapshot/difflayer.go
+16
-3
difflayer_test.go
core/state/snapshot/difflayer_test.go
+6
-3
No files found.
core/state/snapshot/difflayer.go
View file @
3ad4335a
...
@@ -20,6 +20,7 @@ import (
...
@@ -20,6 +20,7 @@ import (
"encoding/binary"
"encoding/binary"
"fmt"
"fmt"
"math"
"math"
"math/rand"
"sort"
"sort"
"sync"
"sync"
"time"
"time"
...
@@ -63,8 +64,20 @@ var (
...
@@ -63,8 +64,20 @@ var (
// bloom filter to keep its size to a minimum (given it's size and maximum
// bloom filter to keep its size to a minimum (given it's size and maximum
// entry count).
// entry count).
bloomFuncs
=
math
.
Round
((
bloomSize
/
float64
(
aggregatorItemLimit
))
*
math
.
Log
(
2
))
bloomFuncs
=
math
.
Round
((
bloomSize
/
float64
(
aggregatorItemLimit
))
*
math
.
Log
(
2
))
// bloomHashesOffset is a runtime constant which determines which part of the
// the account/storage hash the hasher functions looks at, to determine the
// bloom key for an account/slot. This is randomized at init(), so that the
// global population of nodes do not all display the exact same behaviour with
// regards to bloom content
bloomHasherOffset
=
0
)
)
func
init
()
{
// Init bloomHasherOffset in the range [0:24] (requires 8 bytes)
bloomHasherOffset
=
rand
.
Intn
(
25
)
}
// diffLayer represents a collection of modifications made to a state snapshot
// diffLayer represents a collection of modifications made to a state snapshot
// after running a block on top. It contains one sorted list for the account trie
// after running a block on top. It contains one sorted list for the account trie
// and one-one list for each storage tries.
// and one-one list for each storage tries.
...
@@ -100,7 +113,7 @@ func (h accountBloomHasher) Reset() { panic("not impl
...
@@ -100,7 +113,7 @@ func (h accountBloomHasher) Reset() { panic("not impl
func
(
h
accountBloomHasher
)
BlockSize
()
int
{
panic
(
"not implemented"
)
}
func
(
h
accountBloomHasher
)
BlockSize
()
int
{
panic
(
"not implemented"
)
}
func
(
h
accountBloomHasher
)
Size
()
int
{
return
8
}
func
(
h
accountBloomHasher
)
Size
()
int
{
return
8
}
func
(
h
accountBloomHasher
)
Sum64
()
uint64
{
func
(
h
accountBloomHasher
)
Sum64
()
uint64
{
return
binary
.
BigEndian
.
Uint64
(
h
[
:
8
])
return
binary
.
BigEndian
.
Uint64
(
h
[
bloomHasherOffset
:
bloomHasherOffset
+
8
])
}
}
// storageBloomHasher is a wrapper around a [2]common.Hash to satisfy the interface
// storageBloomHasher is a wrapper around a [2]common.Hash to satisfy the interface
...
@@ -114,7 +127,8 @@ func (h storageBloomHasher) Reset() { panic("not impl
...
@@ -114,7 +127,8 @@ func (h storageBloomHasher) Reset() { panic("not impl
func
(
h
storageBloomHasher
)
BlockSize
()
int
{
panic
(
"not implemented"
)
}
func
(
h
storageBloomHasher
)
BlockSize
()
int
{
panic
(
"not implemented"
)
}
func
(
h
storageBloomHasher
)
Size
()
int
{
return
8
}
func
(
h
storageBloomHasher
)
Size
()
int
{
return
8
}
func
(
h
storageBloomHasher
)
Sum64
()
uint64
{
func
(
h
storageBloomHasher
)
Sum64
()
uint64
{
return
binary
.
BigEndian
.
Uint64
(
h
[
0
][
:
8
])
^
binary
.
BigEndian
.
Uint64
(
h
[
1
][
:
8
])
return
binary
.
BigEndian
.
Uint64
(
h
[
0
][
bloomHasherOffset
:
bloomHasherOffset
+
8
])
^
binary
.
BigEndian
.
Uint64
(
h
[
1
][
bloomHasherOffset
:
bloomHasherOffset
+
8
])
}
}
// newDiffLayer creates a new diff on top of an existing snapshot, whether that's a low
// newDiffLayer creates a new diff on top of an existing snapshot, whether that's a low
...
@@ -205,7 +219,6 @@ func (dl *diffLayer) rebloom(origin *diskLayer) {
...
@@ -205,7 +219,6 @@ func (dl *diffLayer) rebloom(origin *diskLayer) {
k
:=
float64
(
dl
.
diffed
.
K
())
k
:=
float64
(
dl
.
diffed
.
K
())
n
:=
float64
(
dl
.
diffed
.
N
())
n
:=
float64
(
dl
.
diffed
.
N
())
m
:=
float64
(
dl
.
diffed
.
M
())
m
:=
float64
(
dl
.
diffed
.
M
())
snapshotBloomErrorGauge
.
Update
(
math
.
Pow
(
1.0
-
math
.
Exp
((
-
k
)
*
(
n
+
0.5
)
/
(
m
-
1
)),
k
))
snapshotBloomErrorGauge
.
Update
(
math
.
Pow
(
1.0
-
math
.
Exp
((
-
k
)
*
(
n
+
0.5
)
/
(
m
-
1
)),
k
))
}
}
...
...
core/state/snapshot/difflayer_test.go
View file @
3ad4335a
...
@@ -24,6 +24,7 @@ import (
...
@@ -24,6 +24,7 @@ import (
"github.com/VictoriaMetrics/fastcache"
"github.com/VictoriaMetrics/fastcache"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethdb/memorydb"
"github.com/ethereum/go-ethereum/ethdb/memorydb"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rlp"
)
)
...
@@ -216,7 +217,7 @@ func BenchmarkSearch(b *testing.B) {
...
@@ -216,7 +217,7 @@ func BenchmarkSearch(b *testing.B) {
layer
=
fill
(
layer
)
layer
=
fill
(
layer
)
}
}
key
:=
c
ommon
.
Hash
{}
key
:=
c
rypto
.
Keccak256Hash
([]
byte
{
0x13
,
0x38
})
b
.
ResetTimer
()
b
.
ResetTimer
()
for
i
:=
0
;
i
<
b
.
N
;
i
++
{
for
i
:=
0
;
i
<
b
.
N
;
i
++
{
layer
.
AccountRLP
(
key
)
layer
.
AccountRLP
(
key
)
...
@@ -229,10 +230,12 @@ func BenchmarkSearch(b *testing.B) {
...
@@ -229,10 +230,12 @@ func BenchmarkSearch(b *testing.B) {
// BenchmarkSearchSlot-6 100000 14554 ns/op
// BenchmarkSearchSlot-6 100000 14554 ns/op
// BenchmarkSearchSlot-6 100000 22254 ns/op (when checking parent root using mutex)
// BenchmarkSearchSlot-6 100000 22254 ns/op (when checking parent root using mutex)
// BenchmarkSearchSlot-6 100000 14551 ns/op (when checking parent number using atomic)
// BenchmarkSearchSlot-6 100000 14551 ns/op (when checking parent number using atomic)
// With bloom filter:
// BenchmarkSearchSlot-6 3467835 351 ns/op
func
BenchmarkSearchSlot
(
b
*
testing
.
B
)
{
func
BenchmarkSearchSlot
(
b
*
testing
.
B
)
{
// First, we set up 128 diff layers, with 1K items each
// First, we set up 128 diff layers, with 1K items each
accountKey
:=
c
ommon
.
Hash
{}
accountKey
:=
c
rypto
.
Keccak256Hash
([]
byte
{
0x13
,
0x37
})
storageKey
:=
c
ommon
.
HexToHash
(
"0x1337"
)
storageKey
:=
c
rypto
.
Keccak256Hash
([]
byte
{
0x13
,
0x37
}
)
accountRLP
:=
randomAccount
()
accountRLP
:=
randomAccount
()
fill
:=
func
(
parent
snapshot
)
*
diffLayer
{
fill
:=
func
(
parent
snapshot
)
*
diffLayer
{
accounts
:=
make
(
map
[
common
.
Hash
][]
byte
)
accounts
:=
make
(
map
[
common
.
Hash
][]
byte
)
...
...
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