vote up 1 vote down star

I need to index up to 500,000 entries for fastest read. The index needs to be rebuilt periodically , on disk. I am trying to decide between a simple file like a hash on disk or a single table in an embedded database. I have no need for an RDBMS engine.

flag

20% accept rate
What is this for? Is this inside of a database management system (MySQL, etc.?) Are you indexing flat files on disk? Are they binary or ASCII?? What is going on? – Matt Rogish Sep 16 '08 at 0:21
It can be a flat file. Entries are ASCII and up to 512 characters. I need to store and get a state attribute. – Notitze Sep 16 '08 at 0:44

7 Answers

vote up 1 vote down

I'm assuming you're referring to indexing tables on a relational DBMS (like mySql, Oracle, or Postgres).

Indexes are secondary data stores that keep a record of a subset of fields for a table in a specific order.

If you create an index, any query that includes the subset of fields that are indexed in its WHERE clause will perform faster.

However, adding indexes will reduce INSERT performance.

In general, indexes don't need to be rebuilt unless they become corrupted. They should be maintained on the fly by your DBMS.

link|flag
vote up 1 vote down

Perhaps BDB? It is a high perf. database that doesn't use a DBMS.

link|flag
vote up 1 vote down

If you've storing state objects by key, how about Berkeley DB.

link|flag
vote up 1 vote down

cdb if the data does not change.

/Allan

link|flag
vote up 0 vote down

If the data doesn't need to be completely up to date, you might also like to think about using a data warehousing tool for OLAP purposes (such as MSOLAP). The can perform lightning fast read-only queries based on pre-calculated data.

link|flag
vote up 0 vote down

PyTables Pro claims that "for situations that don't require fast updates or deletions, OPSI is probably one of the best indexing engines available". However I've not personally used it, but the F/OSS version of PyTables gives already gives you good performance:

http://www.pytables.org/moin/PyTablesPro

link|flag
vote up -1 vote down

This is what MapReduce was invented for. Hadoop is a cool java implementation.

link|flag
MapReduce has nothing to do with reducing index response times in databases. – 1800 INFORMATION Sep 16 '08 at 0:28
No, it doesn't. But as I understand the question, it's about reading from disk. – sblundy Sep 16 '08 at 0:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.