After upgrading to Greenplum Database (GPDB) to 7.x, GPCC can start reporting the error:
column "memory_quota" does not exist
This is caused by the definition of the table gp_toolkit.gp_resgroup_config. The column name "memory_limit" has been renamed to "memory_quota".
gpperfmon=# \d gp_toolkit.gp_resgroup_config
View "gp_toolkit.gp_resgroup_config"
Column | Type | Collation | Nullable | Default
-----------------+------+-----------+----------+---------
groupid | oid | | |
groupname | name | | |
concurrency | text | C | |
cpu_max_percent | text | C | |
cpu_weight | text | C | |
cpuset | text | C | |
memory_limit | text | C | |
min_cost | text | C | |
io_limit | text | C | |
SELECT * FROM pg_extension;
ALTER EXTENSION gp_toolkit UPDATE;The version of the extension should be 1.6 or above.