I downloaded the installation package for timesaledb:
https://download.postgresql.org/pub/repos/yum/15/redhat/rhel-7.5-x86_64/timescaledb_15-2.11.0-1.rhel7.x86_64.rpm
After installation, I attempted to create a materialized view
CREATE MATERIALIZED VIEW WATER-CONSUME.DAY
With (TIMESCALEDB. CONTINUOUS) AS
SELECT
TIME-BUCKET ('1 day ',' time ') AS RECODE-TIME,
MeterCODE,
MAX (DQLJLCC) AS MAX-READING
From WATER-METER1
GROUP BY RECODE-TIME, METER-CODE;
The database threw an error
Error: Functionality not supported under the current “Apache” license Learn more at https://timescale.com/.
Prompt: To access all features and the best time series experience, try out Timescale Cloud
I have reviewed the document.
I found out that I am installing TimescaleDB Apache 2 Edition, but in fact, I should be installing TimescaleDB Community Edition
So where should I get TimescaleDB Community Edition (rpm)?