mirror of https://github.com/citusdata/citus.git
Refrain reading the metadata cache for all tables during upgrade
First, it is not needed. Second, in the past we had issues regarding
this: https://github.com/citusdata/citus/pull/4344
When I create 10k tables, ~120K shards, this saves
40Mb of memory during ALTER EXTENSION citus UPDATE.
Before the change: MetadataCacheMemoryContext: 41943040 ~ 40MB
After the change: MetadataCacheMemoryContext: 8192
(cherry picked from commit f193e16a01
)
release-11.0-onder_6_may_2
parent
e8b41d1e5b
commit
b7a39a232d
|
@ -513,7 +513,8 @@ MarkExistingObjectDependenciesDistributedIfSupported()
|
|||
ObjectAddress tableAddress = { 0 };
|
||||
ObjectAddressSet(tableAddress, RelationRelationId, citusTableId);
|
||||
|
||||
if (ShouldSyncTableMetadata(citusTableId))
|
||||
/* refrain reading the metadata cache for all tables */
|
||||
if (ShouldSyncTableMetadataViaCatalog(citusTableId))
|
||||
{
|
||||
/* we need to pass pointer allocated in the heap */
|
||||
ObjectAddress *addressPointer = palloc0(sizeof(ObjectAddress));
|
||||
|
|
Loading…
Reference in New Issue