Isaac Nickaein
Isaac Nickaein
A workaround is to provide a low-cost helper/utility function that calculates the effective size of UBJSON raw input without actually constructing it. A simple metric as **total number of elements**...
Thanks! This fixed the issue. But why this happens only when all threads become busy? Isn't this a deficit in design that the scheduler chokes when all working threads are...
For instance for value of `255.255.0.0` I get: `{ 0x40, 0x04, 0xFF, 0xFF, 0x00, 0x00 }` Apparently `0x40` is type for `IpAddress` and `0x04` specifies value length. As a workaround...
Thanks for extremely fast response! > It is not a standard API yet Does that you mean keeping the current API as is to avoid any unexpected breaking change? If...
We're having similar issue when compressing our parquet files. `zstd` leads to worse compression ratio compared to `gzip` and only can beat `gzip` at level 18 or higher which is...
I should clarify that lists I posted are size of directories and each one usually contains three parquet files. So the size of files can roughly be estimated by dividing...
Thanks for the thorough explanation! I was looking for a solution to parse MIB files in C# and was in dilemma of 1. Generating a AST.1 parser in C# working...
That seems to take care of it. Thanks for quick update!
Hi Landon, Thanks for the response! 1. We have already our internal Single-Sign-On solution in place which has LDAP/Kerberos support. We would like to use it instead of depending on...
#914 have taken a different approach and uses `pg_last_wal_receive_lsn()` instead of `pg_current_wal_lsn()` as a workaround.