good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
7f32a08b
Commit
7f32a08b
authored
Apr 7, 2015
by
Jeffrey Wilcke
Browse files
Options
Downloads
Patches
Plain Diff
Queued level db writes and batch writes. Closes #647
parent
758205b1
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
common/db.go
+0
-2
0 additions, 2 deletions
common/db.go
ethdb/database.go
+84
-27
84 additions, 27 deletions
ethdb/database.go
ethdb/database_test.go
+10
-17
10 additions, 17 deletions
ethdb/database_test.go
with
94 additions
and
46 deletions
common/db.go
+
0
−
2
View file @
7f32a08b
...
...
@@ -4,9 +4,7 @@ package common
type
Database
interface
{
Put
(
key
[]
byte
,
value
[]
byte
)
Get
(
key
[]
byte
)
([]
byte
,
error
)
//GetKeys() []*Key
Delete
(
key
[]
byte
)
error
LastKnownTD
()
[]
byte
Close
()
Print
()
}
This diff is collapsed.
Click to expand it.
ethdb/database.go
+
84
−
27
View file @
7f32a08b
package
ethdb
import
(
"fmt"
"sync"
"time"
"github.com/ethereum/go-ethereum/compression/rle"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/syndtr/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb/iterator"
)
type
LDBDatabase
struct
{
fn
string
mu
sync
.
Mutex
db
*
leveldb
.
DB
comp
bool
queue
map
[
string
][]
byte
quit
chan
struct
{}
}
func
NewLDBDatabase
(
file
string
)
(
*
LDBDatabase
,
error
)
{
...
...
@@ -20,35 +28,61 @@ func NewLDBDatabase(file string) (*LDBDatabase, error) {
if
err
!=
nil
{
return
nil
,
err
}
database
:=
&
LDBDatabase
{
db
:
db
,
comp
:
true
}
database
:=
&
LDBDatabase
{
fn
:
file
,
db
:
db
,
quit
:
make
(
chan
struct
{}),
}
database
.
makeQueue
()
go
database
.
update
()
return
database
,
nil
}
func
(
self
*
LDBDatabase
)
makeQueue
()
{
self
.
queue
=
make
(
map
[
string
][]
byte
)
}
func
(
self
*
LDBDatabase
)
Put
(
key
[]
byte
,
value
[]
byte
)
{
if
self
.
comp
{
self
.
mu
.
Lock
()
defer
self
.
mu
.
Unlock
()
self
.
queue
[
string
(
key
)]
=
value
/*
value = rle.Compress(value)
}
err := self.db.Put(key, value, nil)
if err != nil {
fmt.Println("Error put", err)
}
*/
}
func
(
self
*
LDBDatabase
)
Get
(
key
[]
byte
)
([]
byte
,
error
)
{
self
.
mu
.
Lock
()
defer
self
.
mu
.
Unlock
()
// Check queue first
if
dat
,
ok
:=
self
.
queue
[
string
(
key
)];
ok
{
return
dat
,
nil
}
dat
,
err
:=
self
.
db
.
Get
(
key
,
nil
)
if
err
!=
nil
{
return
nil
,
err
}
if
self
.
comp
{
return
rle
.
Decompress
(
dat
)
}
return
dat
,
nil
}
func
(
self
*
LDBDatabase
)
Delete
(
key
[]
byte
)
error
{
self
.
mu
.
Lock
()
defer
self
.
mu
.
Unlock
()
// make sure it's not in the queue
delete
(
self
.
queue
,
string
(
key
))
return
self
.
db
.
Delete
(
key
,
nil
)
}
...
...
@@ -66,23 +100,46 @@ func (self *LDBDatabase) NewIterator() iterator.Iterator {
return
self
.
db
.
NewIterator
(
nil
,
nil
)
}
func
(
self
*
LDBDatabase
)
Write
(
batch
*
leveldb
.
Batch
)
error
{
func
(
self
*
LDBDatabase
)
Flush
()
error
{
self
.
mu
.
Lock
()
defer
self
.
mu
.
Unlock
()
batch
:=
new
(
leveldb
.
Batch
)
for
key
,
value
:=
range
self
.
queue
{
batch
.
Put
([]
byte
(
key
),
rle
.
Compress
(
value
))
}
self
.
makeQueue
()
// reset the queue
return
self
.
db
.
Write
(
batch
,
nil
)
}
func
(
self
*
LDBDatabase
)
Close
()
{
// Close the leveldb database
self
.
db
.
Close
()
self
.
quit
<-
struct
{}{}
<-
self
.
quit
glog
.
V
(
logger
.
Info
)
.
Infoln
(
"flushed and closed db:"
,
self
.
fn
)
}
func
(
self
*
LDBDatabase
)
Print
()
{
iter
:=
self
.
db
.
NewIterator
(
nil
,
nil
)
for
iter
.
Next
()
{
key
:=
iter
.
Key
()
value
:=
iter
.
Value
()
func
(
self
*
LDBDatabase
)
update
()
{
ticker
:=
time
.
NewTicker
(
1
*
time
.
Minute
)
done
:
for
{
select
{
case
<-
ticker
.
C
:
if
err
:=
self
.
Flush
();
err
!=
nil
{
glog
.
V
(
logger
.
Error
)
.
Infof
(
"error: flush '%s': %v
\n
"
,
self
.
fn
,
err
)
}
case
<-
self
.
quit
:
break
done
}
}
fmt
.
Printf
(
"%x(%d): "
,
key
,
len
(
key
))
node
:=
common
.
NewValueFromBytes
(
value
)
fmt
.
Printf
(
"%v
\n
"
,
node
)
if
err
:=
self
.
Flush
();
err
!=
nil
{
glog
.
V
(
logger
.
Error
)
.
Infof
(
"error: flush '%s': %v
\n
"
,
self
.
fn
,
err
)
}
// Close the leveldb database
self
.
db
.
Close
()
self
.
quit
<-
struct
{}{}
}
This diff is collapsed.
Click to expand it.
ethdb/database_test.go
+
10
−
17
View file @
7f32a08b
package
ethdb
/*
import
(
"bytes"
"testing"
"os"
"path"
"github.com/ethereum/go-ethereum/common"
)
func
TestCompression(t *testing.T)
{
db, err := NewLDBDatabase("testdb
")
if
err != nil
{
t.Fatal(err
)
func
newDb
()
*
LDBDatabase
{
file
:=
path
.
Join
(
"/"
,
"tmp"
,
"ldbtesttmpfile
"
)
if
common
.
FileExist
(
file
)
{
os
.
RemoveAll
(
file
)
}
in := make([]byte, 10)
db.Put([]byte("test1"), in)
out, err := db.Get([]byte("test1"))
if err != nil {
t.Fatal(err)
}
db
,
_
:=
NewLDBDatabase
(
file
)
if bytes.Compare(out, in) != 0 {
t.Error("put get", in, out)
}
return
db
}
*/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment