LevelDB is a key-value storage library written by Google that provides an ordered mapping from string keys to string values.

learn more… | top users | synonyms

0
votes
0answers
15 views

LevelDB: Iterate keys by insertion order

What's a good strategy for generating auto-incrementing keys in LevelDB? My goal is to be able to iterate over the keys in the order that they were inserted.
0
votes
1answer
13 views

LevelDB: Lifetime and responsibility of comparators, block_cache and filter_policy?

Do I need to delete my comparators, block_cache and filter_policy after closing my database? Do they need to exist during the lifetime of the database? I cannot find this info in any of the ...
1
vote
3answers
74 views

does leveldb/Cassandra's bloom filter help in range query?

As I knonw, leveldb/cassandra stores their records in SSTable, and use bloom filter to select SSTable on performing exact key query, does their bloom filter help in key range query? Thanks!
0
votes
0answers
64 views

How to access Bitcoins transaction database? [migrated]

I want to process the bitcoin transaction network. As I understand it, the Bitcoin-Qt client downloads and stores all that information locally. Since version 0.8 LevelDB is used to access this data. ...
0
votes
1answer
61 views

Installing plyvel (leveldb) on Ubuntu 12.04

I have no problems installing levelDB and plyvel on my dev laptop running Ubuntu 12.10. On my server running Ubuntu 12.04, I received this error. $python -c 'import plyvel' Traceback (most recent ...
2
votes
2answers
119 views

Key-value store for Node.js that works under Windows/Node 0.8

I am working on a project that needs a fast, embedded and persistent key-value store (like LevelDB), but the development environment is restricted to Windows 7 / Node 0.8. My natural response was to ...
0
votes
1answer
45 views

Leveldb for Java: deleting while iterating

I am running this test: public class LeveldbTest { @Test public void test() throws IOException, InterruptedException { DBFactory factory = new Iq80DBFactory(); Options opts = new Options(); ...
0
votes
0answers
52 views

technical query regarding performance issues for xml data read/write/store operations

Our Client owns a CRM system which transfers Data to a client using an Antenna Server. The problem we are experiencing currently ist that there are quite big performace issues, adding that no ...
1
vote
2answers
148 views

Why does LevelDB needs more than two levels?

I think only two levels(level-0 and level-1) is ok, why does LevelDB need level-2, level-3, and more?
0
votes
1answer
77 views

Why does the leveldb DB::Get API use std::string as value type?

I wanna to store key(url) & value(jpg image) in leveldb. As it is said, Keys and values are arbitrary byte arrays. how can I use the DB::Get API?
5
votes
2answers
208 views

Using key-value databases as a set with persistent indices

Since the below got a bit long: Here's the tl;dr; version: Is there an existing key/value best-practice for fast key and value lookup, something like a hash-based set with persistent indices? I'm ...
2
votes
2answers
254 views

How to get the exact number of keys in leveldb fast?

It seems there's not such interface.. Do I have to iterate all keys to get the count? What is the design purpose of that? Or what is the limitation of implement this feature?
4
votes
2answers
198 views

Efficient way to check existence in a large set of strings

I have a set of 100+ million strings, each up to 63 characters long. I have lots of disk space and very little memory (512 MB). I need to query for existence alone, and store no additional metadata. ...
1
vote
0answers
116 views

Does LevelDB supports hot backups (or equivalent)?

Currently we are evaluating several key+value data stores, to replace an older isam currently in use by owr main application (for 20 something years!) ... The problem is that our current isam doesn't ...
2
votes
1answer
323 views

mmap returns can not allocate memory, even though there is enough

I'm performing a pressure test with leveldb. In util/env_poisx.cc : NewRandomAccessFile() void* base = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0); after 3 million data (each 100k) insert. ...
3
votes
3answers
728 views

leveldb-go example, docs

LevelDB-Go is port of LevelDB in Go language. LevelDB-Go often referred as native alternative for Go apps. Website has no examples and no documentation. Should I learn it by reading source code? or ...
1
vote
2answers
374 views

how to create multiple logical tablets in single levelDB instance?

I am working on a Distributed key-value system (or data-store), which uses levelDB as its embedded database library in the back-end. I want one node/machine to host multiple tablets (for the purpose ...
0
votes
0answers
78 views

how to persist cache to centralized leveldb storage

I try to use leveldb as the centralized back-end storage for the cache, the problem is how to persist the cache in nodes to the centralized leveldb storage
1
vote
2answers
590 views

Anyone used LevelDB store for ActiveMQ message persistence?

At present we are using KahaDB store for message persistence in ActiveMQ and so far good. As per the release notes of ActiveMQ5.6, LevelDB provides enhanced performance. Has anyone tried usign LevelDB ...
0
votes
0answers
135 views

Is there a good way to use leveldb with gevent?

There's a project I'd like to try coding. Going by the conditions of the project (small amounts of data, potentially lots of clients, and most of the time being spent waiting for HTTP requests to ...
0
votes
1answer
286 views

Which databases is better to store blob data? [closed]

I want to use one open source database to store my blob data(images or files). I have know a lots of open source database like LevelDB,MongoDB,PostgreSQL,Ingres,MYSQL and so on, but I don't know which ...
1
vote
0answers
153 views

leveldbjni IO error LOCK: No such file or directory

We're trying to use leveldbjni on redhat machines. It worked flawlessly on ubuntu. But on redhat it gives the following error: org.fusesource.leveldbjni.internal.NativeDB$DBException: IO error: ...
0
votes
1answer
222 views

Does leveldb have structural problems if values are blank and there's just a key?

I'm working on a design where secondary indexes to data will be built with all the information in the key, needing nothing in the value side. Is this likely to cause problems? I'm not asking is it ...
2
votes
1answer
238 views

how to extract leveldb type data store (sstable + memtable) from cassandra or hbase?

LevelDB is a very interesting C++ data store from Google. I am looking for something similar in the Java world (frankly so I can understand the code better, run it on windows more easily, etc.). I ...
4
votes
2answers
1k views

How to use LevelDB in go?

From http://code.google.com/p/leveldb/, it seems not explicit or easy to use LevelDB with Go. But I really want to know how to use it in Go. Could anyone give me a clue?
1
vote
2answers
704 views

LevelDB: Implementing an iterator to enumerate by key prefix

I am looking for an efficient way to implement a key enumerator using leveldb to iterate by a key-prefix. The key is byte array (and the db uses default byte array comparer, so all keys with specific ...
0
votes
1answer
252 views

LevelDB Download Issues

Can anybody help me, from where I can download LevelDB for Java-Windows because I found it is empty? And any link how to install and run will be helpful to me.
1
vote
4answers
518 views

> 60K inserts per second key value store to be used from Java

Am working on custom solution where I need to store huge data to file/db at the speed of 60K records per second. This data is result of incoming continuous stream. leveldb - it can NOT be accessed ...
1
vote
1answer
107 views

Loading leveldb from stream

Is there a way to load a leveldb store from a data stream? If I were to take the stream of a leveldb instance and tuck it in a DLL as a manifest resource stream, will I have a way to just load that ...
0
votes
3answers
2k views

string (from substr) conversion to unsigned int

I have a string which actually contains a number and a string, separated by ,, for instance "12,fooBar". I would like to put it into separated variables, i.e. the number into unsigned int myNum and ...
1
vote
2answers
1k views

For LevelDB, how can I get the performance of random writes as same as claimed “official” performance report?

One the official site of leveldb(http://code.google.com/p/leveldb/), there is a performance report. I pasted as below. Below is from official leveldb benchmark Here is a performance report (with ...
2
votes
5answers
304 views

increase number in string

I have to save an increasing ID as key into a levelDB database. So what I get (and what I have to give to levelDB) is a string. Question: Is there an elegant way to increase a number saved in a ...
7
votes
3answers
1k views

Is there a good port of leveldb for C#?

I wish to use leveldb in my pure C# project. I have googled for a C# version of leveldb, but got no lucky. Any one can tell me where I can find a C# version of leveldb? Thanks
1
vote
1answer
596 views

leveldb example not working on windows : Error LNK2029

In order to test leveldb, I tried to reproduce the leveldb's example on VS 2008. #include <assert.h> #include "leveldb/db.h" int main() { leveldb::DB* db; leveldb::Options options; ...
1
vote
1answer
529 views

Multiple instances of a levelDB database at the same time

Is there a way to access a levelDB database from several programs? Is there some kind of option to open the dababase as read only? For now, when opening the same database from to programs I get: ...
0
votes
1answer
131 views

Is there a difference between WebOS LevelDB and Google LevelDB?

Is there a difference between WebOS LevelDB and Google LevelDB? Are these two independent projects or is WebOS LevelDB only a integration of Google's database into WebOS?
2
votes
2answers
140 views

Retrieving freebase quad dump type names from id

I'm currently working on a project using the freebase dumps, which I insert assertions into a per-mid ordered LevelDB. My goal is to be able for a given name, like Bob Dylan, to retrieve every types ...
2
votes
1answer
244 views

LevelDB key,value from csv

I've huge csv file database of ~5M rows having below fields start_ip,end_ip,country,city,lat,long I am storing these in LevelDB using start_ip as the key and rest as the value. How can I retrieve ...
2
votes
1answer
873 views

How is it possible to build database index on top of key/value store?

I was reading about LevelDB and found out that: Upcoming versions of the Chrome browser include an implementation of the IndexedDB HTML5 API that is built on top of LevelDB IndexedDB is also a ...
0
votes
2answers
636 views

Passing Protocol buffer serialized datas from C++ to Python via LevelDB

Though I've followed the excellent Protocol Buffer documentation and tutorials for C++ and Python, I can't achieve my goal which is : - to serialize datas from a C++ process. - insert it into ...
0
votes
1answer
541 views

What constitutes a transaction layer when talking about database systems?

For example, LevelDB doesn't support multi-statement transactions. I read somewhere that you would have to deal with those in a "transactional layer". What would this layer have to do to add ...
2
votes
1answer
365 views

How to cast from char pointer to custom object pointer

I'm using leveldb to store key-value pairs of integer and MyClass objects. Actually, a key can contain more then one of theses objects. The problem I have appears when retrieving the data from the ...
2
votes
1answer
503 views

Linking static method in wrapper class for leveldb

I try to write a wrapper class for leveldb. Basically the part of the header file which generates my problem is (CLevelDBStore.h:) #include "leveldb/db.h" #include "leveldb/comparator.h" using ...
2
votes
2answers
421 views

Can LevelDB snapshots survive a close of the database?

I'm wondering if the 'snapshot' facility of the LevelDB library can create a snapshot reference that could be saved even after a close of the open database object (and thus reused on a subsequent ...
2
votes
2answers
501 views

Can integer keys / values be stored in LevelDB?

I have searched for key value stores that support integer keys and integer values. LevelDB seems a good option, though I can't find any information on whether integer values/keys are supported
1
vote
2answers
295 views

Integer values in leveldb

I would like to use leveldb to store integers and integer arrays efficiently, in both c++ and python. For integers in C++, i could convert the int to a char array. Any suggestions for storing the ...
7
votes
3answers
553 views

Double precision floating-point comparison

I'm a little confused here- would comparison of doubles still work correctly when they're stored as opaque (binary) fields? The problem I'm facing is the fact that the double includes a leading bit ...
1
vote
1answer
436 views

How to sort LevelDB by value

I'm using leveldb to store records (key-value), where the key is a 64-bit hash and the value is a double. To make an analogy: think of the 64-bit hash is a unique ID of a customer and the double as an ...
0
votes
2answers
1k views

LevelDB vs. std::map

In our application we use std::map to store (key, value) data and use serialization to store that data on disk. With this approach we are finding that the disk I/O is performance bottleneck and ...
0
votes
2answers
229 views

LevelDB asserts when deleting the LevelDB instance

I get some super annoying asserts when I try to delete the leveldb instance and I'm not sure why it's happening! The assert is happening in the version_set.cc file: void ...

1 2