DBDB.io The Encyclopedia of Database Systems · Est. 2017
Database of Databases

Database Entry

Infobright


Infobright is a column-oriented analytical DBMS engine for MySQL.

Developer
Country of Origin
CA, PL
Start Year
2005
End Year
2017
Project Type
Commercial
Supported Languages
C++
Derived From
MySQL
Compatible With
MySQL
Operating Systems
Linux, Solaris
License
Proprietary

The internal architecture of Infobright is comprised of three parts: Data Pack (DP), DPN (Data Pack Node), KN (Knowledge Node). When data is loaded into a table, the data is broken into different groups with fixed number rows and then decompose these data into separate data packs for each of the columns. As a result, each column has the same number of rows and this column structure is better at data compression compared with row-oriented database. The average data pack compression ratio is approximate 20:1 and the infobright can handle up to 50TB data for data analytics applications. One interesting about infobright is that it is more suitable for data analyze because it does not support INSERT, DELETE, UPDATE operations

Database Entry

Infobright


Infobright is a column-oriented analytical DBMS engine for MySQL.

The internal architecture of Infobright is comprised of three parts: Data Pack (DP), DPN (Data Pack Node), KN (Knowledge Node). When data is loaded into a table, the data is broken into different groups with fixed number rows and then decompose these data into separate data packs for each of the columns. As a result, each column has the same number of rows and this column structure is better at data compression compared with row-oriented database. The average data pack compression ratio is approximate 20:1 and the infobright can handle up to 50TB data for data analytics applications. One interesting about infobright is that it is more suitable for data analyze because it does not support INSERT, DELETE, UPDATE operations

History[03]


Infobright was founded in 2005. It first released the open-source version of the DBMS in September 2008 and launched its community

In July 2016, Infobright moved away from its open source community edition to direct customer markets and original equipment manufacturer (OME).

The company was bought by a holding company in 2017 and is now in maintenance mode.

Concurrency Control[04]


It supports ACID transactions with immediate consistency.

Data Model[05]


Infobright is a relational DBMS.

Foreign Keys


Infobright does not support foreign key constrains.

Indexes[06]


Infobright does not support explicit indexes. The knowledge grid in Infobright serves as substitute for indexes as well as Data Pack Nodes (DPN). Each DPN contains some statistic information (such as max, min, sum) derived from the tuples that it stores. The knowledge grid store more advanced information (such as interdependence between multiple tables, multiple columns) and helps to locate the needed DPN with little decompress data as much as possible. For example, suppose a query wants to find such data which the value of certain column is within a specific range.

Infobright's Optimizer can generate three type of Packs: Relevant Packs, Irrelevant Packs, Suspect Packs. Each query does not need to decompress relevant and irrelevant packs, and will only need to find other data in suspect packs. In this way, the DPN serves like the index. Also the knowledge grid also serves like index because it records the relationship between multiple tables. So for join search, the DBMS first uses information of DPN in both tables to find related data blocks, and then uses knowledge node to build the relationship between those data blocks. Both DPN and the knowledge grid avoids the need to maintain an index.

Isolation Levels[07]


Joins


Logging


Since infobright do not support modification of tables, they do not support logging.

Query Compilation


Query Execution[08]


Query Interface[09]


The API infobright supports are ODBC, JDBC, C API, C++, Delphi, Eiffel, Java, SmallTalk, Lisp, REALbasic, PHP, Visual Basic, Ruby, Perl and Python.

Storage Architecture[10][05]


Infobright is a disk-oriented DBMS. The system automatically creates the internal knowledge grid structure. This knowledge grid is key structure of the system for query execution.

Storage Model[05]


The storage Model for Infobright is DSM to support large data sets and analytical (OLAP) workloads.

Stored Procedures[11]


Infobright support stored procedures. The language is their own store procedures, follow the MySQL Ansi-92 Standard. When using this language to define a stored procedure, use delimiter key word to define the procedure and change it back when the definition is finished. Below is sample code for stored Procedures for Infobright: "https://drive.google.com/open?id=0B1fwCLZ9xWQtYzh2ZVVDekV5NDg" .This function of this stored procedure is convert a date format string (“YYYYMMDD”) to a string (‘YYYY-MM-DD’).

System Architecture[12][13]


Infobright is shared-nothing DBMS and it does not rely on special hardware. It combines a columnar database and knowledge grid for optimizing analytics (such as compressing, storing and retrieving data).

Views[14][15]


Infobright only support views but not materialized views. In addition to that, infobright also support approximate queries to reduce the query time for massive amount of data.

Citations

15 sources
  1. https://infobright.com infobright.com Spam — Check Archive
  2. Infobright - Wikipedia wikipedia.org
  3. https://www.ignitetech.com/news/ignite-technologies-acquires-analytic-database-solution-from-infobright ignitetech.com Dead — Check Archive
  4. https://www.infobright.com/forums/showthread.php?6075-any-updates-to-the-limitations-of-infobright-referring-to-the-blog-by-Robin-Schumacher= infobright.com Dead — Check Archive
  5. https://www.infobright.com/wp-content/uploads/2014/03/White-paper-Infobright-Internet-of-Things-Architecture.pdf infobright.com Dead — Check Archive
  6. MySQL :: Data Warehousing with MySQL and Infobright nust.na
  7. https://www.infobright.com/forums/showthread.php?7380-Which-level-of-transaction-isolation-does-ICE-support= infobright.com Dead — Check Archive
  8. https://forums.mysql.com/read.php?20= mysql.com Dead — Check Archive
  9. https://infobright.com/resource_library/migrating-mysql-to-infobright-enterprise-edition infobright.com Dead — Check Archive
  10. https://support.infobright.com/forums/archive/index.php/t-6091.html?s=49c0fe351218ab2cb6bc0126a6812a30 infobright.com Dead — Check Archive
  11. https://www.infobright.com/forums/showthread.php?5551-Stored-procedures= infobright.com Dead — Check Archive
  12. Proceedings of the VLDB Endowment vldb.org Dead — Check Archive
  13. https://www.infobright.com/customers/pdf/Log_Mgt_Final.pdf infobright.com
  14. https://www.infobright.com/forums/showthread.php?6772-Using-views-in-Infobright= infobright.com Dead — Check Archive
  15. https://infobright.com/blog/calling-all-use-cases-for-infobright-approximate-query infobright.com Dead — Check Archive
Revision #12 Last Updated: