CUBRID

CUBRID
Developer(s) Naver Search Solutions
Initial release November 20, 2008 (2008-11-20)
Stable release
CUBRID 10.0 / 5 February 2016 (2016-02-05)[1]
Repository sourceforge.net/p/cubrid/code/HEAD/tree/
Written in C
Operating system Linux, Windows
Available in English
Type RDBMS
License GNU General Public License for Server Engine and BSD license for APIs and GUI tools
Website www.cubrid.org
www.cubrid.com

CUBRID (/ˈkjuːbrɪd/ "cube-rid") is an open source SQL-based relational database management system (RDBMS) with object extensions[2] developed by Naver Corporation for web applications.[3] The name CUBRID is a combination of the two words cube and bridge, cube standing for a sealed box that provides security for its contents while bridge standing for data bridge.

License policy

CUBRID has a separate license for its server engine and its interfaces. The server engine adopts the GPL v2.0 or later license, which allows distribution, modification, and acquisition of the source code. CUBRID APIs and GUI tools have the Berkeley Software Distribution license in which there is no obligation of opening derivative works. The reason of adopting two separate license systems is to provide complete freedom to Independent software vendors (ISV) to develop and distribute CUBRID-based applications.[4]

Architecture

The feature that distinguishes CUBRID database from other relational database systems is its 3-tier client-server architecture[5] which consists of the database server, the connection broker[6] and the application layer.

Database server

The database server is the component of the CUBRID database management system which is responsible for storage operations and statement execution. A CUBRID database server instance can mount and use a single database, making inter-database queries impossible. However, more than one instance can run on a machine.

Unlike other solutions, the database server does not compile queries itself, but executes queries precompiled in a custom access specification language.

Connection broker

The CUBRID connection broker's main roles are:

Also, a local object pool enables some parts of the execution to be deferred from the database server (e.g. tuple insertion and deletion, DDL statements), thus lowering the database server load.

Since the connection broker is not bound to the same machine as the database server, CUBRID can take advantage of the hardware resources of several machines while processing queries on a single database.

Application layer

Applications can use one of the available APIs to connect to a CUBRID connection broker.

Features

High Availability

CUBRID High Availability[7] provides load-balanced, fault-tolerant and continuous service availability through its shared-nothing clustering, fail-over and fail-back automated mechanisms.

CUBRID's 3-tier architecture allows native support for High-Availability with two-level auto failover: the broker failover and server failover.

Broker failover

When connecting to a broker via a client API, users can specify, in the connection URL, a list of alternative hosts where brokers are listening for incoming requests. In case of a hardware, network, operating system or software failure on one of the hosts, the underlying client API automatically fails over to the next host that a user has provided.

Server failover

The High Availability environment can be built with 1:N master-slave server nodes. Each slave node communicates with the master via CUBRID Heartbeat protocol. When a master node is unresponsive, the first of the slave nodes will get promoted to a master role. Replication between nodes can be achieved in one of three modes: synchronous, semi-synchronous, and asynchronous.

Administrators can specify a list of server hosts each broker can connect to and, in the event of a failure of the master node, another will be used.

Scalability and maintainability

Database sharding

CUBRID provides built-in support for database sharding. The sharding interface is implemented by a special broker called CUBRID SHARD. Communicating with CUBRID SHARD is identical to communicating with a normal broker so the same client APIs can be used. All features of the normal broker such as failover and load balancing also apply to CUBRID SHARD.

The storage is implemented as separate independent physical databases located on separate CUBRID server hosts. Each shard can be fully configured into High Availability environment.

The data distribution logic among shards lies in CUBRID SHARD, which determines which shard to use for storage or retrieval of data based on a hash or user defined algorithm.[8]

Backup

CUBRID supports online, offline and incremental backup.[9]

Performance

API-level load balancing

Because a connection broker can be configured in four different modes (read-write, read-only, slave-only, preferred host read only), the list of alternative hosts which a user has provided via the connection URL can be used as a method to balance the load. When Load Balancing is used, the client API will randomly choose a host among those specified in the connection URL except the one which was used to connect to last time. If the chosen host is not available, the selection will continue until all the hosts are determined as unavailable. In such case, the driver will report an error.[10]

Query plan caching

A query execution plan cache is implemented on the broker in order to skip most of the compilation steps on often used queries. Because the queries are parametrized during parsing, two queries that differ only by the values of literal constants share the same cache entry.[11]

Storage

Indexes

CUBRID has support for B+-tree indexes, both single-column and multi-column. The following types of indexes can be created:

The query optimizer can use indexes to produce faster execution plans using methods such as:

Table partitioning

CUBRID supports horizontal partitioning by range, hash and value lists, with a maximum of 1024 partitions per table.[21] Partitions can be accessed independently and support most operations that are valid on a normal table.

As of version 9.0, CUBRID implements execution-time partition pruning.[22]

SQL support

CUBRID implements a large subset of the ANSI SQL:1999 standard, extended with features from later SQL standards and custom features.

Window functions

