Jens Nehlmeier

Results 82 comments of Jens Nehlmeier

Nice, that seems to work. The generated command then contains ``` --add-opens\ java.base/java.lang=ALL-UNNAMED --add-opens\ java.base/java.util=ALL-UNNAMED ... ``` All parameters are preserved and `java` accepts it. I always thought that `java`...

> I think that when you pass the --dry-run output to java, (via a shell?) the \ (escaped space) is basically always a space. Yes, I guess you are right....

> Here's an alternative declaration, using the [jpms] module. When I do that and change the command to `--jpms --dry-run` the generated command line contains all `--add-opens` without an escaped...

It is not only for CI systems but also for workstations used by multiple users. Imagine something like a web based IDE with multiple devs working on the same server...

> Hi @jnehlmeier, thanks for another bug report. This one is troubling, having two nodes get both to wait_primary should never happen. Would you have kept pg_autoctl logs from the...

Both postgres nodes were running at the time of failover. I believe there was some docker networking hiccup and pg_auto_failover already knew that the secondary is gone but did not...

Hi @DimCitus , thanks for your answer. I have now changed ``` hostssl all "pgautofailover_monitor" x.x.x.x/24 trust ``` to ``` hostssl all "pgautofailover_monitor" x.x.x.x/24 scram-sha-256 ``` and updated the password...

@DimCitus Could it be as easy as removing this check https://github.com/citusdata/pg_auto_failover/blob/0fecd653f9ef43019e4d76e347afce378adcc481/src/bin/pg_autoctl/cli_create_node.c#L428-L432 for both `--auth` and `--skip-pg-hba` and removing https://github.com/citusdata/pg_auto_failover/blob/0fecd653f9ef43019e4d76e347afce378adcc481/src/bin/pg_autoctl/cli_create_node.c#L447-L450 from `--skip-pg-hba`?

> There is yet another option though. We should probably have a look at creating the user without a password at all. [create role](https://www.postgresql.org/docs/current/sql-createrole.html) takes `password null` alright, and then...

@DimCitus I am on Mac OS and not very familiar on how to setup 'make' and pg_auto_failover dependencies correctly in order to compile for Linux. So I can probably not...