diff --git a/api/create_materialized_view.md b/api/create_materialized_view.md index 2bb5b81726..3534f57aac 100644 --- a/api/create_materialized_view.md +++ b/api/create_materialized_view.md @@ -70,7 +70,7 @@ Optional `WITH` clause options: |Name|Type|Description|Default value| |-|-|-|-| -|`timescaledb.materialized_only`|BOOLEAN|Return only materialized data when querying the continuous aggregate view|`FALSE`| +|`timescaledb.materialized_only`|BOOLEAN|Return only materialized data when querying the continuous aggregate view|`TRUE`| |`timescaledb.create_group_indexes`|BOOLEAN|Create indexes on the continuous aggregate for columns in its `GROUP BY` clause. Indexes are in the form `(, time_bucket)`|`TRUE`| |`timescaledb.finalized`|BOOLEAN|In TimescaleDB 2.7 and above, use the new version of continuous aggregates, which stores finalized results for aggregate functions. Supports all aggregate functions, including ones that use `FILTER`, `ORDER BY`, and `DISTINCT` clauses.|`TRUE`| diff --git a/use-timescale/continuous-aggregates/real-time-aggregates.md b/use-timescale/continuous-aggregates/real-time-aggregates.md index 56ad55c6ce..b7b55106ab 100644 --- a/use-timescale/continuous-aggregates/real-time-aggregates.md +++ b/use-timescale/continuous-aggregates/real-time-aggregates.md @@ -12,10 +12,10 @@ import CaggsRealTimeHistoricalDataRefreshes from 'versionContent/_partials/_cagg Continuous aggregates do not include the most recent data chunk from the underlying hypertable. Real time aggregates use the aggregated data and add the most recent raw data to it to provide accurate and up to date results, without -needing to aggregate data as it is being written. In Timescale 1.7 and later, -real time aggregates are enabled by default. When you create a continuous +needing to aggregate data as it is being written. Starting on Timescale 1.7 to 2.12, +real time aggregates are enabled by default, it means when you create a continuous aggregate view, queries to that view include the most recent data, even if -it has not yet been aggregated. +it has not yet been aggregated. But on Timescale 2.13 and later real time aggregates are *NOT* enabled by default. For more detail on the comparison between continuous and real time aggregates, see our [real time aggregate blog post][blog-rtaggs].