CUBRID provides support for window functions as defined in the SQL:2003 standard. The implemented functions are ROW_NUMBER, COUNT, MIN, MAX, SUM, AVG, STDDEV_POP, STDDEV_SAMP, VAR_POP, VAR_SAMP, RANK, DENSE_RANK, LEAD, LAG and NTILE.[23]

Hierarchical queries

Hierarchical queries using the non-standard START WITH ... CONNECT BY Oracle syntax are supported in CUBRID. A number of specialized pseudocolumns and operators are provided for controlling the behavior of the query execution.[24]

Built in click-counter

CUBRID optimizes the common scenario in web applications where database fields need to be incremented on certain events (e.g. page views). In contrast to the usual approach of using a SELECT/UPDATE statement combination, CUBRID can increment fields from within the SELECT statement execution, bypassing some expensive compiling, execution and locking overhead associated with an UPDATE statement.[25]

Java stored procedures

The only stored procedure language supported in CUBRID is Java, requiring a Java virtual machine to be installed on the system.[26] The virtual machine is started and managed by the server and is used for code execution.

Stored procedure code that requires database access must use the JDBC driver, either using the parent transaction or issuing a new one.[27]

Regular expression

In addition to the LIKE operator, CUBRID provides the REGEXP operator for regular expression pattern matching. By default, the operator does a case insensitive matching on the input string, but the modifier BINARY can be used for case sensitive scenarios. An optional alias of REGEXP is RLIKE.[28]

Currently, CUBRID does not support REGEXP on Unicode strings.

Data types

A variety of data types are supported by CUBRID:[29]

Supported platforms

CUBRID is available for Microsoft Windows and Linux (most distributions), for 32- and 64-bit architectures. Partial support for OS X is implemented.

Interfaces

Command line

CUBRID comes with a built-in command-line interface named csql that can be used to execute SQL statements on the CUBRID server.[30] The tool can be used in one of two modes:

CUBRID's csql also implements some internal commands related to schema information, plan generation, debugging, transaction control, query timing and more.

Programming

CUBRID provides a number of language-specific application programming interfaces:[31] C driver (also called CCI, CUBRID's native driver), JDBC, PHP/PDO driver, ODBC, OLEDB, ADO.NET, Ruby driver, Python driver, Node.js driver, and Perl driver.

Graphical

Several graphical user interface tools have been developed for CUBRID:

Release history

Version Release date Beta release date Additions
10.0 February 2016 Provides snapshot isolations based on MVCC protocol. Includes many SQL extensions and functions/operators.
9.3 May, 2014 New SQL features, Support schema lock, support various SHOW syntax, Performance Improvement.[35]
9.2 September, 2013 SQL profiling, New SQL supports, Several improvements [36]
9.1 March, 2013 New SQL functions and index hint, Performance improvements and optimizations.[37]
9.0 October, 2012 Internationalization support, function index, filter index, index skip scan, MERGE statement, window functions.[38]
8.4.3 November 20, 2012 Database sharding, API level load balancing, built-in web manager with monitoring support[39]
8.4.1 February 24, 2012 February 1, 2012 Important performance optimizations, SQL extensions, REGEXP operator.[40]
8.4.0 July 1, 2011 May 12, 2011 High Availability improvements, CUBRID C API improvements, notable performance optimizations, covering index[41][42]
3.1 December 31, 2010 November 12, 2010 BLOB and CLOB support, High Availability monitoring support, drivers (JDBC, ODBC and CUBRID C API) improvements[43]
3.0 October 4, 2010 July 19, 2010 SQL extensions, High Availability improvements[44][45]
2.2 April 30, 2010 High Availability improvements, CUBRID C API improvements, some performance improvements[46]
2.1 December, 2009
2.0 August, 2009
1.4 March, 2009
1.3 February, 2009
1.2 January, 2009
1.1 November, 2008 CUBRID became an open source project
1.0 October, 2008 First stable release

Applications

Some applications and websites that have added CUBRID support or are powered by CUBRID:

See also

References

  1. "10.0 Release Notes". CUBRID 10.0. 5 February 2016. Retrieved 5 February 2016.
  2. "How data is stored in CUBRID RDBMS? Intro to Objects, Classes, OID and Inheritance". CUBRID Blog. 12 December 2012. Retrieved 8 February 2013.
  3. "CUBRID Inside - Architecture, Source & Management Components". Slideshare. 24 August 2011. Retrieved 8 February 2013.
  4. "CUBRID License". Retrieved 8 February 2013.
  5. "The Client-Server Architecture and Execution Modes in CUBRID Database". CUBRID Blog. 22 January 2013. Retrieved 8 February 2013.
  6. "The CUBRID Broker Story". CUBRID Blog. 21 January 2013. Retrieved 8 February 2013.
  7. "CUBRID High Availability Overview". Retrieved 8 February 2013.
  8. "Database Sharding the Right Way: Easy, Reliable, and Open source". Slideshare. 20 October 2012. Retrieved 8 February 2013.
  9. "CUBRID Backup Strategy and Method". Retrieved 8 February 2013.
  10. "CUBRID 8.4.3 with DB Sharding and API level Load Balancing is here". CUBRID Blog. 20 November 2012. Retrieved 8 February 2013.
  11. "Shared Query Plan Caching in CUBRID". Retrieved 9 February 2013.
  12. CUBRID Manual EN 9.0.0 - CREATE INDEX. Cubrid.org. Retrieved on 2014-02-07.
  13. CUBRID Manual EN 9.0.0 - Function-based Index. Cubrid.org. Retrieved on 2014-02-07.
  14. CUBRID Manual EN 9.0.0 - Filtered Index. Cubrid.org (2010-01-01). Retrieved on 2014-02-07.
  15. What is Covering Index in CUBRID 8.4.0?. Cubrid.org. Retrieved on 2014-02-07.
  16. CUBRID Manual EN 9.0.0 - Index Scan in Descending Order. Cubrid.org. Retrieved on 2014-02-07.
  17. CUBRID Manual EN 9.0.0 - Optimizing ORDER BY Clause. Cubrid.org. Retrieved on 2014-02-07.
  18. Group by skip
  19. Loose Scan
  20. Skip Scan
  21. CUBRID Manual EN 8.3.1 - What is Partitioning?. Cubrid.org. Retrieved on 2014-02-07.
  22. "CUBRID 9.0 Manual - Partition Pruning". Retrieved 12 February 2013.
  23. "CUBRID Manual - Aggregate/Analysis functions". Retrieved 11 February 2013.
  24. "CUBRID Manual - Hierarchical Query". Retrieved 11 February 2013.
  25. "CUBRID Manual - CUBRID Click Counter". Retrieved 11 February 2013.
  26. "CUBRID Java Stored Procedures". Retrieved 11 February 2013.
  27. "CUBRID Manual - Using Server-side Internal JDBC Driver". Retrieved 11 February 2013.
  28. "CUBRID Manual - REGEXP/RLIKE Conditional Expressions". Retrieved 11 February 2013.
  29. "CUBRID Manual - Data Types". Retrieved 11 February 2013.
  30. "How to use CSQL utilities". Retrieved 8 February 2013.
  31. "CUBRID APIs Wiki". Retrieved 8 February 2013.
  32. "CUBRID Manager page". Retrieved 8 February 2013.
  33. "CUBRID Web Manager page". Retrieved 8 February 2013.
  34. "CUBRID Migration Toolkit page". Retrieved 8 February 2013.
  35. "New CUBRID 9.3.0". CUBRID Official Blog. 2014-05-23. Retrieved 2014-06-16.
  36. "New CUBRID 9.2.0". CUBRID Official Blog. 2013-09-27. Retrieved 2014-06-16.
  37. "New CUBRID 9.1.0". CUBRID Official Blog. 2013-03-15. Retrieved 2014-06-16.
  38. "New CUBRID 9.0.0". CUBRID Official Blog. 2012-10-30. Retrieved 2012-11-08.
  39. "CUBRID 8.4.3 with DB Sharding and API level Load Balancing is here". CUBRID Official Blog. 2012-11-20. Retrieved 2012-12-25.
  40. "New CUBRID 8.4.1 is 70% faster". CUBRID Official Blog. 2012-02-01. Retrieved 2012-02-02.
  41. "CUBRID 8.4.0 has arrived w/ x2 faster database engine!". CUBRID Official Blog. 2011-05-13. Retrieved 2011-05-17.
  42. "CUBRID 8.4.0 GA is now available for download". CUBRID Official Blog. 2011-07-04. Retrieved 2011-07-14.
  43. "CUBRID 3.1 Stable is now available!". CUBRID Official Blog. 2010-12-31. Retrieved 2011-01-03.
  44. "CUBRID 3.0 Stable has arrived!". CUBRID Official Blog. 2010-10-04. Retrieved 2010-10-05.
  45. "New CUBRID 2008 R3.0 Beta has been released". CUBRID Official Blog. 2010-07-20. Retrieved 2010-07-21.
  46. "New Version Release - CUBRID 2008 R2.2". CUBRID Official Blog. Retrieved 2010-05-07.
  47. "How to simulate MySQL INSERT statement extensions". Lukas Eder. 2012-05-15. Retrieved 2013-02-04.
  48. "SOFA Statistics". sofastatistics.com. 2012-11-20. Retrieved 2010-11-17.
  49. "SIDU Incredibly Simple Intuitive Web Based SQL Client". SIDU. 2012-05-25. Retrieved 2013-02-04.
  50. "ART Simple Yet Effective Open Source Reporting Tool". art.sourceforge.net. 2012-06-10. Retrieved 2013-02-04.
  51. "Package scriptella.driver.cubrid". Retrieved 11 February 2013.
  52. "Run Your Own Whois Server With JWhoisServer". Klaus Zerwes. 2012-07-06. Retrieved 2013-02-04.
  53. "Cubrid Query Builder". yii.com. Retrieved 2015-03-20.
  54. "RedBeanPHP Super Easy to Use PHP ORM". redbeanphp.com. 2012-07-08. Retrieved 2013-02-04.

External links

This article is issued from Wikipedia - version of the 8/8/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.