Main Page: Difference between revisions

From MemCP
Jump to navigation Jump to search
No edit summary
 
(35 intermediate revisions by 2 users not shown)
Line 1: Line 1:
   
 
=== What is memcp? ===
 
=== What is memcp? ===
  +
[[File:Explainer.png|left|thumb|320x320px]]
 
memcp is an open-source, high-performance, columnar in-memory database that can handle both OLAP and OLTP workloads. It provides an alternative to proprietary analytical databases and aims to bring the benefits of columnar storage to the open-source world.
 
memcp is an open-source, high-performance, columnar in-memory database that can handle both OLAP and OLTP workloads. It provides an alternative to proprietary analytical databases and aims to bring the benefits of columnar storage to the open-source world.
   
Line 18: Line 19:
 
* Scalability: Designed to scale on a single node with huge NUMA memory
 
* Scalability: Designed to scale on a single node with huge NUMA memory
 
* Adjustable persistency: Decide whether you want to persist a table or not or to just keep snapshots of a period of time
 
* Adjustable persistency: Decide whether you want to persist a table or not or to just keep snapshots of a period of time
  +
  +
<youtube>g29FR4Jwius</youtube>
  +
  +
https://www.youtube.com/watch?v=g29FR4Jwius
   
 
=== Navigation ===
 
=== Navigation ===
   
  +
==== Introduction ====
* [https://github.org/launix-de/memcp MemCP on Github]
 
* [[Getting Started]]
+
* [[What is OLTP and OLAP]]
* [[Build from Source]]
+
* [[History of the MemCP project]]
* [[SQL Frontend]]
+
* [[Hardware Requirements]]
  +
* [[Persistency and Performance Guarantees]]
* [[RDF Frontend]]
 
* [[How the Storage Engine works]]
+
* [[Current Status and Open Issues]]
  +
[[File:Screenshot from htop.png|center|frameless]]
 
  +
==== Getting Started ====
  +
* [[Install MemCP with Docker|With Docker]]
  +
* [[With Singularity]]
  +
* [[Compile MemCP from Source|Build from Source]]
  +
* [[Contributing]]
  +
* [[Introduction to Scheme]]
  +
  +
==== Frontends ====
  +
  +
===== SQL Frontend =====
  +
* [[Supported SQL]]
  +
* [[Advanced SQL Tutorial]]
  +
* [[Replace MySQL with MemCP]]
  +
* [[SQL over REST]]
  +
* [[Database Tools compatibility with MemCP|Supported Tooling]]
  +
* [[How SQL Operators are implemented on MemCP]]
  +
 
===== RDF Frontend =====
  +
* [[Introduction to RDF]]
  +
* [[Advanced Graph Querying]]
  +
* [[RDF templating and model driven development]]
  +
  +
===== Custom Frontends =====
  +
  +
* [[In-Database WebApps|In-Database WebApps and REST Services]]
  +
  +
==== Administration ====
  +
  +
*[[Settings]]
  +
* [[Process Hibernation]]
  +
* [[Performance Measurement]]
  +
  +
==== Internals ====
  +
  +
===== How things work in MemCP =====
  +
  +
*[[Databases, Tables and Columns]]
  +
* [[Shards, RecordIDs, Main Storage, Delta Storage]]
  +
* [[Columnar Storage]]
  +
* [[Transactions]]
  +
  +
===== Optimizations =====
  +
* [[In-Memory Compression, Columnar Compression Techniques]]
  +
* [[Temporary Columns]]
  +
* [[Data Auto Sharding and Auto Indexing]]
  +
* [[Parallel Computing]]
  +
  +
 
[[File:Screenshot from htop.png|center|frameless|2490x2490px]]
   
   
 
=== Further Reading ===
 
=== Further Reading ===
 
[https://github.org/launix-de/memcp MemCP on Github]
  +
 
==== Scientific ====
 
==== Scientific ====
   

Latest revision as of 14:30, 15 June 2024

What is memcp?

Explainer.png

memcp is an open-source, high-performance, columnar in-memory database that can handle both OLAP and OLTP workloads. It provides an alternative to proprietary analytical databases and aims to bring the benefits of columnar storage to the open-source world.

memcp is written in Golang and is designed to be portable and extensible, allowing developers to embed the database into their applications with ease. It is also designed with a focus on scalability and performance, making it a suitable choice for distributed applications.

Features

  • fast: MemCP is built with parallelization in mind. The parallelization pattern is made for minimal overhead.
  • efficient: The average compression ratio is 1:5 (80% memory saving) compared to MySQL/MariaDB
  • modern: MemCP is built for modern hardware with caches, NUMA memory, multicore CPUs, NVMe SSDs
  • versatile: Use it in big mainframes to gain analytical performance, use it in embedded systems to conserve flash lifetime
  • Columnar storage: Stores data column-wise instead of row-wise, which allows for better compression, faster query execution, and more efficient use of memory.
  • In-memory database: Stores all data in memory, which allows for extremely fast query execution.
  • Build fast REST APIs directly in the database (they are faster because there is no network connection / SQL layer in between)
  • OLAP and OLTP support: Can handle both online analytical processing (OLAP) and online transaction processing (OLTP) workloads.
  • Compression: Lots of compression formats are supported like bit-packing and dictionary encoding
  • Scalability: Designed to scale on a single node with huge NUMA memory
  • Adjustable persistency: Decide whether you want to persist a table or not or to just keep snapshots of a period of time

https://www.youtube.com/watch?v=g29FR4Jwius

Navigation

Introduction

Getting Started

Frontends

SQL Frontend
RDF Frontend
Custom Frontends

Administration

Internals

How things work in MemCP
Optimizations


Screenshot from htop.png


Further Reading

MemCP on Github

Scientific

How MemCP was built