Consult the mot problem of the openGauss database

48 Views Asked by At

After the MOT transaction in the openGauss database is complete, the local memory is not released. How can I find the cause?

1

There are 1 best solutions below

0
On

OpenGauss provides two functions to check the memory usage of MOT transactions. You are advised to use the function to query:

  • mot_session_memory_detail(): checks the MOT memory usage of all sessions.
  • mot_local_memory_detail(): checks the size of the MOT local memory, including data and indexes.

thanks