Does openGauss MOT purely in-memory table?

62 Views Asked by At

the Memory-Optimized-Table for openGauss is purely in-memory table? or it's can persist the data when data is larger that the server memory? or at least persist when server shutdown?

2

There are 2 best solutions below

0
On

The Memory-Optimized-Table for openGauss is an memory table.When the total memory usage is close to the selected memory limit.MOT no longer allows additional data to be inserted.But It can also persist data when the server is shut down(persistence capabilities).

0
On

MOT storage engine is a pure in-memory engine, so yes the whole data must fit into the memory. But MOT tables are strictly durable with persistence capabilities (redo log and checkpoint).