Opened 17 years ago
Closed 17 years ago
#6848 closed (wontfix)
An Open Source Column-Store Backend
Reported by: | anonymous | Owned by: | nobody |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | dev |
Severity: | Keywords: | feature sql | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Adding a column-store database backend would, transparently, allow Django to become applicable to a wider array of problems. Column-stores are being touted by some leading pioneers in the database community as a solution to some of the prevalent problems in database management specifically exacerbated by row-based storage (i.e. MySQL, postgrs, Oracle, etc.) of large sets.
The shortcomings of column-store backend are both general and specific:
- Column stores are less efficient at inserts and updates due to their aggressive compression and indexing.
- The below implementations are not in the usual palette of database solutions provided by shared web hosts, nor have most web developers paid much attention to the VLDB world.
- Little legacy data is stored in databases of this type, reducing the effectiveness of inspectdb, one of the killer Django hooks.
Change History (2)
comment:1 by , 17 years ago
comment:2 by , 17 years ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
The general pattern for proposed database backends is for them to be developed independently as third-party projects; they don't need to be shipped with Django itself (since Django can use anything on your Python path).
Several open source column store databases are available. An alphabetical selection of data storage solutions this observer has investigated for a problem to solve with Django:
As the first several seem to be aimed more at special purposes (research, embedded, distributed) databases (and therefore applications), MonetDB appears to this observer as the most likely candidate for further investigation as a backend; the python interface (and its similarity to MySQLdb) is icing.