pg_timeseries: Open-source time-series extension for PostgreSQL
11–20 of 84 posts
Re: pg_timeseries: Open-source time-series extension for PostgreSQL
#12Now we see those Proprietary extensions being disrupted by proper Open Source!
Re: pg_timeseries: Open-source time-series extension for PostgreSQL
#13Your site is very well designed and easy to read btw, and the app UI looks great from the demo photos. I might try it!
Re: pg_timeseries: Open-source time-series extension for PostgreSQL
#14Everything seems to be there and why there's not first class product like ClickHouse on PG.
Re: pg_timeseries: Open-source time-series extension for PostgreSQL
#15What does this let me do that can't be achieved with "regular PostgreSQL without the extension"?
Re: pg_timeseries: Open-source time-series extension for PostgreSQL
#16Most of the time-series queries (almost all of them) are aggregated queries. Why not leverage or build top-notch Columnarstore for the same. Everything seems to be there and why there's not first class product like ClickHouse on PG.
Re: pg_timeseries: Open-source time-series extension for PostgreSQL
#17Dumb question: why can't I just insert a bunch of rows with a timestamp column and indices? Where does that fall short? At a certain # of rows or something? What does this let me do that can't be achieved with "regular PostgreSQL without the extension"?
Re: pg_timeseries: Open-source time-series extension for PostgreSQL
#18Most of the time-series queries (almost all of them) are aggregated queries. Why not leverage or build top-notch Columnarstore for the same. Everything seems to be there and why there's not first class product like ClickHouse on PG.
Citus, Persona, TimescaleDB?
Re: pg_timeseries: Open-source time-series extension for PostgreSQL
#19Most of the time-series queries (almost all of them) are aggregated queries. Why not leverage or build top-notch Columnarstore for the same. Everything seems to be there and why there's not first class product like ClickHouse on PG.
Re: pg_timeseries: Open-source time-series extension for PostgreSQL
#20Dumb question: why can't I just insert a bunch of rows with a timestamp column and indices? Where does that fall short? At a certain # of rows or something? What does this let me do that can't be achieved with "regular PostgreSQL without the extension"?
Time based partitioning.
CREATE TABLE logs (
id SERIAL PRIMARY KEY,
log_time TIMESTAMP NOT NULL,
message TEXT
) PARTITION BY RANGE (log_time);
Why won't this work on stock PostgreSQL?