- Notifications
You must be signed in to change notification settings - Fork40
Check collector has started in pg_wait_sampling_reset_profile.#100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Open
valeriy-zainullin wants to merge1 commit intopostgrespro:masterChoose a base branch fromvaleriy-zainullin:master
base:master
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
+18 −0
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
The worker might have not started yet or it may never start,because its registration was cancelled due to worker limit.This commit adds a check for NULL value of pgws_collector_hdr->latch.The previous usage in pg_wait_sampling.c has such a check, weshould do the same here.
Воспроизведение. Можно запускать в любой директории, создается временный докер-контейнер. #!/bin/bashsudo docker run --rm -i ubuntu:24.04 bash<<"EOF"set -xeapt-get updateapt-get install -y \ git build-essential pkg-config libicu-dev libipc-run-perl \ flex bison libreadline-dev libz-dev gettext libperl-devgit clone -b REL_17_5 --depth 1 https://github.com/postgres/postgrescd postgresgit clone https://github.com/postgrespro/pg_wait_sampling contrib/pg_wait_samplingmkdir contrib/pgws_reproducecat - > contrib/pgws_reproduce/Makefile <<"_EOF"MODULE_big = pgws_reproduceOBJS = main.oEXTENSION = pgws_reproduceREGRESS =subdir = contrib/pgws_reproducetop_builddir = ../..include $(top_builddir)/src/Makefile.globalinclude $(top_srcdir)/contrib/contrib-global.mk_EOFcat - > contrib/pgws_reproduce/pgws_reproduce.control <<"_EOF" pg_wait_sampling extensioncomment = 'reproduce bug'default_version = '1'module_pathname = '$libdir/pgws_reproduce'relocatable = true_EOFcat - > contrib/pgws_reproduce/main.c <<"_EOF"#include "postgres.h"#include "postmaster/bgworker.h"#include "fmgr.h"#include <sched.h> /* Only works on linux. */PG_MODULE_MAGIC;void pgws_reproduce_worker_main(Datum main_arg);void _PG_init(void);void pgws_reproduce_worker_main(Datum main_arg) { while (true) { sched_yield(); }}void _PG_init(void) { /* Default limit of workers is 8. */ for (int i = 0; i < 32; ++i) { BackgroundWorker worker; memset(&worker, 0, sizeof(worker)); worker.bgw_restart_time = 1; worker.bgw_flags = BGWORKER_SHMEM_ACCESS; snprintf(worker.bgw_library_name, BGW_MAXLEN, "pgws_reproduce"); snprintf(worker.bgw_function_name, BGW_MAXLEN, CppAsString(pgws_reproduce_worker_main)); worker.bgw_main_arg = (Datum) 0; RegisterBackgroundWorker(&worker); }}_EOFgrep -v '$(recurse' contrib/Makefile > output.txtmv output.txt contrib/Makefileecho 'SUBDIRS += pg_wait_sampling pgws_reproduce' >> contrib/Makefileecho -e '$(recurse)\n$(recurse_always)' >> contrib/MakefileCFLAGS='-ggdb -O0 -g' ./configure -q \ --enable-cassert --enable-tap-tests --enable-nls \ --with-icu --with-perl --prefix=$(pwd)/installmake -s -j$(nproc) world-binmake -s -j$(nproc) install-world-binuseradd postgreschown -R postgres .cd installsu postgres -c 'bin/initdb -D data'su postgres -c "echo \"shared_preload_libraries = 'pgws_reproduce, pg_wait_sampling'\" > data/postgresql.conf"su postgres -c 'bin/pg_ctl -D data -l logfile start' || (cat logfile; exit 1)cd ..su postgres -c 'make -C contrib/pg_wait_sampling installcheck' || (grep '(PID ' install/logfile; exit 2)cat install/logfileEOF |
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading.Please reload this page.
The worker might have not started yet or it may never start, because its registration was cancelled due to worker limit.
This commit adds a check for NULL value of pgws_collector_hdr->latch. The previous usage in pg_wait_sampling.c has such a check, we should do the same here.