Datablitz

Datablitz
DataBlitz Main Memory RDBMS
Developer(s) Lucent Technologies
Initial release 1997
Stable release 7.1 / 4 Aug 2010
Written in C++, plus Java for the JDBC driver
Operating system Linux, Solaris
Available in C/C++, Java
Type in-memory RDBMS
License Proprietary
Website

Bell Labs;

Mascon Global Limited

DataBlitz is a general purpose main memory database management system, developed by Lucent Bell Labs Research in 1995. It replaced various home-grown database products used throughout Lucent beginning in 1997.

It was originally named "Dali", and provided recovery and concurrency control features. Later, Dali was renamed as "DataBlitz".

DataBlitz provides a platform for building high-performance shared memory applications that can survive failures or organize large amounts of data with features suited to many applications.

Applications for DataBlitz include:

  • Switching and call routing in telecommunications
  • Real-time billing
  • High-performance Web servers
  • Financial trading applications
  • Data caching


Contents

Features of DataBlitz

  • Architecture for high performance
    • No disk access for read operations and limited disk access for write operations
    • All algorithms optimized for memory rather than disk
    • Direct shared memory access to data
    • Native C++ API for faster data access
    • Support Multithread applications.
  • Full Transaction Semantics
    • Atomicity
    • Consistency
    • Isolation
    • Durability
  • High Availability
    • Data replication to enhance availability and redundancy
    • Asynchronous and Synchronous data replication
    • Multi level Recovery to handle all kinds of failures
    • Enhanced Fault Tolerance
    • Code-word and Memory protection to detect and prevent data corruption due to stray application pointers
  • Fuzzy checkpoints that only minimally interfere with transaction processing
  • Relational C++ interfaces to optimize CPU cycles
  • Supports a broad subset of ANSI SQL 99, using Dharma SQL engine
  • Support SQL, ODBC and JDBC through Dharma SQL engine.
  • On-line backup and restore facility

Relational

The DataBlitz Relational Manager is a C++ class library interface to a relational system with SQL support limited to definition statements. Schema information is stored in tables, and can be queried using the relational API itself. Indices may be created on arbitrary subsets of the attributes in a table. Referential integrity is supported (foreign key constraints), as are null values, date and time attribute types, and variable length fields. Navigation is supported through iterators over a single table. A conjunctive query may be specified for the iterator, and automatic index selection is performed. Both fine-grained and multi-granularity locking strategies are used for high concurrency without incurring too much overhead. Also, locks obtained by iterators avoid the "phantom" anomaly...

Collections and Indices

DataBlitz also provides higher-layer interfaces for grouping related data items, and performing scans as well as associative access (via indices) on data items in a group...

Storage Manager

Each database file in DataBlitz consists of segments, which are contiguous page-aligned units of allocation, similar to clusters in a file system. Chunk is a collection of segments. Recovery characteristics of memory (transient, zeroed, or persistent) are specified on a per-chunk basis at the time of chunk creation. Zeroed memory remains allocated upon recovery but each byte is set to zero. With transient memory, the data are no longer allocated upon recovery. Users allocate within a chunk, and do not specify a particular segment. Since segments can be arbitrarily large (within the size of the database), arbitrarily large objects can be stored contiguously. Upon allocation within a chunk, the system returns a standard DataBlitz pointer to the space, which specifies the offset within the file. The elements shown linking together segments in a chunk are themselves stored in a special chunk used for control information. Storing control information separately from the data reduces the likelihood of it being corrupted by stray application pointers...

Replication

In DataBlitz, data can be replicated across multiple DataBlitz instances running on machines connected by a network in a distributed environment. The primary benefits of data replication are higher availability and improved performance. For instance, if a table is stored only at a single site in a distributed setting, and if that site crashes or becomes unavailable due to a network failure, then the table would become inaccessible to other sites in the system. DataBlitz provides support for data replication at the granularity of tables. Each table can be replicated at any subset of sites in the system...

References


Wikimedia Foundation. 2010.

Игры ⚽ Нужно решить контрольную?

Look at other dictionaries:

  • T-tree — In computer science a T tree is a type of binary tree data structure that is used by main memory databases, such as DataBlitz, e X treme DB, MySQL Cluster, Oracle TimesTen and [http://www.kairosdbms.com Kairos] [http://www.emware.co.kr… …   Wikipedia

  • Bell Labs — Bell Laboratories (also known as Bell Labs and formerly known as AT T Bell Laboratories and Bell Telephone Laboratories) is the research organization of Alcatel Lucent and previously the American Telephone Telegraph Company (AT T). Bell… …   Wikipedia

  • In-memory database — An in memory database (IMDB; also main memory database system or MMDB) is a database management system that primarily relies on main memory for computer data storage. It is contrasted with database management systems which employ a disk storage… …   Wikipedia

  • CSQL — is an open source main memory high performance relational database management system developed in sourceforge.net. It is designed to provide high performance on simple SQL queries and DML statements which involves only one table.It supports only… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”