Tagged Questions
Berkeley DB is part of the Oracle Berkeley DB family of products. It is a C library that links into your application, enabling SQL, key-value pair (NoSQL) and Java object data persistence. It provides C, C++, C# and Java APIs and support for many scripting languages. It's designed to be small, highly performant, reliable, available and scalable.
24
votes
6answers
8k views
BerkeleyDB vs. Tokyo Cabinet
I'm looking for general experiences from people who have used both, particularly on how the two compare on handling large numbers of records, transaction/concurrency/deadlock handling, and juicy ...
21
votes
3answers
5k views
How fast is Berkeley DB SQL compared to SQLite?
Oracle recently released a Berkeley DB back-end to SQLite. I happen to have a hundreds-of-megabytes SQLite database that could very well benefit from "improved performance, concurrency, scalability, ...
11
votes
8answers
5k views
Alternative to BerkeleyDB?
I'm looking for a dbm-like library that I can use in place of Berkeley DB, which I'm currently using. My main reason for switching is the licensing fees for BDB are pretty high (free for open source ...
8
votes
6answers
628 views
Looking for a drop-in replacement for a java.util.Map
Problem
Following up on this question, it seems that a file- or disk-based Map implementation may be the right solution to the problems I mentioned there. Short version:
Right now, I have a Map ...
8
votes
1answer
3k views
Examining Berkeley DB files from the CLI
I have a set of Berkeley DB files on my Linux file system that I'd like to examine.
What useful tools exist for getting a quick overview of the contents? I can write Perl scripts that use BDB modules ...
7
votes
5answers
1k views
BerkeleyDB Concurrency
This isn't a question, just more seeking expert advice.
What's the optimal level of concurrency that the C++ implementation of BerkeleyDB can reasonably support? How many threads can I have ...
6
votes
3answers
369 views
What is the proper way to access BerkeleyDB with Perl?
I've been having some problems with using BerkeleyDB. I have multiple instances of the same code pointed to a single repository of DB files, and everything runs fine for 5-32 hours, then suddenly ...
6
votes
6answers
1k views
Choosing between Berkeley DB Core and Berkeley DB JE
I'm designing a Java based web-app and I need a key-value store. Berkeley DB seems fitting enough for me, but there appears to be TWO Berkeley DBs to choose from: Berkeley DB Core which is implemented ...
6
votes
1answer
662 views
Berkeley DB in multithreaded applications
What is the best way to use berkeley DB (bdb) handles in a multi-threaded application?
Is it better to have each thread open its own handle; or,
is it better to open a single handle and have each ...
6
votes
7answers
3k views
Recommend a fast & scalable persistent Map - Java
I need a disk backed Map structure to use in a Java app. It must have the following criteria:
Capable of storing millions of records (even billions)
Fast lookup - the majority of operations on the ...
5
votes
6answers
213 views
Best C language key/value database around for massive amounts of entries
I am trying to create a key/value database with 300,000,000 key/value pairs of 8 bytes each (both for the key and the value). The requirement is to have a very fast key/value mechanism which can query ...
5
votes
6answers
2k views
Looking for a lightweight java-compatible in-memory key-value store
Berkeley DB would be the best choice probably but I can't use it due to licensing issues.
Are there any alternatives?
5
votes
7answers
2k views
Is Berkeley DB XML a viable database backend?
Apparently, BDB-XML has been around since at least 2003 but I only recently stumbled upon it on Oracle's website: Berkeley DB XML. Here's the blurb:
Oracle Berkeley DB XML is an open source, ...
4
votes
3answers
162 views
Python Berkeley DB/Sqlite
Since BerkeleyDB can use the SQLite api, can python use sqlite module to connect to BerkeleyDB.
This post suggests using something else, but could have been written pre-Api sync.
Best Python module ...
4
votes
2answers
202 views
A non-relational embedded database with a permissive free software license?
many thanks in advance for taking the time to look at my question.
(I am aware of this question Nonrelational Databases for C++., but my needs are a bit different and it only has one answer.)
I am ...
4
votes
3answers
541 views
SQLite Optimization for Millions of Entries?
I'm trying to tackle a problem by using a SQLite database and Perl modules. In the end, there will be tens of millions of entries I need to log. The only unique identifier for each item is a text ...
4
votes
3answers
2k views
GUI for Berkeley DB
I'm using Berkeley DB Java edition, via the DPL interface.
I want to ask if someone knows about any GUI library that could make it easy to browse the data saved in the database.
I know that BDB ...
4
votes
4answers
3k views
sqlite , berkeley db benchmarking
I want to create desktop application in c# for that i want to use embedded database like
(sqlite,berkeley db), so how can i start benchmarking for these databases ?
3
votes
1answer
64 views
Berkeley DB File Splitting
Our application uses berkeley db for temporary storage and persistance.A new issue has risen where tremendous data comes in from various input sources.Now the underlying file system does not support ...
3
votes
5answers
114 views
Any DBM for .NET?
I'm looking for a simple DBM library such as BerkeleyDB or Kyoto Cabinet, but natively working for .NET.
I need to manage more than one million records (maybe ten millions), and possibly in a ...
3
votes
1answer
158 views
Using RVM, how to ensure gems and non-gems see the same version of ruby?
I'm trying to install bdb on Ubuntu as a gem as follows,
gem install bdb
I'm not using sudo, since I am installing with rvm. The ruby version on my system is 1.9.1 but the version I'm using for ...
3
votes
3answers
361 views
BerkeleyDB write performance problems
I need a disk-based key-value store that can sustain high write and read performance for large data sets. Tall order, I know.
I'm trying the C BerkeleyDB (5.1.25) library from java and I'm seeing ...
3
votes
1answer
80 views
Berkeley DB tuple with unknown datatype
I'm working with a Berkeley database (in Java). I need to read a tuple where the sequence is a string, either an int or long, then another string. How can I determine if the tuple holds an int or a ...
3
votes
1answer
1k views
berkeleydb - B-Tree versus Hash Table
I am trying to understand what should drive the choice of the access method while using a BerkeleyDB : B-Tree versus HashTable.
A Hashtable provides O(1) lookup but inserts are expensive (using ...
3
votes
1answer
297 views
Best Python module for Berkeley DB?
According to the Python 2.6.5 docs [1], the bsddb module has been deprecated for removal in Python 3.0.
What module/wrapper should I be using instead?
[1] http://docs.python.org/library/bsddb.html
3
votes
4answers
728 views
C++: casting to void* and back
* ---Edit - now the whole sourse*
When I debug it on the end, "get" and "value" have different values! Probably, I convert to void* and back to User the wrong way?
#include <db_cxx.h>
#include ...
3
votes
4answers
1k views
Best way to use a PostgreSQL database as a simple key value store
I am being required to use a postgreSQL database and it will replace my current use of berkeleyDB. Although; I realize this is not an ideal situation, it is beyond my control.
So the question is... ...
3
votes
3answers
1k views
Which API in Java to use for file reading to have best performance?
In my place where I work, used to have files with more than million rows per file. Even though the server memory are more than 10GB with 8GB for JVM, sometimes the server get hanged for few moments ...
3
votes
2answers
1k views
Problem opening berkeley db in python
I have problems opening a berkeley db in python using bdtables. As bdtables is used by the library I am using to access the database, I need it to work.
The problem seems to be that the db ...
3
votes
4answers
2k views
Persistent Binary Tree / Hash table in .Net
I need a pure .Net persistent hashtable/binarytree, functionally similar to berkeley-db Java edition.
Functionally it should opperate in a similar maner to a DHT such memcached and velocity etc but ...
3
votes
1answer
268 views
Could you make a case for using Berkeley DB XML
I'm trying to read through the documentation on Berkeley DB XML, and I think I could really use a developer's blog post or synopsis of when they had a problem that found the XML layer atop Berkeley DB ...
2
votes
2answers
95 views
Big Endian bytes vs. Strings as keys in string - string databases
I haven't seen the common sense notion of converting an integer to network order and to write the resulting bytes into an indexable entity in a string - string database vs. writing the string ...
2
votes
1answer
27 views
Berkley issues updating data to new value using a hash config
I am trying to write a program that uses a Berkeley Database and i configured my database as followed :
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setType(DatabaseType.HASH);
...
2
votes
1answer
37 views
About Berkeley DB - creating the environment home
I have started playing around with Berkeley DB. This one is really interesting, but I am facing one problem.
While creating the Environment we create it like this -
Environment env = new ...
2
votes
1answer
132 views
How can I use the Berkeley DB within an iOS application?
I would like to use the Berkeley DB within an iOS application, but I'm not sure how to go about this.
How do you integrate the Berkeley DB within an iOS project? How do you communicate with it via ...
2
votes
1answer
146 views
How to view a ".db file in linux with no GUI
i have created a .db file using Berkeley DB using C. I want to view the contents inside the .db file. How to achieve this when I ahve no GUI on a linux machine?
2
votes
3answers
262 views
Fastest possible key->value disc store with mutiple values
I'm looking for a efficient way to store many key->value pairs
on disc for persistence, preferably with some caching.
The features needed are to either add to the value (concatenate)
for a given key ...
2
votes
2answers
480 views
How to use Berkeley DB SQL API in Android
My Android program has a huge DB overload and also involves multiple processes (Apps) accessing the database at the same time. Obviously, I found the bundled SQLite DB engine insufficient.
So I ...
2
votes
1answer
104 views
Iterate through Two Berkeley DBs
How do I iterate over two Berkeley DBs at the same time, advancing a cursor where appropriate (ex: the keys in one db is less than the other) in Perl?
2
votes
1answer
179 views
Accessing BDB file fails on linux using Perl
I have a program that reads a very large data file from Berkeley DB [ which is mounted on a SAN Storage ]. This works perfectly fine on a solaris machine using perl5.6.0 version.
However, the same ...
2
votes
4answers
831 views
Alternatives to Berkeley DB (Java)
Berkeley DB (JE) licensing may be a deal killer. I have a Java application going to a small set of customers but as it is a desktop application, my price cannot support individual instance licensing.
...
2
votes
1answer
227 views
Optimizing a BerkeleyDB JE Database
I plan to insert a large number of unique keys ( ~3E9 ) in a BerkeleyDB JE database.
The keys will have a fixed length ( ~10 bytes ) but the values will have a variable length. The database won't be ...
2
votes
1answer
177 views
Berkeley DB: Number of lock objects for hash access method
This page says that "for the Hash access method, you only need a single lock object".
http://www.oracle.com/technology/documentation/berkeley-db/db/programmer_reference/lock_max.html
Does this mean ...
2
votes
2answers
364 views
Does anyone have any experience using berkeley db with PHP?
I have to access and write to some berkeley db files that other applications share.
I really haven't found anything out there about using this with PHP. It really doesn't seem very popular.
Does ...
2
votes
1answer
150 views
Is it possible to access a BDB from pure Java?
I'm trying to access "cert8.db" mozilla file which is a BDB database. I know that there are bindings for languages, Java among them, but I'm trying to build a multiplatform app so I think that using ...
2
votes
2answers
337 views
berkeley DB: can't compile c++ codes
When I compiled the sample codes of C++, I got following info:
c++ excxx_example_database_read.cpp -o dbApp -I /usr/local/BerkeleyDB.5.0/include/
Undefined symbols:
"Dbt::Dbt(void*, unsigned int)", ...
2
votes
1answer
446 views
Why does my Berkeley DB concurrent data store application hang?
My application hangs when trying to open a concurrent data store (CDB) database for reading:
#0 0x0000003ad860b309 in pthread_cond_wait@@GLIBC_2.3.2 ()
from /lib64/libpthread.so.0
#1 ...
2
votes
2answers
507 views
Hierarhical data and BerkeleyDB
Good news! Since version 4.8 BerkeleyDB has c# interface. BerkeleyDB is a quite interesting thing for me due to it's non-SQL nature. I know it's an excellent tool if someone wants to store a lot of ...
2
votes
2answers
391 views
A UML way to describe a key/value datastore?
I'm currently writing the documentation for a database using berkeleyDB. I'd like to draw UML diagram describing the keys and the values of the datastores. Is there a 'standard' way to describe this ...
2
votes
3answers
698 views
How do you talk to a BerkeleyDB database from Ruby or Ruby on Rails?
I have no idea how I would set up a BerkelyDB database in a Ruby or Rails project.
Does anyone have any experience configuring one, that they could talk about?
Maybe using ActiveRecord or ...