Re: Improve monitoring of shared memory allocations - Mailing list pgsql-hackers

From Rahila Syed
Subject Re: Improve monitoring of shared memory allocations
Date
Msg-id CAH2L28uGLhkXBKDWFKm5XZtp_0nNqpYQ3Hc35vG++mM7wuOhgg@mail.gmail.com
Whole thread Raw
In response to Re: Improve monitoring of shared memory allocations  (Rahila Syed <rahilasyed90@gmail.com>)
Responses Re: Improve monitoring of shared memory allocations
List pgsql-hackers
Hi Andres,



> +             if (hashp->isshared)
> +             {
> +                     int                     nsegs;
> +                     int                     nbuckets;
> +                     nsegs = find_num_of_segs(nelem, &nbuckets, hctl->num_partitions, hctl->ssize);
> +                     
> +                     curr_offset =  (((char *) hashp->hctl) + sizeof(HASHHDR) + (info->dsize * sizeof(HASHSEGMENT)) +
> +                        + (sizeof(HASHBUCKET) * hctl->ssize * nsegs));
> +             }
> +

Why only do this for shared hashtables? Couldn't we allocate the elments
together with the rest for non-share hashtables too?


I have now made the changes uniformly across shared and non-shared hash tables, 
making the code fix look cleaner. I hope this aligns with your suggestions. 
Please find attached updated and rebased versions of both patches.

Kindly let me know your views.

Thank you,
Rahila Syed
Attachment

pgsql-hackers by date:

Previous
From: Dilip Kumar
Date:
Subject: Re: Add an option to skip loading missing publication to avoid logical replication failure
Next
From: Bertrand Drouvot
Date:
Subject: Re: Vacuum timing in pg_stat_all_tables