Tudor Zaharia
Tudor Zaharia
@vitonsky thank you for the full repro! I understand that your use case is different, but would you be willing to try with [pg_dump](https://pglite.dev/docs/pglite-tools#pgDump) instead?
Hey @bishoyroufael could you please benchmark it against a PostgreSQL installation on the same/similar machine?
> Should I even expect that `pglite` give the same performance as running PostgreSQL locally? Definitely not, but we are always interested in making it faster and having some real-life...
Partially. Could you try it without persistence just to get an idea?
Hm, interesting. I guess we assumed `clone` to duplicate the only the data in the database.
@vitonsky Sorry but we cannot afford to invest time in your particular implementation at the moment. We still have the custom filesystems on our radar and we will address it...
Thank you @vitonsky ! > the problem not in specific FS implementation. Sorry, I might have misread this: "I found package @zenfs/core that implements exactly I need" > and maybe...
``` select ssl from pg_stat_ssl where pid = pg_backend_pid() ``` Interesting, the engine is querying the DB for SSL connection status, even if you disabled SSL. @hanayashiki Can you please...
@pmp-p For reference: With `pglite-server`: ``` # select ssl from pg_stat_ssl where pid = pg_backend_pid(); ssl ----- (0 rows) ``` With a real postgres server: ``` # select ssl from...
[pgadmin](https://www.pgadmin.org) also seems to have issues with `pglite-server`. It can actually connect over the UNIX socket, but then it runs some queries and I guess the answer is not what...