CUBRID is an open-source relational DBMS designed to optimize services in web.[05]
- Website
- https://www.cubrid.org/[01]
- Source Code
- https://github.com/CUBRID/cubrid[02]
- Developer
- Country of Origin
- KR
- Start Year
- 2008 [06]
- Project Type
- Open Source
- Written in
- C
- Compatible With
- MySQL
- Licenses
- BSD License, GPL v2
- Wikipedia
- https://en.wikipedia.org/wiki/CUBRID[04]
CUBRID is an open-source relational DBMS designed to optimize services in web.[05]
History[06][07]
The CUBRID project started in South Korea in 2006, with NHN (later split into Naver Corporation and NHN Entertainment in 2013) as a major co-developer. In 2008, CUBRID version 1.1 (R1.1) was released as an open source project, later this version was re-named as 8.1.1. As of December 2018, CUBRID is ranked as the 65nd most popular relational DBMS by DB-Engines.
Checkpoints[08]
CUBRID allows user to configure checkpoint through two options:
checkpoint_every_size: configure checkpoint interval by log page, defaults to 100000 *log_page_size. Checkpoint will be periodically processed every time after the transaction log size reaches this value.checkpoint_interval: configure checkpoint periodically by a fixed time interval. Defaults to 6 minutes.
Additionally, CUBRID also allows user to set a slow data flush (from buffer to disk) by setting the parameter checkpoint_sleep_msecs.
Concurrency Control[09][10]
Since v10.0, CUBRID moved from two phase locking protocol (2PL) to a Multiversion Concurrency Control (MVCC) protocol. The gain is mostly non-blocking reads for read intensive applications, typical in real-world use cases. This also grants point-in-time consistent view of the database, and reduction of performance costs compared to other concurrency protocols.
Data Model[05]
CUBRID is an object-relational database management system, that is, it is essentially similar to relational database, but also provides an object oriented database elements relations.
Foreign Keys[11]
CUBRID supports foreign key constraint, i.e. a set of columns that references the primary key in other tables. Users can also specify what action is triggered by update or delete of the primary key referenced. Options include:
CASCADE: deletes the foreign key when the associated the primary key got deleted.SET NULL: updates the value of the foreign key toNULLwhen the corresponding record is deleted or updated.RESTRICT: guarantees the primary key associated with this foreign key remains constant. Any transaction attempting to update or delete this primary key will be roll back.
Indexes[12][13]
CUBRID uses B-trees for indexes files. It supports the following types of indexes:
- Indexes and unique indexes
- Filtered index: used for creating indexes on a subset of rows in the table if certain criteria is met. The criteria is set by the user when creating this filtered index.
- Function-based index: used for indexing rows based on a function accepting values in table rows as arguments. It is typically used for indexes created from complex conditions or calculations.
Isolation Levels[09][14]
CUBRID supports true snapshot isolation under the Multiversion Concurrency Control (MVCC) protocol. CUBRID provides 3 isolation levels: Serializable, Repeatable read, and Read committed, where Read commited is the default.
Joins[15]
CUBRID allows user to set optimization levels and get current query plan. Specifically for join methods, it supports nested loop join, sort merge join (can be enabled by parameter optimizer_enable_merge_join, which defaults to no), and index nested loop join.
Logging[16]
CUBRID allows user to configure the frequency of logging and the life span of log archives. For example, user can set the size of log buffer cached in memory via parameter log_buffer_size, and the maximum number of archive log files stored in disk via log_max_archives. Archiving runs in the background by default, and could be changed by setting background_archiving to no.
Query Compilation[17][18][19]
CUBRID in general does not support query compilation. However, its PHP API (and PHP API only) provides a method cubrid_prepare which pre-compiles the SQL statement accepted, which can be used for re-executing the statement or effectively processing Long Data.
Query Interface[20][21][22][23][24]
CUBRID supports a wide range of SQL syntaxs. It also provides APIs in various languages with corresponding driver, e.g. JDBC Driver, PHP Driver, CCI Driver (C-based application), Perl Driver, Python Driver, etc. Additionally, user can also interact with CUBRID via its GUI-based program called CUBRID Manager.
Storage Architecture[25][26]
CUBRID is a disk-oriented database, memory is used for caching purposes. User can configure several disk-related parameters for database volumes and files, such as db_volume_size (default value 512M), log_volume_size (default value 512M), and unfill_factor, which defines the percentage of disk space allocated in a heap page for updates.
Storage Model[19][27]
As an object-relational database, CUBRID stores records as objects with an unique Object Identifier (OID). Insertions, deletions and modifications of records on pages are managed by the Slotted Page Manager, and large object which does not fit in a single page is placed on overflow pages managed by the Overflow File Manager.
Stored Procedures[28]
CUBRID supports stored functions and procedures which enables complicated logic infeasiable otherwise through SQL. Specifically, the java_stored_procedure parameter needs to be set to yes in cubrid.conf (defaults to no), and compiled Java classes can be loaded into CUBRID via its loadjava utility, and published via CREATE FUNCTION.
System Architecture[29][30]
CUBRID allows one master process for each host. It offers CUBRID High Availability (HA) which supports uninterrupted services under a hardware, software or network failure. It ensures database synchronization among multiple servers, and is implemented under shared-nothing architecture. Synchronization between an active server and a standby server is achieved through transaction log multiplexing and reflection.
Views[31]
CUBRID supports creation of views via statement CREATE VIEW. The virtual tables does not exist physically, but can be updatable if it satisfies some criteria.
Citations
31 sources- CUBRID | Enterprise Open Source DBMS cubrid.org
- GitHub - CUBRID/cubrid: CUBRID is a comprehensive open source relational database management system highly optimized for Web Applications. · GitHub github.com
- CUBRID Foundation: Manuals cubrid.org
- CUBRID - Wikipedia wikipedia.org
- Introduction to CUBRID | CUBRID 10.1 User Manual cubrid.org
- Meet CUBRID: One of Korea’s Top Open Source Projects | Alolita Sharma technetra.com
- https://db-engines.com/en/ranking/relational+dbms db-engines.com
- System Parameters | CUBRID 10.1 User Manual cubrid.org
- System Parameters | CUBRID 10.1 User Manual cubrid.org
- Database Transaction | CUBRID 10.1 User Manual cubrid.org
- TABLE DEFINITION STATEMENTS | CUBRID 10.1 User Manual cubrid.org
- Updating Statistics | CUBRID 10.1 User Manual cubrid.org
- INDEX DEFINITION STATEMENTS | CUBRID 10.1 User Manual cubrid.org
- Database Transaction | CUBRID 10.1 User Manual cubrid.org
- Updating Statistics | CUBRID 10.1 User Manual cubrid.org
- System Parameters | CUBRID 10.1 User Manual cubrid.org
- Introduction to CUBRID | CUBRID 10.1 User Manual cubrid.org
- PHP: cubrid_prepare - Manual php.net
- CUBRID Inside - Architecture, Source & Management Components | PPTX slideshare.net
- API Reference | CUBRID 10.1 User Manual cubrid.org
- CSQL Interpreter | CUBRID 10.1 User Manual cubrid.org
- CUBRID SQL | CUBRID 10.1 User Manual cubrid.org
- Query Tools | CUBRID 10.1 User Manual cubrid.org
- Query Tools | CUBRID 10.1 User Manual cubrid.org
- System Parameters | CUBRID 10.1 User Manual cubrid.org
- https://www.slideshare.net/cubrid/cubrid-inside-architecture-source-management-component slideshare.net
- DZone: Programming & DevOps news, tutorials & tools dzone.com
- Java Stored Function/Procedure | CUBRID 10.1 User Manual cubrid.org
- Introduction to CUBRID | CUBRID 10.1 User Manual cubrid.org
- CUBRID HA | CUBRID 10.1 User Manual cubrid.org
- VIEW DEFINITION STATEMENTS | CUBRID 10.1 User Manual cubrid.org