2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
package ethdb
|
|
|
|
|
|
|
|
import (
|
2015-06-27 17:03:31 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2015-07-09 07:42:35 +00:00
|
|
|
"sync"
|
2015-06-23 15:36:08 +00:00
|
|
|
"time"
|
|
|
|
|
2017-02-22 12:10:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/log"
|
2015-07-09 07:42:35 +00:00
|
|
|
"github.com/ethereum/go-ethereum/metrics"
|
2014-02-14 22:56:09 +00:00
|
|
|
"github.com/syndtr/goleveldb/leveldb"
|
2015-05-21 09:43:05 +00:00
|
|
|
"github.com/syndtr/goleveldb/leveldb/errors"
|
2016-09-27 10:13:13 +00:00
|
|
|
"github.com/syndtr/goleveldb/leveldb/filter"
|
2014-11-02 23:31:15 +00:00
|
|
|
"github.com/syndtr/goleveldb/leveldb/iterator"
|
2015-05-09 23:55:39 +00:00
|
|
|
"github.com/syndtr/goleveldb/leveldb/opt"
|
2015-07-09 07:42:35 +00:00
|
|
|
|
|
|
|
gometrics "github.com/rcrowley/go-metrics"
|
2014-02-14 22:56:09 +00:00
|
|
|
)
|
|
|
|
|
2015-05-12 09:28:33 +00:00
|
|
|
var OpenFileLimit = 64
|
2015-05-09 23:55:39 +00:00
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
type LDBDatabase struct {
|
2015-06-22 09:01:27 +00:00
|
|
|
fn string // filename for reporting
|
|
|
|
db *leveldb.DB // LevelDB instance
|
|
|
|
|
2015-07-09 07:42:35 +00:00
|
|
|
getTimer gometrics.Timer // Timer for measuring the database get request counts and latencies
|
|
|
|
putTimer gometrics.Timer // Timer for measuring the database put request counts and latencies
|
|
|
|
delTimer gometrics.Timer // Timer for measuring the database delete request counts and latencies
|
|
|
|
missMeter gometrics.Meter // Meter for measuring the missed database get requests
|
|
|
|
readMeter gometrics.Meter // Meter for measuring the database get request data usage
|
|
|
|
writeMeter gometrics.Meter // Meter for measuring the database put request data usage
|
|
|
|
compTimeMeter gometrics.Meter // Meter for measuring the total time spent in database compaction
|
|
|
|
compReadMeter gometrics.Meter // Meter for measuring the data read during compaction
|
|
|
|
compWriteMeter gometrics.Meter // Meter for measuring the data written during compaction
|
|
|
|
|
|
|
|
quitLock sync.Mutex // Mutex protecting the quit channel access
|
|
|
|
quitChan chan chan error // Quit channel to stop the metrics collection before closing the database
|
2017-03-02 13:06:16 +00:00
|
|
|
|
|
|
|
log log.Logger // Contextual logger tracking the database path
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2015-09-14 07:45:40 +00:00
|
|
|
// NewLDBDatabase returns a LevelDB wrapped object.
|
2016-02-19 12:29:19 +00:00
|
|
|
func NewLDBDatabase(file string, cache int, handles int) (*LDBDatabase, error) {
|
2017-03-02 13:06:16 +00:00
|
|
|
logger := log.New("database", file)
|
|
|
|
|
|
|
|
// Ensure we have some minimal caching and file guarantees
|
2015-07-22 10:46:20 +00:00
|
|
|
if cache < 16 {
|
|
|
|
cache = 16
|
|
|
|
}
|
2016-02-19 12:29:19 +00:00
|
|
|
if handles < 16 {
|
|
|
|
handles = 16
|
|
|
|
}
|
2017-03-02 13:06:16 +00:00
|
|
|
logger.Info("Allocated cache and file handles", "cache", cache, "handles", handles)
|
2015-07-22 10:46:20 +00:00
|
|
|
|
|
|
|
// Open the db and recover any potential corruptions
|
|
|
|
db, err := leveldb.OpenFile(file, &opt.Options{
|
2016-02-19 12:29:19 +00:00
|
|
|
OpenFilesCacheCapacity: handles,
|
2015-07-22 10:46:20 +00:00
|
|
|
BlockCacheCapacity: cache / 2 * opt.MiB,
|
|
|
|
WriteBuffer: cache / 4 * opt.MiB, // Two of these are used internally
|
2016-09-27 10:13:13 +00:00
|
|
|
Filter: filter.NewBloomFilter(10),
|
2015-07-22 10:46:20 +00:00
|
|
|
})
|
|
|
|
if _, corrupted := err.(*errors.ErrCorrupted); corrupted {
|
2015-05-21 09:43:05 +00:00
|
|
|
db, err = leveldb.RecoverFile(file, nil)
|
|
|
|
}
|
2015-07-22 10:46:20 +00:00
|
|
|
// (Re)check for errors and abort if opening of the db failed
|
2014-02-14 22:56:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-07-09 07:42:35 +00:00
|
|
|
return &LDBDatabase{
|
2017-03-02 13:06:16 +00:00
|
|
|
fn: file,
|
|
|
|
db: db,
|
|
|
|
log: logger,
|
2015-07-09 07:42:35 +00:00
|
|
|
}, nil
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2016-09-05 22:31:30 +00:00
|
|
|
// Path returns the path to the database directory.
|
|
|
|
func (db *LDBDatabase) Path() string {
|
|
|
|
return db.fn
|
|
|
|
}
|
|
|
|
|
2015-05-21 09:43:05 +00:00
|
|
|
// Put puts the given key / value to the queue
|
2017-03-02 13:06:16 +00:00
|
|
|
func (db *LDBDatabase) Put(key []byte, value []byte) error {
|
2015-06-23 15:36:08 +00:00
|
|
|
// Measure the database put latency, if requested
|
2017-03-02 13:06:16 +00:00
|
|
|
if db.putTimer != nil {
|
|
|
|
defer db.putTimer.UpdateSince(time.Now())
|
2015-06-23 10:03:33 +00:00
|
|
|
}
|
2015-06-23 15:36:08 +00:00
|
|
|
// Generate the data to write to disk, update the meter and write
|
2015-07-20 09:44:41 +00:00
|
|
|
//value = rle.Compress(value)
|
2015-06-23 15:36:08 +00:00
|
|
|
|
2017-03-02 13:06:16 +00:00
|
|
|
if db.writeMeter != nil {
|
|
|
|
db.writeMeter.Mark(int64(len(value)))
|
2015-06-22 09:01:27 +00:00
|
|
|
}
|
2017-03-02 13:06:16 +00:00
|
|
|
return db.db.Put(key, value, nil)
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2017-09-09 16:03:07 +00:00
|
|
|
func (db *LDBDatabase) Has(key []byte) (bool, error) {
|
|
|
|
return db.db.Has(key, nil)
|
|
|
|
}
|
|
|
|
|
2015-05-21 09:43:05 +00:00
|
|
|
// Get returns the given key if it's present.
|
2017-03-02 13:06:16 +00:00
|
|
|
func (db *LDBDatabase) Get(key []byte) ([]byte, error) {
|
2015-06-23 15:36:08 +00:00
|
|
|
// Measure the database get latency, if requested
|
2017-03-02 13:06:16 +00:00
|
|
|
if db.getTimer != nil {
|
|
|
|
defer db.getTimer.UpdateSince(time.Now())
|
2015-06-23 15:36:08 +00:00
|
|
|
}
|
|
|
|
// Retrieve the key and increment the miss counter if not found
|
2017-03-02 13:06:16 +00:00
|
|
|
dat, err := db.db.Get(key, nil)
|
2014-11-02 23:31:15 +00:00
|
|
|
if err != nil {
|
2017-03-02 13:06:16 +00:00
|
|
|
if db.missMeter != nil {
|
|
|
|
db.missMeter.Mark(1)
|
2015-06-23 15:36:08 +00:00
|
|
|
}
|
2014-11-02 23:31:15 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2015-06-23 15:36:08 +00:00
|
|
|
// Otherwise update the actually retrieved amount of data
|
2017-03-02 13:06:16 +00:00
|
|
|
if db.readMeter != nil {
|
|
|
|
db.readMeter.Mark(int64(len(dat)))
|
2015-06-22 09:01:27 +00:00
|
|
|
}
|
2015-07-20 09:44:41 +00:00
|
|
|
return dat, nil
|
|
|
|
//return rle.Decompress(dat)
|
2014-02-24 11:12:01 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 09:43:05 +00:00
|
|
|
// Delete deletes the key from the queue and database
|
2017-03-02 13:06:16 +00:00
|
|
|
func (db *LDBDatabase) Delete(key []byte) error {
|
2015-06-23 15:36:08 +00:00
|
|
|
// Measure the database delete latency, if requested
|
2017-03-02 13:06:16 +00:00
|
|
|
if db.delTimer != nil {
|
|
|
|
defer db.delTimer.UpdateSince(time.Now())
|
2015-06-23 10:03:33 +00:00
|
|
|
}
|
2015-06-23 15:36:08 +00:00
|
|
|
// Execute the actual operation
|
2017-03-02 13:06:16 +00:00
|
|
|
return db.db.Delete(key, nil)
|
2014-02-25 10:21:03 +00:00
|
|
|
}
|
|
|
|
|
2017-03-02 13:06:16 +00:00
|
|
|
func (db *LDBDatabase) NewIterator() iterator.Iterator {
|
|
|
|
return db.db.NewIterator(nil, nil)
|
2014-11-02 23:31:15 +00:00
|
|
|
}
|
|
|
|
|
2017-03-02 13:06:16 +00:00
|
|
|
func (db *LDBDatabase) Close() {
|
2015-07-09 07:42:35 +00:00
|
|
|
// Stop the metrics collection to avoid internal database races
|
2017-03-02 13:06:16 +00:00
|
|
|
db.quitLock.Lock()
|
|
|
|
defer db.quitLock.Unlock()
|
2015-07-09 07:42:35 +00:00
|
|
|
|
2017-03-02 13:06:16 +00:00
|
|
|
if db.quitChan != nil {
|
2015-07-09 07:42:35 +00:00
|
|
|
errc := make(chan error)
|
2017-03-02 13:06:16 +00:00
|
|
|
db.quitChan <- errc
|
2015-07-09 07:42:35 +00:00
|
|
|
if err := <-errc; err != nil {
|
2017-03-02 13:06:16 +00:00
|
|
|
db.log.Error("Metrics collection failed", "err", err)
|
2015-07-09 07:42:35 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-02 13:06:16 +00:00
|
|
|
err := db.db.Close()
|
2017-02-22 12:10:07 +00:00
|
|
|
if err == nil {
|
2017-03-02 13:06:16 +00:00
|
|
|
db.log.Info("Database closed")
|
2017-02-22 12:10:07 +00:00
|
|
|
} else {
|
2017-03-02 13:06:16 +00:00
|
|
|
db.log.Error("Failed to close database", "err", err)
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-19 14:20:49 +00:00
|
|
|
|
2017-03-02 13:06:16 +00:00
|
|
|
func (db *LDBDatabase) LDB() *leveldb.DB {
|
|
|
|
return db.db
|
2015-06-19 14:20:49 +00:00
|
|
|
}
|
2015-06-27 17:03:31 +00:00
|
|
|
|
2015-07-09 07:42:35 +00:00
|
|
|
// Meter configures the database metrics collectors and
|
2017-03-02 13:06:16 +00:00
|
|
|
func (db *LDBDatabase) Meter(prefix string) {
|
2016-02-23 13:47:04 +00:00
|
|
|
// Short circuit metering if the metrics system is disabled
|
|
|
|
if !metrics.Enabled {
|
|
|
|
return
|
|
|
|
}
|
2015-07-09 07:42:35 +00:00
|
|
|
// Initialize all the metrics collector at the requested prefix
|
2017-03-02 13:06:16 +00:00
|
|
|
db.getTimer = metrics.NewTimer(prefix + "user/gets")
|
|
|
|
db.putTimer = metrics.NewTimer(prefix + "user/puts")
|
|
|
|
db.delTimer = metrics.NewTimer(prefix + "user/dels")
|
|
|
|
db.missMeter = metrics.NewMeter(prefix + "user/misses")
|
|
|
|
db.readMeter = metrics.NewMeter(prefix + "user/reads")
|
|
|
|
db.writeMeter = metrics.NewMeter(prefix + "user/writes")
|
|
|
|
db.compTimeMeter = metrics.NewMeter(prefix + "compact/time")
|
|
|
|
db.compReadMeter = metrics.NewMeter(prefix + "compact/input")
|
|
|
|
db.compWriteMeter = metrics.NewMeter(prefix + "compact/output")
|
2015-07-09 07:42:35 +00:00
|
|
|
|
|
|
|
// Create a quit channel for the periodic collector and run it
|
2017-03-02 13:06:16 +00:00
|
|
|
db.quitLock.Lock()
|
|
|
|
db.quitChan = make(chan chan error)
|
|
|
|
db.quitLock.Unlock()
|
2015-07-09 07:42:35 +00:00
|
|
|
|
2017-03-02 13:06:16 +00:00
|
|
|
go db.meter(3 * time.Second)
|
2015-07-09 07:42:35 +00:00
|
|
|
}
|
|
|
|
|
2015-06-27 17:03:31 +00:00
|
|
|
// meter periodically retrieves internal leveldb counters and reports them to
|
|
|
|
// the metrics subsystem.
|
|
|
|
//
|
|
|
|
// This is how a stats table look like (currently):
|
|
|
|
// Compactions
|
|
|
|
// Level | Tables | Size(MB) | Time(sec) | Read(MB) | Write(MB)
|
|
|
|
// -------+------------+---------------+---------------+---------------+---------------
|
|
|
|
// 0 | 0 | 0.00000 | 1.27969 | 0.00000 | 12.31098
|
|
|
|
// 1 | 85 | 109.27913 | 28.09293 | 213.92493 | 214.26294
|
|
|
|
// 2 | 523 | 1000.37159 | 7.26059 | 66.86342 | 66.77884
|
|
|
|
// 3 | 570 | 1113.18458 | 0.00000 | 0.00000 | 0.00000
|
2017-03-02 13:06:16 +00:00
|
|
|
func (db *LDBDatabase) meter(refresh time.Duration) {
|
2015-06-27 17:03:31 +00:00
|
|
|
// Create the counters to store current and previous values
|
|
|
|
counters := make([][]float64, 2)
|
|
|
|
for i := 0; i < 2; i++ {
|
|
|
|
counters[i] = make([]float64, 3)
|
|
|
|
}
|
|
|
|
// Iterate ad infinitum and collect the stats
|
|
|
|
for i := 1; ; i++ {
|
|
|
|
// Retrieve the database stats
|
2017-03-02 13:06:16 +00:00
|
|
|
stats, err := db.db.GetProperty("leveldb.stats")
|
2015-06-27 17:03:31 +00:00
|
|
|
if err != nil {
|
2017-03-02 13:06:16 +00:00
|
|
|
db.log.Error("Failed to read database stats", "err", err)
|
2015-06-27 17:03:31 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
// Find the compaction table, skip the header
|
|
|
|
lines := strings.Split(stats, "\n")
|
|
|
|
for len(lines) > 0 && strings.TrimSpace(lines[0]) != "Compactions" {
|
|
|
|
lines = lines[1:]
|
|
|
|
}
|
|
|
|
if len(lines) <= 3 {
|
2017-03-02 13:06:16 +00:00
|
|
|
db.log.Error("Compaction table not found")
|
2015-06-27 17:03:31 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
lines = lines[3:]
|
|
|
|
|
|
|
|
// Iterate over all the table rows, and accumulate the entries
|
|
|
|
for j := 0; j < len(counters[i%2]); j++ {
|
|
|
|
counters[i%2][j] = 0
|
|
|
|
}
|
|
|
|
for _, line := range lines {
|
|
|
|
parts := strings.Split(line, "|")
|
|
|
|
if len(parts) != 6 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
for idx, counter := range parts[3:] {
|
2017-03-02 13:06:16 +00:00
|
|
|
value, err := strconv.ParseFloat(strings.TrimSpace(counter), 64)
|
|
|
|
if err != nil {
|
|
|
|
db.log.Error("Compaction entry parsing failed", "err", err)
|
2015-06-27 17:03:31 +00:00
|
|
|
return
|
|
|
|
}
|
2017-03-02 13:06:16 +00:00
|
|
|
counters[i%2][idx] += value
|
2015-06-27 17:03:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Update all the requested meters
|
2017-03-02 13:06:16 +00:00
|
|
|
if db.compTimeMeter != nil {
|
|
|
|
db.compTimeMeter.Mark(int64((counters[i%2][0] - counters[(i-1)%2][0]) * 1000 * 1000 * 1000))
|
2015-06-27 17:03:31 +00:00
|
|
|
}
|
2017-03-02 13:06:16 +00:00
|
|
|
if db.compReadMeter != nil {
|
|
|
|
db.compReadMeter.Mark(int64((counters[i%2][1] - counters[(i-1)%2][1]) * 1024 * 1024))
|
2015-06-27 17:03:31 +00:00
|
|
|
}
|
2017-03-02 13:06:16 +00:00
|
|
|
if db.compWriteMeter != nil {
|
|
|
|
db.compWriteMeter.Mark(int64((counters[i%2][2] - counters[(i-1)%2][2]) * 1024 * 1024))
|
2015-06-27 17:03:31 +00:00
|
|
|
}
|
|
|
|
// Sleep a bit, then repeat the stats collection
|
2015-07-09 07:42:35 +00:00
|
|
|
select {
|
2017-03-02 13:06:16 +00:00
|
|
|
case errc := <-db.quitChan:
|
2015-07-09 07:42:35 +00:00
|
|
|
// Quit requesting, stop hammering the database
|
|
|
|
errc <- nil
|
|
|
|
return
|
|
|
|
|
|
|
|
case <-time.After(refresh):
|
|
|
|
// Timeout, gather a new set of stats
|
|
|
|
}
|
2015-06-27 17:03:31 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-18 11:42:21 +00:00
|
|
|
|
|
|
|
func (db *LDBDatabase) NewBatch() Batch {
|
|
|
|
return &ldbBatch{db: db.db, b: new(leveldb.Batch)}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ldbBatch struct {
|
2017-09-09 16:03:07 +00:00
|
|
|
db *leveldb.DB
|
|
|
|
b *leveldb.Batch
|
|
|
|
size int
|
2015-08-18 11:42:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *ldbBatch) Put(key, value []byte) error {
|
|
|
|
b.b.Put(key, value)
|
2017-09-09 16:03:07 +00:00
|
|
|
b.size += len(value)
|
2015-08-18 11:42:21 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *ldbBatch) Write() error {
|
|
|
|
return b.db.Write(b.b, nil)
|
|
|
|
}
|
2017-01-11 12:26:09 +00:00
|
|
|
|
2017-09-09 16:03:07 +00:00
|
|
|
func (b *ldbBatch) ValueSize() int {
|
|
|
|
return b.size
|
|
|
|
}
|
|
|
|
|
2017-01-11 12:26:09 +00:00
|
|
|
type table struct {
|
|
|
|
db Database
|
|
|
|
prefix string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewTable returns a Database object that prefixes all keys with a given
|
|
|
|
// string.
|
|
|
|
func NewTable(db Database, prefix string) Database {
|
|
|
|
return &table{
|
|
|
|
db: db,
|
|
|
|
prefix: prefix,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dt *table) Put(key []byte, value []byte) error {
|
|
|
|
return dt.db.Put(append([]byte(dt.prefix), key...), value)
|
|
|
|
}
|
|
|
|
|
2017-09-09 16:03:07 +00:00
|
|
|
func (dt *table) Has(key []byte) (bool, error) {
|
|
|
|
return dt.db.Has(append([]byte(dt.prefix), key...))
|
|
|
|
}
|
|
|
|
|
2017-01-11 12:26:09 +00:00
|
|
|
func (dt *table) Get(key []byte) ([]byte, error) {
|
|
|
|
return dt.db.Get(append([]byte(dt.prefix), key...))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dt *table) Delete(key []byte) error {
|
|
|
|
return dt.db.Delete(append([]byte(dt.prefix), key...))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dt *table) Close() {
|
|
|
|
// Do nothing; don't close the underlying DB.
|
|
|
|
}
|
|
|
|
|
|
|
|
type tableBatch struct {
|
|
|
|
batch Batch
|
|
|
|
prefix string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewTableBatch returns a Batch object which prefixes all keys with a given string.
|
|
|
|
func NewTableBatch(db Database, prefix string) Batch {
|
|
|
|
return &tableBatch{db.NewBatch(), prefix}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dt *table) NewBatch() Batch {
|
|
|
|
return &tableBatch{dt.db.NewBatch(), dt.prefix}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tb *tableBatch) Put(key, value []byte) error {
|
|
|
|
return tb.batch.Put(append([]byte(tb.prefix), key...), value)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tb *tableBatch) Write() error {
|
|
|
|
return tb.batch.Write()
|
|
|
|
}
|
2017-09-09 16:03:07 +00:00
|
|
|
|
|
|
|
func (tb *tableBatch) ValueSize() int {
|
|
|
|
return tb.batch.ValueSize()
|
|
|
|
}
|