Oscar

Results 18 comments of Oscar

@sfrost @dwsteele Hope this helps, let me know if there is any other gdb commands I should provide! ``` # gdb /usr/bin/pgbackrest coredump GNU gdb (GDB) Red Hat Enterprise Linux...

Hi, Thank you for taking the time to look into this issue! Indeed, I have attached the repmgr.conf file from all three nodes to this comment. After the incident we...

We had another incident like this one yesterday. Our primary server in our setup of three stopped responding, promotion triggered but the primary came back/responded again while promotion was in...

@ibarwick We had a similar case of this failure happening again this weeked. We're still running repmgr 4.2, but I looked through the release notes and I don't think any...

I have encountered the same problem. In our setup we have a dedicated postgres schema for every tenant. These schemas are spread out over 16 databases with around 250 schemas...

After poking around in the source code I found that a check_timeout option is actually implemented & available now! Setting that to 300 instead of the default 30 makes the...

Cool, this seems like a very good performance improvement! I suppose that even with orjson the metrics endpoint will end up slow over time though. I think I'll take your...

Having the same problem trying to use these ansible roles for a FreeIPA deployment on CentOS 8!

We did a temporary try-catch patch for `/usr/lib/python3.6/site-packages/ipalib/cli.py` to get around this error for now; ``` try: if sys.stdout.isatty(): try: winsize = fcntl.ioctl(sys.stdout, termios.TIOCGWINSZ, struct.pack('HHHH', 0, 0, 0, 0)) return...

@dwsteele Just tried the fix from your branch on the same machine that failed yesterday, no problem recovering! :tada: ![Screenshot from 2022-09-20 11-21-20](https://user-images.githubusercontent.com/1773068/191220982-d6a7bab5-5c7a-40c4-bd32-b93cfbb601de.png) Thank you for the quick fix, impressive!