Skip to content

Instantly share code, notes, and snippets.

@dopey
Created January 27, 2020 02:42
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dopey/89ec20f22c66c1333bf38c9b19b89758 to your computer and use it in GitHub Desktop.
Save dopey/89ec20f22c66c1333bf38c9b19b89758 to your computer and use it in GitHub Desktop.
package main
import (
"bytes"
"encoding/binary"
"fmt"
"os"
"github.com/dgraph-io/badger"
"github.com/pkg/errors"
)
func main() {
db, err := badger.Open(badger.DefaultOptions(os.Args[1]))
if err != nil {
panic(err)
}
defer db.Close()
for _, table := range tables {
c := countPrefix(db, []byte(table))
fmt.Printf("%s = %d\n", table, c)
}
}
// badgerEncode encodes a byte slice into a section of a BadgerKey.
// See documentation for toBadgerKey.
func badgerEncode(val []byte) ([]byte, error) {
l := len(val)
switch {
case l == 0:
return nil, errors.Errorf("input cannot be empty")
case l > 65535:
return nil, errors.Errorf("length of input cannot be greater than 65535")
default:
lb := new(bytes.Buffer)
if err := binary.Write(lb, binary.LittleEndian, uint16(l)); err != nil {
return nil, errors.Wrap(err, "error doing binary Write")
}
return append(lb.Bytes(), val...), nil
}
}
var tables = []string{
"used_ott",
"revoked_x509_certs",
"x509_certs",
"acme_accounts",
"acme_keyID_accountID_index",
"acme_authzs",
"acme_challenges",
"nonces",
"acme_orders",
"acme_account-orders-index",
"acme_certs",
}
func countPrefix(db *badger.DB, prefix []byte) int {
txn := db.NewTransaction(false)
defer txn.Discard()
opts := badger.DefaultIteratorOptions
prefix, err := badgerEncode(prefix)
if err != nil {
panic(err)
}
iter := txn.NewIterator(opts)
defer iter.Close()
count := 0
for iter.Seek(prefix); iter.ValidForPrefix(prefix); iter.Next() {
count++
}
return count
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment