Difference between In memory databases and disk memory database

不问归期 提交于 2019-11-30 01:58:40

An in-memory database (IMDB; also main memory database system or MMDB or memory resident database) is a database management system that primarily relies on main memory for computer data storage. It is contrasted with database management systems that employ a disk storage mechanism. Main memory databases are faster than disk-optimized databases since the internal optimization algorithms are simpler and execute fewer CPU instructions. Accessing data in memory eliminates seek time when querying the data, which provides faster and more predictable performance than disk.

Applications where response time is critical, such as those running telecommunications network equipment and mobile advertising networks, often use main-memory databases.

In reply to your query, yes it loads the data in RAM of your computer.

On-Disk Databases

  • All data stored on disk, disk I/O needed to move data into main memory when needed.

  • Data is always persisted to disk.

  • Traditional data structures like B-Trees designed to store tables and indices efficiently on disk.

  • Virtually unlimited database size.

  • Support very broad set of workloads, i.e. OLTP, data warehousing, mixed workloads, etc.

In-Memory Databases

  • All data stored in main memory, no need to perform disk I/O to query or update data.

  • Data is persistent or volatile depending on the in-memory database product.

  • Specialized data structures and index structures assume data is always in main memory.

  • Optimized for specialized workloads; i.e. communications industry-specific HLR/HSS workloads.

  • Database size limited by the amount of main memory.

Rick James

MySQL offerings

MySQL has several "Engines". In all engines, actions are performed in RAM. The Engines differ significantly in how good they are at making sure the data "persists" on disk.

ENGINE=MEMORY -- This is not persistent; the data is found only in RAM. It is limited to some preset max size. On a power failure, all data (in a MEMORY table) is lost.

ENGINE=MyISAM -- This is an old engine; it persists data to disk, but in the case of power failure, sometimes the indexes are corrupted and need 'repairing'.

ENGINE=InnoDB -- This is the preferred engine. It not only persists to disk but 'guarantees' consistency even across power failures.

In-memory db usually have the whole database in memory. (like MySQL DB Engine MEMORY) This is a huge performance boost, but RAM is expensive and often not persistent, so you would loose data on restart. There are some ways to reduce the last issue, e.g. by timed snapshots, or replication on a disk database. Also there are some hybrid types, with just a part of the db in memory.

There are also in-memory databases like Tarantool that can work with data sets larger than available RAM. Tarantool is able to work with these sets because it is optimized for fast random writes, the main bottleneck that arises.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!