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, ...

learn more… | top users | synonyms (2)

0
votes
0answers
31 views

Which database is good for storing media files(mp3) [closed]

I am working on a music player so i want to store all of my mp3 files on the database and finally doing searching insertion on database so now i want to ask about like which one(Berkeley,sqlite,mysql) ...
0
votes
1answer
19 views

object storage in git

Doing stuff like "git ls-files" on big repos I have noticed that git is quite fast in this regard, subjectively faster than "find . -type f" would be I think (although I haven't done benchmarks). Is ...
1
vote
2answers
13 views

How do I use libdb-4.2 in a FreeBSD 9.1 system?

I'm attempting to write a small program in C that will open and read from a Berkeley 4.2 hash DB on a FreeBSD 9.1 system for testing, but I can't get it to compile. This is the first time I've written ...
0
votes
1answer
20 views

Open a Berkeley 1.85 DB file in Python 3.3

I'm working on converting this system I have to Python 3.3. On one end (where I am now), there's a Perl script that generates a large hash table tied to a Berkeley DB file where the keys are numbers ...
0
votes
1answer
39 views

How can I install berkeley database for IOS device

Hi I want to install berkeley db in my MAC. My Xcode version is 4.5.2. I downloaded db-5.3.21(Berkeley) from oracle site.I installed command line tool for xcode. I installed berkeley db in my MAC for ...
1
vote
0answers
40 views

bsddb 4.2.52 DBInvalidArgError 22 Invalid argument

I am simply trying to call open in Python using bsddb but running into the following error. Any idea? If not, is there a way to get a more detailed error message for debugging, getting more info can ...
0
votes
0answers
40 views

Is it possible use MongoDB replace with BerkelyDB for OpenLDAP?

According to my daily work, we are using BerkeleyDB+OpenLDAP for user authentication, but current I'm investigating the feasibility use MongoDB replace with BerkeleyDB? I know if possible I need to ...
0
votes
0answers
32 views

NOSQL GetByKey & Order

Now my architecture is based on Berkeley DB but doesn't perform well and it's not easy to clusterize. I'm looking for a NOSQL database to store key/value data clusterizable and with best performance ...
0
votes
1answer
17 views

How to tune read lock in BDB transaction

I have posted one thread https://forums.oracle.com/forums/thread.jspa?messageID=10459458&#10459458, but no answer is there. again, from ...
0
votes
2answers
69 views

Retrieve all records from Berkeley DB in java

Is there an easy way to get all key/value pairs in a given database? I read somewhere that I can use a Cursor but I couldn't find a real example of it. Thanks!
1
vote
1answer
75 views

Thinkaurelius Titan configuring BerkeleyDB

I am trying to created a Thinkaurelius titan datastore using: TitanGraph graph = TitanFactory.open("/tmp/graph") The documentation can be found at ...
1
vote
1answer
253 views

sudo easy_install bsddb3 error :Can't find a local Berkeley DB installation [closed]

I tried to make a plugin on qgis with Python 2.7.3 and there is a error happend and I find a way to install bsddb3 to replace bsddb but when I try $sudo easy_install bsddb3 it's give me a ...
0
votes
1answer
54 views

How to solve the memory leak in Berkeley DB batch insert mode?

I'm using Berkeley DB v5.3.21 to insert a massive amount of data (100K records) to a BDB queue. When I started using the batch insert mode, aka, using MultipleDatabaseEntry, it seem to cause a memory ...
0
votes
0answers
56 views

BerkeleyDB getting fat and slow

i'm trying to add 3e9 keys(with low repetition) to a BerkeleyDB at 50k per-second insertions, with composite records formed by a struct with two integers. Each key have length 30. I'm using C API. ...
1
vote
1answer
110 views

Inserting data into BerkeleyDB-JE is getting slower and slower

I'm trying to insert ~ 56,249,000 items in a berkeleydb-JE. I ran DbCacheSize to get some stats about my database: java -jar je-5.0.34.jar DbCacheSize -records 56248699 -key 8 -data 20 === ...
0
votes
0answers
55 views

Getting count of entities over range in Berkeley db je database

I have a Berkeley DB JE database with a lot of time series data. I would like to be able to count the number of items over a time range without having to iterate over them. Is this possible?
1
vote
2answers
51 views

BDB select records where key starts with

Given: Records stored as a simple string DatabaseEntry key-value, keys looks like: NODE_1 NODE_1_PROP_1 NODE_1_PROP_2 NODE_1_PROP_3 NODE_2 NODE_2_PROP_1 NODE_2_PROP_2 NODE_2_PROP_3 How to: Select ...
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 ...
0
votes
0answers
76 views

BDB- Recno multiple key/data pairs retrieval

I am new to BDB and have just started to work with Berkley DB (ver. 5.3.15) using the Linux C API. I set up a simple Recno DB which is populated with sequential keys 1,2,3….100. DB Records are in ...
0
votes
0answers
18 views

BDB3018 : unwritable page remaining in the cache after error 24?

I am doing some homework to perform sql queries using Berkeley db.I am using the DBEnv and multiple databases to store every column and number of rows by BTree.I have set cache size to ...
2
votes
1answer
49 views

Python Legacy Berkeley Database

I am using a program written in Python which was last updated in 2003. I've got everything working now except for one import: from BDBStorage.BerkeleyBase import BerkeleyConfig This looks like an a ...
2
votes
1answer
61 views

BerkeleyDB: exclusive lock for a whole database

Is there some way to acquire an exclusive write lock for a whole Berkeley DB database without having to close it and reopen it using Db::set_lk_exclusive()? Perhaps using DbEnv::lock_get()? But in ...
0
votes
1answer
76 views

Should I deallocate data after calling DB->put with DB_DBT_MALLOC flag on data?

I have a problem with deallocating memory after calling DB->put(). It says "double free or corruption", when I do it. Code sample: DBT key,value; int err; ... memset(value,0,sizeof(DBT)); ...
0
votes
0answers
127 views

Messed up Berkeley DB error message with C++ build of Fix8 in CentOS Linux

I built BerkleyDB successfully with the instructions found at: http://www.linuxfromscratch.org/blfs/view/svn/server/db.html I am trying to build Fix8 (fix8.org) on my CentOS 6.3 with a required ...
0
votes
1answer
67 views

Adding key-value pairs to BerkeleyDB using hash access method

I am trying to create a BerkeleyDB using the hash access method, like so: >>> from bsddb3 import db >>> dben = DB() >>> dben.open("filename", None, db.DB_HASH, ...
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
141 views

Add users to Berkeley db for PAM authentication

I am trying to add users into Berkeley db database for PAM authentication for vsftpd. The database been initially created from text file of user names and passwords by db_load utility. db_load -T -t ...
0
votes
1answer
88 views

insert data to Berkeley DB very poor performance in Big Data

I have already held the 80G Berkeley DB file. I measure the average insert speed is 8ms for one record(32 byte key/100 byte value) without transaction. Compare to insert to empty database with same ...
2
votes
2answers
108 views

Which key-value database should I use?

My application will use hundered's of tables and each table can have millions(4-5) of Key-Value pairs. No relations are required between tables. Following are the operations I perform on the tables. ...
0
votes
1answer
43 views

How to retrieve data whose key is less than a specified key using berkeley db?

As you see in the title, I want to retrieve data whose key is less than a specified key, and then I need to join many cursors which one could be more than a specified string, and another might be less ...
1
vote
1answer
44 views

Is there a good documentation or your own instructions on how to install Berkeley DB XML Python API on Windows?

I am supposed to install Berkeley DB and Berkeley DB XML for the first time and have specifically struggled out of the IOError: No such file or directory db\include\db.h problem. But after that I ...
1
vote
0answers
65 views

apache with berkeley db sleepycat [closed]

In order to set up SVN I require Apache with Berkeley DB(sleepycat) support. The system which I am provided with already has Apache installed and also SVN is installed. However, I am bot sure if ...
2
votes
1answer
453 views

Kyoto Cabinet / Berkeley DB : Hash table size limitations

I am having a hard time storing hundreds of millions of key/value pairs of 16/32bytes with a hash array on my SSD. With Kyoto Cabinet: When it works fine, it inserts at 70000 record/s. Once it drops, ...
0
votes
0answers
59 views

Will I be able to achieve more than 60K of inserts per second using Oracle's Berkeley DB? [closed]

I want to achieve more than 60K of inserts per second using Oracle's Berkeley DB. Is that possible?
1
vote
1answer
73 views

Berkeley DB optimization

I am using berkeley DB to solve a message queue, but I found out that after the queue raised to some size, the read speed went down fastly, I guess it's because it started to write on hard disk, is ...
1
vote
1answer
235 views

HypergraphDB Netbeans settings

I want to do something with the HypergraphDB in Java. I'm not very familiar with this language and IDE Netbeans. I followed steps describing the HGDB installation:Link to tutorial Now I want to write ...
1
vote
1answer
156 views

Reading Berkeley DB in subversion 1.7

I have a legecy subversion database that uses the Berkeley DB for the format. When I load the current Windows binaries (1.7.x) for Subversion, none of the distributions appear to support Berkeley DB ...
0
votes
0answers
28 views

Use a predefine filename for berkeley db [closed]

Is it possible to set the naming convention to be used by the Berkeley db log file? Thanks in Advance.
1
vote
2answers
61 views

How to track changes in files stored in Oracle Berkeley DB XML

I am wondering how it is possible to track the modifications made on XML files stored in a Berkeley DB XML. e.g. We have many XML files that store some parameters. We intent to store them in ...
4
votes
4answers
175 views

Providing fast `select count(*)` functionality in a web app

I'm re-implementing an app to support a national engineering contest, moving it from a local server to the cloud. In order to tell a team where they stand at the moment, the query has the form ...
1
vote
1answer
98 views

Can Berkeley DB be used asynchronously in java?

Is there a way to do non-blocking actions on the java interface of Berkeley DB and get the status and result of the action using a Future or something similar (like getting a result of a Callable ...
0
votes
1answer
470 views

openldap 2.4 configure replication using Syncrepl

i want to replicate ldap with Syncrepl and i follow http://www.openldap.org/doc/admin24/replication.html. i get trouble when i start provider which get " line 79: extra cruft after . slaptest: bad ...
0
votes
1answer
412 views

How to traverse berkeley-db database in descending order of 'value'?

I have a Berkeley-db database where both 'key' and 'value' are of type integer. Is there any way to traverse the database in descending order of 'value'? I'm using Berkeley-db je-5.0.58 API. The ...
0
votes
0answers
51 views

Berkeley DB for Windows 8 UI Applications

Will the APIs available in Windows 8 UI Applications support using Berkeley db?
1
vote
0answers
136 views

Berkeley DB: stuck at futex_wait because of previous abnormal quit during c api call

I'm programming in C, using berkeley db 4.3 (/usr/lib64/libdb-4.3.so) on RHEL5.6 with kernel 2.6.18-238_xen_AMD64. In my tests (writing 1,000,000 key/value pairs), if one process quitted abnormally ...
3
votes
2answers
114 views

How does Citadel structure it's data using only the BerkeleyDB key/value store?

I was reading over the Citadel documenation and it mented that it used BerkeleyDB to store the data. Since BerkeleyDB is a key/value store I'm wondering how they can manage all the data relations ...
1
vote
1answer
106 views

berkeley db partial match

Is there any way with berkeley db 5.x C API to get all the records with a key matching a prefix ? (without scanning the entire database) Maybe with a Btree prefix comparison custom callback ?
0
votes
0answers
45 views

Does berkeley db environment log grow without freeing when configured in-memory until environment is closed?

I am developing a multithreaded application which uses Berkeley DB. Performance is cruxial for this application, and it must conform with ACI, but not ACID, so I use transactional environment, but ...
1
vote
1answer
126 views

How to use Berkeley Db transactions without logging/writing to __db.00x files?

I am developping an application that uses Berkeley Db. It must conform with ACI (but not ACID), and performance is very important. More than that, performace was the reason why I had chosen Berkeley ...
0
votes
0answers
340 views

Netatalk for Windows [closed]

I have been looking for ways to backup an OS X Lion or Mountain Lion mac to a windows based server using time machine. Most of the solutions currently available seem to rely on using a linux virtual ...

1 2 3 4 5 6