Thread: No. Of wal files generated
Hi,Please could you help me by sharing any redhat linux command through which I can count the no. of wal files and no. of ".ready" files generated in last 10 minutes.
On Fri, Mar 7, 2025 at 10:59 AM Atul Kumar <akumar14871@gmail.com> wrote:Hi,Please could you help me by sharing any redhat linux command through which I can count the no. of wal files and no. of ".ready" files generated in last 10 minutes.What problem are you trying to solve?--Death to <Redacted>, and butter sauce.Don't boil me, I'm still alive.<Redacted> lobster!
I want to check and compare the speed wal file generation process and archival process.So I want to check how many wal file got created in x minutes and how many .ready files got created in those x minutes.Regards,AtulOn Fri, 7 Mar 2025, 22:45 Ron Johnson, <ronljohnsonjr@gmail.com> wrote:On Fri, Mar 7, 2025 at 10:59 AM Atul Kumar <akumar14871@gmail.com> wrote:Hi,Please could you help me by sharing any redhat linux command through which I can count the no. of wal files and no. of ".ready" files generated in last 10 minutes.What problem are you trying to solve?--Death to <Redacted>, and butter sauce.Don't boil me, I'm still alive.<Redacted> lobster!
inotifywait can log every file creation and deletion in a directory.Honestly, though, I'd strongly think about using PgBackRest instead of something you wrote yourself.On Fri, Mar 7, 2025 at 2:47 PM Atul Kumar <akumar14871@gmail.com> wrote:I want to check and compare the speed wal file generation process and archival process.So I want to check how many wal file got created in x minutes and how many .ready files got created in those x minutes.Regards,AtulOn Fri, 7 Mar 2025, 22:45 Ron Johnson, <ronljohnsonjr@gmail.com> wrote:On Fri, Mar 7, 2025 at 10:59 AM Atul Kumar <akumar14871@gmail.com> wrote:Hi,Please could you help me by sharing any redhat linux command through which I can count the no. of wal files and no. of ".ready" files generated in last 10 minutes.What problem are you trying to solve?--Death to <Redacted>, and butter sauce.Don't boil me, I'm still alive.<Redacted> lobster!--Death to <Redacted>, and butter sauce.Don't boil me, I'm still alive.<Redacted> lobster!
Please can you elaborate more about the meaning of inotifywait.
And how pgbackrest will solve the issue ?
Regards.On Sat, 8 Mar 2025, 01:37 Ron Johnson, <ronljohnsonjr@gmail.com> wrote:inotifywait can log every file creation and deletion in a directory.Honestly, though, I'd strongly think about using PgBackRest instead of something you wrote yourself.On Fri, Mar 7, 2025 at 2:47 PM Atul Kumar <akumar14871@gmail.com> wrote:I want to check and compare the speed wal file generation process and archival process.So I want to check how many wal file got created in x minutes and how many .ready files got created in those x minutes.Regards,AtulOn Fri, 7 Mar 2025, 22:45 Ron Johnson, <ronljohnsonjr@gmail.com> wrote:On Fri, Mar 7, 2025 at 10:59 AM Atul Kumar <akumar14871@gmail.com> wrote:Hi,Please could you help me by sharing any redhat linux command through which I can count the no. of wal files and no. of ".ready" files generated in last 10 minutes.What problem are you trying to solve?--Death to <Redacted>, and butter sauce.Don't boil me, I'm still alive.<Redacted> lobster!--Death to <Redacted>, and butter sauce.Don't boil me, I'm still alive.<Redacted> lobster!
So I want to check how many wal file got created in x minutes and how many .ready files got created in those x minutes.
Hi,Please could you help me by sharing any redhat linux command through which I can count the no. of wal files and no. of ".ready" files generated in last 10 minutes.
Do you have wal archiving enabled? If yes, then simply go to the archive dir and suit your self with
find , ls, grep, awk, sort , unic -c , etc .
Find files created in the last 10 mins :
find -cmin 10
to get statistics over time :
***CLOUD*** jboss@sma:/smadb/smadb/pgsql/pitr$ ls -lt | head -10
total 629962796
-rw------- 1 postgres postgres 16777216 Mar 10 09:32 000000010000472D00000078
-rw------- 1 postgres postgres 16777216 Mar 10 09:32 000000010000472D00000077
-rw------- 1 postgres postgres 16777216 Mar 10 09:32 000000010000472D00000076
-rw------- 1 postgres postgres 16777216 Mar 10 09:32 000000010000472D00000075
...
you may use :
ls -lt | awk '{print $6""$7"_"substr($8,1,2) }' | sort | uniq -c | less
to get the distribution over (group by) 1 hour intervals
Regards,Atul