Results 37 comments of Nikhil

@akamensky I tried to reproduce this at my end but without much success. I used `pg_log_backend_memory_contexts($remote_data_node_connection_pid)` before and after a large batched UPDATE transaction. The memory context grows during the...

@erimatnor please note that #3413 is reporting degraded performance with 2.3 and possibly this optimization might not be helping (or even regressing) things.

@sentinel09 how many clients are doing inserts into the multi-node setup? It will help to use multiple clients to do inserts using unique non-conflicting rows. Also, are you running INSERTS...

@Sidicer note that no NOTICE messages have been omitted yet in the FQDN case. That suggests that there are connectivity issues while using FQDN. Can you please `ping` the FQDN...

I tried with 2 data nodes, version 2.5.0 and PG 13.4. Both `Debug` and `Release` builds on MacOSX. Get the same error: ``` postgres=# select time_bucket('0s',"time") from test GROUP BY...

Hi @mjf The team that deals with Grafana has been intimated about this. They will take a look soon.

@eeeebbbbrrrr @Hoverbear looks like `static inline` functions from header files are not available? I added the `tableam.h` header file and wanted to use the `table_endscan` inline function from it. But...

Hmm, I see that https://rust-lang.github.io/rust-bindgen/faq.html does not support static inline functions for a reason. I can close this PR in that case. Thoughts?

@Hoverbear yeah, converting some static inlines into macros in `pgx` sounds like a good idea. A macro like `table_endscan` would definitely make a lot of sense. ``` macro_rules! table_endscan {...

@4nte you mentioned that one of the replicas has been promoted. That means the earlier master is no more accessible and maybe the backup was trying to connect to the...