wuputah | 1 year ago | on: pg_duckdb: Splicing Duck and Elephant DNA
wuputah's comments
wuputah | 1 year ago | on: Using ClickHouse to scale an events engine
As the linked post points out, the main 'advantage' of the "tuned" benchmark is the indexes, which are tuned specifically to the queries in the benchmark. We do not use indexes in our version of the benchmark, aside from the primary key (which actually provides no performance advantage).
wuputah | 2 years ago | on: Show HN: pgxman – npm for Postgres extensions
We only support apt for now but plan to support other package managers in the future. It works with existing Postgres apt packages, we recommend using PGDG but the default system packages on Debian/Ubuntu work as well.
> Does it work with the postgres Docker image?
yes, in fact this how our `container` feature works. https://docs.pgxman.com/container
wuputah | 2 years ago | on: Show HN: pgxman – npm for Postgres extensions
On Ubuntu/Debian, Postgres doesn't typically work this way, so it's not the way that pgxman works. pgxman works on top of the existing `postgresql` packages and with the existing package manager (apt) in order to install extensions -- which is also how it handles runtime dependencies, whether libraries or even other extensions.
So, that said, we have a container feature I could see using to effectively isolate for a single project. Right now there is only one single "global" container (per Postgres version) that pgxman will manage for you, but this is just a MVP of this feature. I could definitely see something like `pgxman c dev` or similar which will read a local pgxman pack file (pgxman.yaml) in your project and boot a "local" Postgres for you just for that project.
The pgxman pack is already a thing and is how the local container config is maintained, but we haven't tied it together in the way described above... yet. For more on both pgxman pack and the container feature, check out our docs.
wuputah | 2 years ago | on: Show HN: Hydra - Open-Source Columnar Postgres
- Installing the extension itself does not change the default table type, this is only the case on Hydra Cloud and our Docker image.
- "Hydra is not a fork" refers to the fact that Hydra did not fork Postgres; it is an extension. We have put in a lot of effort since forking Citus, but it's not our intent to hide that fact.
- Yes, "Hydra External Tables" is a productization around FDWs, there's more we want to do with it but it hasn't been our focus lately.
wuputah | 2 years ago | on: Show HN: Hydra 1.0 – open-source column-oriented Postgres
wuputah | 2 years ago | on: Show HN: Hydra 1.0 – open-source column-oriented Postgres
wuputah | 3 years ago | on: Hydra – the fastest Postgres for analytics [benchmarks]
wuputah | 3 years ago | on: Hydra – the fastest Postgres for analytics [benchmarks]
wuputah | 3 years ago | on: Hydra – the fastest Postgres for analytics [benchmarks]
wuputah | 3 years ago | on: Hydra – the fastest Postgres for analytics [benchmarks]
Columnar is not ideal for a `users` table where you want to select and update specific rows, often in very small, quick transactions (OLTP). You would want to continue to use a traditional (heap) table in that case. That's certainly something you can still do with Hydra, and combining both kinds of tables is considered HTAP, and something that is a unique use case of our product.
To contrast, columnar is best for "fact" tables -- data about something that happened (thus it does not change) that will be analyzed in an aggregate way. Those might be logs, events, transactions, etc.
wuputah | 3 years ago | on: Hydra – the fastest Postgres for analytics [benchmarks]
Redshift is multi-node, which puts it in a different category -- with considerably higher costs.
[1]: https://github.com/ClickHouse/ClickBench/blob/main/greenplum...
wuputah | 4 years ago | on: Hydra (YC W22) releases the Postgres data warehouse
wuputah | 4 years ago | on: Heroku was Down
wuputah | 4 years ago | on: Launch HN: Hydra (YC W22) – Query any database via Postgres
wuputah | 4 years ago | on: Launch HN: Hydra (YC W22) – Query any database via Postgres
Definitely stay tuned [0] for Clickhouse! And yes, exactly, you can continue to use your ORM of choice.
0: social links are at the bottom of hydras.io :)
wuputah | 4 years ago | on: Launch HN: Hydra (YC W22) – Query any database via Postgres
wuputah | 4 years ago | on: Launch HN: Hydra (YC W22) – Query any database via Postgres
Our "no lock-in" claim refers to your data, since Hydra is Postgres, you're not stuck using "HydraDB" forever -- it's relatively easy to migrate in or out since you can use well established Postgres tools. We also are open to licensing the product should you wish to self-host, on-prem, etc.
wuputah | 4 years ago | on: Launch HN: Hydra (YC W22) – Query any database via Postgres
Today, queries need to be Postgres-compatible to be intelligently routed, but queries with specific query syntax or functions beyond Postgres can be routed with our manual router[1]. This is our first solution to this problem and plan to iterate in response to customer pain.
Sorry for the confusion! Data moves asynchronously -- we're not trying to implement multi-phase commits -- but we can act on data very quickly once committed. Our solution here uses Postgres logical replication. Using the Data Bridge is optional and a customer's existing solutions are welcome as well.
[1]: https://hydras-io.notion.site/Router-a91f5282f1354c54a9ba894...
wuputah | 4 years ago | on: Launch HN: Hydra (YC W22) – Query any database via Postgres