Skip to content

Latest commit

 

History

History
3240 lines (2661 loc) · 153 KB

CHANGELOG.md

File metadata and controls

3240 lines (2661 loc) · 153 KB

TimescaleDB Changelog

Please note: When updating your database, you should connect using psql with the -X flag to prevent any .psqlrc commands from accidentally triggering the load of a previous DB version.

2.15.0 (2024-05-08)

This release contains performance improvements and bug fixes since the 2.14.2 release. We recommend that you upgrade at the next available opportunity.

In addition, it includes these noteworthy features:

  • Support time_bucket with origin and/or offset on Continuous Aggregate
  • Compression improvements:
    • Improve expression pushdown
    • Add minmax sparse indexes when compressing columns with btree indexes
    • Improve compression setting defaults
    • Vectorize filters in WHERE clause that contain text equality operators and LIKE expressions

Deprecation warning

  • Starting on this release will not be possible to create Continuous Aggregate using time_bucket_ng anymore and it will be completely removed on the upcoming releases.
  • Recommend users to migrate their old Continuous Aggregate format to the new one because it support will be completely removed in next releases prevent them to migrate.
  • This is the last release supporting PostgreSQL 13.

For on-premise users and this release only, you will need to run this SQL script after running ALTER EXTENSION. More details can be found in the pull request #6786.

Features

  • #6382 Support for time_bucket with origin and offset in CAggs
  • #6696 Improve defaults for compression segment_by and order_by
  • #6705 Add sparse minmax indexes for compressed columns that have uncompressed btree indexes
  • #6754 Allow DROP CONSTRAINT on compressed hypertables
  • #6767 Add metadata table _timestaledb_internal.bgw_job_stat_history for tracking job execution history
  • #6798 Prevent usage of deprecated time_bucket_ng in CAgg definition
  • #6810 Add telemetry for access methods
  • #6811 Remove no longer relevant timescaledb.allow_install_without_preload GUC
  • #6837 Add migration path for CAggs using time_bucket_ng
  • #6865 Update the watermark when truncating a CAgg

Bugfixes

  • #6617 Fix error in show_chunks
  • #6621 Remove metadata when dropping chunks
  • #6677 Fix snapshot usage in CAgg invalidation scanner
  • #6698 Define meaning of 0 retries for jobs as no retries
  • #6717 Fix handling of compressed tables with primary or unique index in COPY path
  • #6726 Fix constify cagg_watermark using window function when querying a CAgg
  • #6729 Fix NULL start value handling in CAgg refresh
  • #6732 Fix CAgg migration with custom timezone / date format settings
  • #6752 Remove custom autovacuum setting from compressed chunks
  • #6770 Fix plantime chunk exclusion for OSM chunk
  • #6789 Fix deletes with subqueries and compression
  • #6796 Fix a crash involving a view on a hypertable
  • #6797 Fix foreign key constraint handling on compressed hypertables
  • #6816 Fix handling of chunks with no contraints
  • #6820 Fix a crash when the ts_hypertable_insert_blocker was called directly
  • #6849 Use non-orderby compressed metadata in compressed DML
  • #6867 Clean up compression settings when deleting compressed cagg
  • #6869 Fix compressed DML with constraints of form value OP column
  • #6870 Fix bool expression pushdown for queries on compressed chunks

Thanks

  • @brasic for reporting a crash when the ts_hypertable_insert_blocker was called directly
  • @bvanelli for reporting an issue with the jobs retry count
  • @djzurawsk For reporting error when dropping chunks
  • @Dzuzepppe for reporting an issue with DELETEs using subquery on compressed chunk working incorrectly.
  • @hongquan For reporting a 'timestamp out of range' error during CAgg migrations
  • @kevcenteno for reporting an issue with the show_chunks API showing incorrect output when 'created_before/created_after' was used with time-partitioned columns.
  • @mahipv For starting working on the job history PR
  • @rovo89 For reporting constify cagg_watermark not working using window function when querying a CAgg

2.14.2 (2024-02-20)

This release contains bug fixes since the 2.14.1 release. We recommend that you upgrade at the next available opportunity.

Bugfixes

  • #6655 Fix segfault in cagg_validate_query
  • #6660 Fix refresh on empty CAgg with variable bucket
  • #6670 Don't try to compress osm chunks

Thanks

  • @kav23alex for reporting a segfault in cagg_validate_query

2.14.1 (2024-02-14)

This release contains bug fixes since the 2.14.0 release. We recommend that you upgrade at the next available opportunity.

Features

  • #6630 Add views for per chunk compression settings

Bugfixes

  • #6636 Fixes extension update of compressed hypertables with dropped columns
  • #6637 Reset sequence numbers on non-rollup compression
  • #6639 Disable default indexscan for compression
  • #6651 Fix DecompressChunk path generation with per chunk settings

Thanks

  • @anajavi for reporting an issue with extension update of compressed hypertables

2.14.0 (2024-02-08)

This release contains performance improvements and bug fixes since the 2.13.1 release. We recommend that you upgrade at the next available opportunity.

In addition, it includes these noteworthy features:

  • Ability to change compression settings on existing compressed hypertables at any time. New compression settings take effect on any new chunks that are compressed after the change.
  • Reduced locking requirements during chunk recompression
  • Limiting tuple decompression during DML operations to avoid decompressing a lot of tuples and causing storage issues (100k limit, configurable)
  • Helper functions for determining compression settings
  • Plan-time chunk exclusion for real-time Continuous Aggregate by constifying the cagg_watermark function call, leading to faster queries using real-time continuous aggregates

For this release only, you will need to restart the database before running ALTER EXTENSION

Multi-node support removal announcement Following the deprecation announcement for Multi-node in TimescaleDB 2.13, Multi-node is no longer supported starting with TimescaleDB 2.14.

TimescaleDB 2.13 is the last version that includes multi-node support. Learn more about it here.

If you want to migrate from multi-node TimescaleDB to single-node TimescaleDB, read the migration documentation.

Deprecation notice: recompress_chunk procedure TimescaleDB 2.14 is the last version that will include the recompress_chunk procedure. Its functionality will be replaced by the compress_chunk function, which, starting on TimescaleDB 2.14, works on both uncompressed and partially compressed chunks. The compress_chunk function should be used going forward to fully compress all types of chunks or even recompress old fully compressed chunks using new compression settings (through the newly introduced recompress optional parameter).

Features

  • #6325 Add plan-time chunk exclusion for real-time CAggs
  • #6360 Remove support for creating Continuous Aggregates with old format
  • #6386 Add functions for determining compression defaults
  • #6410 Remove multinode public API
  • #6440 Allow SQLValueFunction pushdown into compressed scan
  • #6463 Support approximate hypertable size
  • #6513 Make compression settings per chunk
  • #6529 Remove reindex_relation from recompression
  • #6531 Fix if_not_exists behavior for CAgg policy with NULL offsets
  • #6545 Remove restrictions for changing compression settings
  • #6566 Limit tuple decompression during DML operations
  • #6579 Change compress_chunk and decompress_chunk to idempotent version by default
  • #6608 Add LWLock for OSM usage in loader
  • #6609 Deprecate recompress_chunk
  • #6609 Add optional recompress argument to compress_chunk

Bugfixes

  • #6541 Inefficient join plans on compressed hypertables.
  • #6491 Enable now() plantime constification with BETWEEN
  • #6494 Fix create_hypertable referenced by fk succeeds
  • #6498 Suboptimal query plans when using time_bucket with query parameters
  • #6507 time_bucket_gapfill with timezones doesn't handle daylight savings
  • #6509 Make extension state available through function
  • #6512 Log extension state changes
  • #6522 Disallow triggers on CAggs
  • #6523 Reduce locking level on compressed chunk index during segmentwise recompression
  • #6531 Fix if_not_exists behavior for CAgg policy with NULL offsets
  • #6571 Fix pathtarget adjustment for MergeAppend paths in aggregation pushdown code
  • #6575 Fix compressed chunk not found during upserts
  • #6592 Fix recompression policy ignoring partially compressed chunks
  • #6610 Ensure qsort comparison function is transitive

Thanks

  • @coney21 and @GStechschulte for reporting the problem with inefficient join plans on compressed hypertables.
  • @HollowMan6 for reporting triggers not working on materialized views of CAggs
  • @jbx1 for reporting suboptimal query plans when using time_bucket with query parameters
  • @JerkoNikolic for reporting the issue with gapfill and DST
  • @pdipesh02 for working on removing the old Continuous Aggregate format
  • @raymalt and @martinhale for reporting very slow query plans on realtime CAggs queries

2.13.1 (2024-01-09)

This release contains bug fixes since the 2.13.0 release. We recommend that you upgrade at the next available opportunity.

Bugfixes

  • #6365 Use numrows_pre_compression in approximate row count
  • #6377 Use processed group clauses in PG16
  • #6384 Change bgw_log_level to use PGC_SUSET
  • #6393 Disable vectorized sum for expressions.
  • #6405 Read CAgg watermark from materialized data
  • #6408 Fix groupby pathkeys for gapfill in PG16
  • #6428 Fix index matching during DML decompression
  • #6439 Fix compressed chunk permission handling on PG16
  • #6443 Fix lost concurrent CAgg updates
  • #6454 Fix unique expression indexes on compressed chunks
  • #6465 Fix use of freed path in decompression sort logic

Thanks

  • @MA-MacDonald for reporting an issue with gapfill in PG16
  • @aarondglover for reporting an issue with unique expression indexes on compressed chunks
  • @adriangb for reporting an issue with security barrier views on pg16

2.13.0 (2023-11-28)

This release contains performance improvements, an improved hypertable DDL API and bug fixes since the 2.12.2 release. We recommend that you upgrade at the next available opportunity.

In addition, it includes these noteworthy features:

  • Full PostgreSQL 16 support for all existing features
  • Vectorized aggregation execution for sum()
  • Track chunk creation time used in retention/compression policies

Deprecation notice: Multi-node support TimescaleDB 2.13 is the last version that will include multi-node support. Multi-node support in 2.13 is available for PostgreSQL 13, 14 and 15. Learn more about it here.

If you want to migrate from multi-node TimescaleDB to single-node TimescaleDB read the migration documentation.

PostgreSQL 13 deprecation announcement We will continue supporting PostgreSQL 13 until April 2024. Sooner to that time, we will announce the specific version of TimescaleDB in which PostgreSQL 13 support will not be included going forward.

Starting from TimescaleDB 2.13.0

  • No Amazon Machine Images (AMI) are published. If you previously used AMI, please use another installation method
  • Continuous Aggregates are materialized only (non-realtime) by default

Features

  • #5575 Add chunk-wise sorted paths for compressed chunks
  • #5761 Simplify hypertable DDL API
  • #5890 Reduce WAL activity by freezing compressed tuples immediately
  • #6050 Vectorized aggregation execution for sum()
  • #6062 Add metadata for chunk creation time
  • #6077 Make Continous Aggregates materialized only (non-realtime) by default
  • #6177 Change show_chunks/drop_chunks using chunk creation time
  • #6178 Show batches/tuples decompressed during DML operations in EXPLAIN output
  • #6185 Keep track of catalog version
  • #6227 Use creation time in retention/compression policy
  • #6307 Add SQL function cagg_validate_query

Bugfixes

  • #6188 Add GUC for setting background worker log level
  • #6222 Allow enabling compression on hypertable with unique expression index
  • #6240 Check if worker registration succeeded
  • #6254 Fix exception detail passing in compression_policy_execute
  • #6264 Fix missing bms_del_member result assignment
  • #6275 Fix negative bitmapset member not allowed in compression
  • #6280 Potential data loss when compressing a table with a partial index that matches compression order.
  • #6289 Add support for startup chunk exclusion with aggs
  • #6290 Repair relacl on upgrade
  • #6297 Fix segfault when creating a cagg using a NULL width in time bucket function
  • #6305 Make timescaledb_functions.makeaclitem strict
  • #6332 Fix typmod and collation for segmentby columns
  • #6339 Fix tablespace with constraints
  • #6343 Enable segmentwise recompression in compression policy

Thanks

  • @fetchezar for reporting an issue with compression policy error messages
  • @jflambert for reporting the background worker log level issue
  • @torazem for reporting an issue with compression and large oids
  • @fetchezar for reporting an issue in the compression policy
  • @lyp-bobi for reporting an issue with tablespace with constraints
  • @pdipesh02 for contributing to the implementation of the metadata for chunk creation time, the generalized hypertable API, and show_chunks/drop_chunks using chunk creation time
  • @lkshminarayanan for all his work on PG16 support

2.12.2 (2023-10-19)

This release contains bug fixes since the 2.12.1 release. We recommend that you upgrade at the next available opportunity.

Bugfixes

  • #6155 Align gapfill bucket generation with time_bucket
  • #6181 Ensure fixed_schedule field is populated
  • #6210 Fix EXPLAIN ANALYZE for compressed DML

2.12.1 (2023-10-12)

This release contains bug fixes since the 2.12.0 release. We recommend that you upgrade at the next available opportunity.

Bugfixes

  • #6113 Fix planner distributed table count
  • #6117 Avoid decompressing batches using an empty slot
  • #6123 Fix concurrency errors in OSM API
  • #6142 do not throw an error when deprecation GUC cannot be read

Thanks

  • @symbx for reporting a crash when selecting from empty hypertables

2.12.0 (2023-09-27)

This release contains performance improvements for compressed hypertables and continuous aggregates and bug fixes since the 2.11.2 release. We recommend that you upgrade at the next available opportunity.

This release moves all internal functions from the _timescaleb_internal schema into the _timescaledb_functions schema. This separates code from internal data objects and improves security by allowing more restrictive permissions for the code schema. If you are calling any of those internal functions you should adjust your code as soon as possible. This version also includes a compatibility layer that allows calling them in the old location but that layer will be removed in 2.14.0.

PostgreSQL 12 support removal announcement Following the deprecation announcement for PostgreSQL 12 in TimescaleDB 2.10, PostgreSQL 12 is not supported starting with TimescaleDB 2.12. Currently supported PostgreSQL major versions are 13, 14 and 15. PostgreSQL 16 support will be added with a following TimescaleDB release.

Features

  • #5137 Insert into index during chunk compression
  • #5150 MERGE support on hypertables
  • #5515 Make hypertables support replica identity
  • #5586 Index scan support during UPDATE/DELETE on compressed hypertables
  • #5596 Support for partial aggregations at chunk level
  • #5599 Enable ChunkAppend for partially compressed chunks
  • #5655 Improve the number of parallel workers for decompression
  • #5758 Enable altering job schedule type through alter_job
  • #5805 Make logrepl markers for (partial) decompressions
  • #5809 Relax invalidation threshold table-level lock to row-level when refreshing a Continuous Aggregate
  • #5839 Support CAgg names in chunk_detailed_size
  • #5852 Make set_chunk_time_interval CAggs aware
  • #5868 Allow ALTER TABLE ... REPLICA IDENTITY (FULL|INDEX) on materialized hypertables (continuous aggregates)
  • #5875 Add job exit status and runtime to log
  • #5909 CREATE INDEX ONLY ON hypertable creates index on chunks

Bugfixes

  • #5860 Fix interval calculation for hierarchical CAggs
  • #5894 Check unique indexes when enabling compression
  • #5951 _timescaledb_internal.create_compressed_chunk doesn't account for existing uncompressed rows
  • #5988 Move functions to _timescaledb_functions schema
  • #5788 Chunk_create must add an existing table or fail
  • #5872 Fix duplicates on partially compressed chunk reads
  • #5918 Fix crash in COPY from program returning error
  • #5990 Place data in first/last function in correct mctx
  • #5991 Call eq_func correctly in time_bucket_gapfill
  • #6015 Correct row count in EXPLAIN ANALYZE INSERT .. ON CONFLICT output
  • #6035 Fix server crash on UPDATE of compressed chunk
  • #6044 Fix server crash when using duplicate segmentby column
  • #6045 Fix segfault in set_integer_now_func
  • #6053 Fix approximate_row_count for CAggs
  • #6081 Improve compressed DML datatype handling
  • #6084 Propagate parameter changes to decompress child nodes
  • #6102 Schedule compression policy more often

Thanks

  • @ajcanterbury for reporting a problem with lateral joins on compressed chunks
  • @alexanderlaw for reporting multiple server crashes
  • @lukaskirner for reporting a bug with monthly continuous aggregates
  • @mrksngl for reporting a bug with unusual user names
  • @willsbit for reporting a crash in time_bucket_gapfill

2.11.2 (2023-08-09)

This release contains bug fixes since the 2.11.1 release. We recommend that you upgrade at the next available opportunity.

Features

  • #5923 Feature flags for TimescaleDB features Bugfixes
  • #5680 Fix DISTINCT query with JOIN on multiple segmentby columns
  • #5774 Fixed two bugs in decompression sorted merge code
  • #5786 Ensure pg_config --cppflags are passed
  • #5906 Fix quoting owners in sql scripts.
  • #5912 Fix crash in 1-step integer policy creation Thanks
  • @mrksngl for submitting a PR to fix extension upgrade scripts
  • @ericdevries for reporting an issue with DISTINCT queries using segmentby columns of compressed hypertable

2.11.1 (2023-06-29)

This release contains bug fixes since the 2.11.0 release. We recommend that you upgrade at the next available opportunity.

Features

  • #5679 Update the loader to add support for the OSM extension (used for data tiering on Timescale)

Bugfixes

  • #5705 Scheduler accidentally getting killed when calling delete_job
  • #5742 Fix Result node handling with ConstraintAwareAppend on compressed chunks
  • #5750 Ensure tlist is present in decompress chunk plan
  • #5754 Fixed handling of NULL values in bookend_sfunc
  • #5798 Fixed batch look ahead in compressed sorted merge
  • #5804 Mark cagg_watermark function as PARALLEL RESTRICTED
  • #5807 Copy job config JSONB structure into current MemoryContext
  • #5824 Improve continuous aggregate query chunk exclusion

Thanks

  • @JamieD9 for reporting an issue with a wrong result ordering
  • @xvaara for reporting an issue with Result node handling in ConstraintAwareAppend

2.11.0 (2023-05-12)

This release contains new features and bug fixes since the 2.10.3 release. We deem it moderate priority for upgrading.

This release includes these noteworthy features:

  • Support for DML operations on compressed chunks:
    • UPDATE/DELETE support
    • Support for unique constraints on compressed chunks
    • Support for ON CONFLICT DO UPDATE
    • Support for ON CONFLICT DO NOTHING
  • Join support for Hierarchical Continuous Aggregates
  • Performance improvements for real-time Hierarchical Continuous Aggregates

Features

  • #5212 Allow pushdown of reference table joins
  • #5261 Improve Realtime Continuous Aggregate performance
  • #5252 Improve unique constraint support on compressed hypertables
  • #5339 Support UPDATE/DELETE on compressed hypertables
  • #5344 Enable JOINS for Hierarchical Continuous Aggregates
  • #5361 Add parallel support for partialize_agg()
  • #5417 Refactor and optimize distributed COPY
  • #5454 Add support for ON CONFLICT DO UPDATE for compressed hypertables
  • #5547 Skip Ordered Append when only 1 child node is present
  • #5510 Propagate vacuum/analyze to compressed chunks
  • #5584 Reduce decompression during constraint checking
  • #5530 Optimize compressed chunk resorting
  • #5639 Support sending telemetry event reports

Bugfixes

  • #5396 Fix SEGMENTBY columns predicates to be pushed down
  • #5427 Handle user-defined FDW options properly
  • #5442 Decompression may have lost DEFAULT values
  • #5459 Fix issue creating dimensional constraints
  • #5570 Improve interpolate error message on datatype mismatch
  • #5573 Fix unique constraint on compressed tables
  • #5615 Add permission checks to run_job()
  • #5614 Enable run_job() for telemetry job
  • #5578 Fix on-insert decompression after schema changes
  • #5613 Quote username identifier appropriately
  • #5525 Fix tablespace for compressed hypertable and corresponding toast
  • #5642 Fix ALTER TABLE SET with normal tables
  • #5666 Reduce memory usage for distributed analyze
  • #5668 Fix subtransaction resource owner

Thanks

  • @kovetskiy and @DZDomi for reporting peformance regression in Realtime Continuous Aggregates
  • @ollz272 for reporting an issue with interpolate error messages

2.10.3 (2023-04-26)

Bugfixes

  • #5583 Fix parameterization in DecompressChunk path generation
  • #5602 Fix broken CAgg with JOIN repair function

2.10.2 (2023-04-20)

Bugfixes

  • #5410 Fix file trailer handling in the COPY fetcher
  • #5446 Add checks for malloc failure in libpq calls
  • #5233 Out of on_proc_exit slots on guc license change
  • #5428 Use consistent snapshots when scanning metadata
  • #5499 Do not segfault on large histogram() parameters
  • #5470 Ensure superuser perms during copy/move chunk
  • #5500 Fix when no FROM clause in continuous aggregate definition
  • #5433 Fix join rte in CAggs with joins
  • #5556 Fix duplicated entries on timescaledb_experimental.policies view
  • #5462 Fix segfault after column drop on compressed table
  • #5543 Copy scheduled_jobs list before sorting it
  • #5497 Allow named time_bucket arguments in Cagg definition
  • #5544 Fix refresh from beginning of Continuous Aggregate with variable time bucket
  • #5558 Use regrole for job owner
  • #5542 Enable indexscan on uncompressed part of partially compressed chunks

Thanks

  • @nikolaps for reporting an issue with the COPY fetcher
  • @S-imo-n for reporting the issue on Background Worker Scheduler crash
  • @geezhu for reporting issue on segfault in historgram()
  • @mwahlhuetter for reporting the issue with joins in CAggs
  • @mwahlhuetter for reporting issue with duplicated entries on timescaledb_experimental.policies view
  • @H25E for reporting error refreshing from beginning of a Continuous Aggregate with variable time bucket

2.10.1 (2023-03-07)

This release contains bug fixes since the 2.10.0 release. We recommend that you upgrade at the next available opportunity.

Bugfixes

  • #5159 Support Continuous Aggregates names in hypertable_(detailed_)size
  • #5226 Fix concurrent locking with chunk_data_node table
  • #5317 Fix some incorrect memory handling
  • #5336 Use NameData and namestrcpy for names
  • #5343 Set PortalContext when starting job
  • #5360 Fix uninitialized bucket_info variable
  • #5362 Make copy fetcher more async
  • #5364 Fix num_chunks inconsistency in hypertables view
  • #5367 Fix column name handling in old-style continuous aggregates
  • #5378 Fix multinode DML HA performance regression
  • #5384 Fix Hierarchical Continuous Aggregates chunk_interval_size

Thanks

  • @justinozavala for reporting an issue with PL/Python procedures in the background worker
  • @Medvecrab for discovering an issue with copying NameData when forming heap tuples.
  • @pushpeepkmonroe for discovering an issue in upgrading old-style continuous aggregates with renamed columns

2.10.0 (2023-02-21)

This release contains new features and bug fixes since the 2.9.3 release. We deem it moderate priority for upgrading.

This release includes these noteworthy features:

  • Joins in continuous aggregates
  • Re-architecture of how compression works: ~2x improvement on INSERT rate into compressed chunks.
  • Full PostgreSQL 15 support for all existing features. Support for the newly introduced MERGE command on hypertables will be introduced on a follow-up release.

PostgreSQL 12 deprecation announcement We will continue supporting PostgreSQL 12 until July 2023. Sooner to that time, we will announce the specific version of TimescaleDB in which PostgreSQL 12 support will not be included going forward.

Old format of Continuous Aggregates deprecation announcement TimescaleDB 2.7 introduced a new format for continuous aggregates that improves performance. All instances with Continuous Aggregates using the old format should migrate to the new format by July 2023, when support for the old format will be removed. Sooner to that time, we will announce the specific version of TimescaleDB in which support for this feature will not be included going forward.

Features

  • #4874 Allow joins in continuous aggregates
  • #4926 Refactor INSERT into compressed chunks
  • #5241 Allow RETURNING clause when inserting into compressed chunks
  • #5245 Manage life-cycle of connections via memory contexts
  • #5246 Make connection establishment interruptible
  • #5253 Make data node command execution interruptible
  • #5262 Extend enabling compression on a continuous aggregrate with 'compress_segmentby' and 'compress_orderby' parameters

Bugfixes

  • #5214 Fix use of prepared statement in async module
  • #5218 Add role-level security to job error log
  • #5239 Fix next_start calculation for fixed schedules
  • #5290 Fix enabling compression on continuous aggregates with columns requiring quotation

Thanks

  • @henriquegelio for reporting the issue on fixed schedules

2.9.3 (2023-02-03)

This release contains bug fixes since the 2.9.2 release and a fix for a security vulnerability (#5259). You can check the security advisory(https://github.com/timescale/timescaledb/security/advisories/GHSA-44jh-j22r-33wq) for more information on the vulnerability and the platforms that are affected.

This release is high priority for upgrade. We strongly recommend that you upgrade as soon as possible.

Bugfixes

  • #4804 Skip bucketing when start or end of refresh job is null
  • #5108 Fix column ordering in compressed table index not following the order of a multi-column segment by definition
  • #5187 Don't enable clang-tidy by default
  • #5255 Fix year not being considered as a multiple of day/month in hierarchical continuous aggregates
  • #5259 Lock down search_path in SPI calls

Thanks

  • @ssmoss for reporting issues on continuous aggregates
  • @jaskij for reporting the compliation issue that occurred with clang

2.9.2 (2023-01-26)

This release contains bug fixes since the 2.9.1 release. We recommend that you upgrade at the next available opportunity.

Bugfixes

  • #5114 Fix issue with deleting data node and dropping the database on multi-node
  • #5133 Fix creating a CAgg on a CAgg where the time column is in a different order of the original hypertable
  • #5152 Fix adding column with NULL constraint to compressed hypertable
  • #5170 Fix CAgg on CAgg variable bucket size validation
  • #5180 Fix default data node availability status on multi-node
  • #5181 Fix ChunkAppend and ConstraintAwareAppend with TidRangeScan child subplan
  • #5193 Fix repartition behavior when attaching data node on multi-node

Thanks

  • @salquier-appvizer for reporting error on CAgg on CAgg using different column order on the original hypertable
  • @ikkala for reporting error when adding column with NULL constraint to compressed hypertable
  • @ssmoss, @adbnexxtlab and @ivanzamanov for reporting error on CAgg on CAgg variable bucket size validation
  • @ronnyas for reporting a bug "Invalid child of chunk" on specific ctid filtering

2.9.1 (2022-12-23)

This release contains bug fixes since the 2.9.0 release. This release is high priority for upgrade. We strongly recommend that you upgrade as soon as possible.

Bugfixes

  • #5072 Fix CAgg on CAgg bucket size validation
  • #5101 Fix enabling compression on caggs with renamed columns
  • #5106 Fix building against PG15 on Windows
  • #5117 Fix postgres server restart on background worker exit
  • #5121 Fix privileges for job_errors in update script

2.9.0 (2022-12-15)

This release adds major new features since the 2.8.1 release. We deem it moderate priority for upgrading.

This release includes these noteworthy features:

  • Hierarchical Continuous Aggregates (aka Continuous Aggregate on top of another Continuous Aggregate)
  • Improve time_bucket_gapfill function to allow specifying the timezone to bucket
  • Introduce fixed schedules for background jobs and the ability to check job errors.
  • Use alter_data_node() to change the data node configuration. This function introduces the option to configure the availability of the data node.

This release also includes several bug fixes.

Features

  • #4476 Batch rows on access node for distributed COPY
  • #4567 Exponentially backoff when out of background workers
  • #4650 Show warnings when not following best practices
  • #4664 Introduce fixed schedules for background jobs
  • #4668 Hierarchical Continuous Aggregates
  • #4670 Add timezone support to time_bucket_gapfill
  • #4678 Add interface for troubleshooting job failures
  • #4718 Add ability to merge chunks while compressing
  • #4786 Extend the now() optimization to also apply to CURRENT_TIMESTAMP
  • #4820 Support parameterized data node scans in joins
  • #4830 Add function to change configuration of a data nodes
  • #4966 Handle DML activity when datanode is not available
  • #4971 Add function to drop stale chunks on a datanode

Bugfixes

  • #4663 Don't error when compression metadata is missing
  • #4673 Fix now() constification for VIEWs
  • #4681 Fix compression_chunk_size primary key
  • #4696 Report warning when enabling compression on hypertable
  • #4745 Fix FK constraint violation error while insert into hypertable which references partitioned table
  • #4756 Improve compression job IO performance
  • #4770 Continue compressing other chunks after an error
  • #4794 Fix degraded performance seen on timescaledb_internal.hypertable_local_size() function
  • #4807 Fix segmentation fault during INSERT into compressed hypertable
  • #4822 Fix missing segmentby compression option in CAGGs
  • #4823 Fix a crash that could occur when using nested user-defined functions with hypertables
  • #4840 Fix performance regressions in the copy code
  • #4860 Block multi-statement DDL command in one query
  • #4898 Fix cagg migration failure when trying to resume
  • #4904 Remove BitmapScan support in DecompressChunk
  • #4906 Fix a performance regression in the query planner by speeding up frozen chunk state checks
  • #4910 Fix a typo in process_compressed_data_out
  • #4918 Cagg migration orphans cagg policy
  • #4941 Restrict usage of the old format (pre 2.7) of continuous aggregates in PostgreSQL 15.
  • #4955 Fix cagg migration for hypertables using timestamp without timezone
  • #4968 Check for interrupts in gapfill main loop
  • #4988 Fix cagg migration crash when refreshing the newly created cagg
  • #5054 Fix segfault after second ANALYZE
  • #5086 Reset baserel cache on invalid hypertable cache

Thanks

  • @byazici for reporting a problem with segmentby on compressed caggs
  • @jflambert for reporting a crash with nested user-defined functions.
  • @jvanns for reporting hypertable FK reference to vanilla PostgreSQL partitioned table doesn't seem to work
  • @kou for fixing a typo in process_compressed_data_out
  • @kyrias for reporting a crash when ANALYZE is executed on extended query protocol mode with extension loaded.
  • @tobiasdirksen for requesting Continuous aggregate on top of another continuous aggregate
  • @xima for reporting a bug in Cagg migration
  • @xvaara for helping reproduce a bug with bitmap scans in transparent decompression

2.8.1 (2022-10-06)

This release is a patch release. We recommend that you upgrade at the next available opportunity.

Bugfixes

  • #4454 Keep locks after reading job status
  • #4658 Fix error when querying a compressed hypertable with compress_segmentby on an enum column
  • #4671 Fix a possible error while flushing the COPY data
  • #4675 Fix bad TupleTableSlot drop
  • #4676 Fix a deadlock when decompressing chunks and performing SELECTs
  • #4685 Fix chunk exclusion for space partitions in SELECT FOR UPDATE queries
  • #4694 Change parameter names of cagg_migrate procedure
  • #4698 Do not use row-by-row fetcher for parameterized plans
  • #4711 Remove support for procedures as custom checks
  • #4712 Fix assertion failure in constify_now
  • #4713 Fix Continuous Aggregate migration policies
  • #4720 Fix chunk exclusion for prepared statements and dst changes
  • #4726 Fix gapfill function signature
  • #4737 Fix join on time column of compressed chunk
  • #4738 Fix error when waiting for remote COPY to finish
  • #4739 Fix continuous aggregate migrate check constraint
  • #4760 Fix segfault when INNER JOINing hypertables
  • #4767 Fix permission issues on index creation for CAggs

Thanks

  • @boxhock and @cocowalla for reporting a segfault when JOINing hypertables
  • @carobme for reporting constraint error during continuous aggregate migration
  • @choisnetm, @dustinsorensen, @jayadevanm and @joeyberkovitz for reporting a problem with JOINs on compressed hypertables
  • @daniel-k for reporting a background worker crash
  • @justinpryzby for reporting an error when compressing very wide tables
  • @maxtwardowski for reporting problems with chunk exclusion and space partitions
  • @yuezhihan for reporting GROUP BY error when having compress_segmentby on an enum column

2.8.0 (2022-08-30)

This release adds major new features since the 2.7.2 release. We deem it moderate priority for upgrading.

This release includes these noteworthy features:

  • time_bucket now supports bucketing by month, year and timezone
  • Improve performance of bulk SELECT and COPY for distributed hypertables
  • 1 step CAgg policy management
  • Migrate Continuous Aggregates to the new format

Features

  • #4188 Use COPY protocol in row-by-row fetcher
  • #4307 Mark partialize_agg as parallel safe
  • #4380 Enable chunk exclusion for space dimensions in UPDATE/DELETE
  • #4384 Add schedule_interval to policies
  • #4390 Faster lookup of chunks by point
  • #4393 Support intervals with day component when constifying now()
  • #4397 Support intervals with month component when constifying now()
  • #4405 Support ON CONFLICT ON CONSTRAINT for hypertables
  • #4412 Add telemetry about replication
  • #4415 Drop remote data when detaching data node
  • #4416 Handle TRUNCATE TABLE on chunks
  • #4425 Add parameter check_config to alter_job
  • #4430 Create index on Continuous Aggregates
  • #4439 Allow ORDER BY on continuous aggregates
  • #4443 Add stateful partition mappings
  • #4484 Use non-blocking data node connections for COPY
  • #4495 Support add_dimension() with existing data
  • #4502 Add chunks to baserel cache on chunk exclusion
  • #4545 Add hypertable distributed argument and defaults
  • #4552 Migrate Continuous Aggregates to the new format
  • #4556 Add runtime exclusion for hypertables
  • #4561 Change get_git_commit to return full commit hash
  • #4563 1 step CAgg policy management
  • #4641 Allow bucketing by month, year, century in time_bucket and time_bucket_gapfill
  • #4642 Add timezone support to time_bucket

Bugfixes

  • #4359 Create composite index on segmentby columns
  • #4374 Remove constified now() constraints from plan
  • #4416 Handle TRUNCATE TABLE on chunks
  • #4478 Synchronize chunk cache sizes
  • #4486 Adding boolean column with default value doesn't work on compressed table
  • #4512 Fix unaligned pointer access
  • #4519 Throw better error message on incompatible row fetcher settings
  • #4549 Fix dump_meta_data for windows
  • #4553 Fix timescaledb_post_restore GUC handling
  • #4573 Load TSL library on compressed_data_out call
  • #4575 Fix use of get_partition_hash and get_partition_for_key inside an IMMUTABLE function
  • #4577 Fix segfaults in compression code with corrupt data
  • #4580 Handle default privileges on CAggs properly
  • #4582 Fix assertion in GRANT .. ON ALL TABLES IN SCHEMA
  • #4583 Fix partitioning functions
  • #4589 Fix rename for distributed hypertable
  • #4601 Reset compression sequence when group resets
  • #4611 Fix a potential OOM when loading large data sets into a hypertable
  • #4624 Fix heap buffer overflow
  • #4627 Fix telemetry initialization
  • #4631 Ensure TSL library is loaded on database upgrades
  • #4646 Fix time_bucket_ng origin handling
  • #4647 Fix the error "SubPlan found with no parent plan" that occurred if using joins in RETURNING clause.

Thanks

  • @AlmiS for reporting error on get_partition_hash executed inside an IMMUTABLE function
  • @Creatation for reporting an issue with renaming hypertables
  • @janko for reporting an issue when adding bool column with default value to compressed hypertable
  • @jayadevanm for reporting error of TRUNCATE TABLE on compressed chunk
  • @michaelkitson for reporting permission errors using default privileges on Continuous Aggregates
  • @mwahlhuetter for reporting error in joins in RETURNING clause
  • @ninjaltd and @mrksngl for reporting a potential OOM when loading large data sets into a hypertable
  • @PBudmark for reporting an issue with dump_meta_data.sql on Windows
  • @ssmoss for reporting an issue with time_bucket_ng origin handling

2.7.2 (2022-07-26)

This release is a patch release. We recommend that you upgrade at the next available opportunity. Among other things this release fixes several memory leaks, handling of TOASTed values in GapFill and parameter handling in prepared statements.

Bugfixes

  • #4517 Fix prepared statement param handling in ChunkAppend
  • #4522 Fix ANALYZE on dist hypertable for a set of nodes
  • #4526 Fix gapfill group comparison for TOASTed values
  • #4527 Handle stats properly for range types
  • #4532 Fix memory leak in function telemetry
  • #4534 Use explicit memory context with hash_create
  • #4538 Fix chunk creation on hypertables with non-default statistics

Thanks

  • @3a6u9ka, @bgemmill, @hongquan, @stl-leonid-kalmaev and @victor-sudakov for reporting a memory leak
  • @hleung2021 and @laocaixw for reporting an issue with parameter handling in prepared statements

2.7.1 (2022-07-07)

This release is a patch release. We recommend that you upgrade at the next available opportunity.

Bugfixes

  • #4494 Handle timescaledb versions aptly in multinode
  • #4493 Segfault when executing IMMUTABLE functions
  • #4482 Fix race conditions during chunk (de)compression
  • #4367 Improved buffer management in the copy operator
  • #4375 Don't ask for orderby column if default already set
  • #4400 Use our implementation of find_em_expr_for_rel for PG15+
  • #4408 Fix crash during insert into distributed hypertable
  • #4411 Add shmem_request_hook
  • #4437 Fix segfault in subscription_exec
  • #4442 Fix perms in copy/move chunk
  • #4450 Retain hypertable ownership on attach_data_node
  • #4451 Repair numeric partial state on the fly
  • #4463 Fix empty bytea handlng with distributed tables
  • #4469 Better superuser handling for move_chunk

Features

  • #4244 Function telemetry
  • #4287 Add internal api for foreign table chunk
  • #4470 Block drop chunk if chunk is in frozen state
  • #4464 Add internal api to associate a hypertable with custom jobs

Thanks

  • @xin-hedera Finding bug in empty bytea values for distributed tables
  • @jflambert for reporting a bug with IMMUTABLE functions
  • @nikugogoi for reporting a bug with CTEs and upserts on distributed hypertables

2.7.0 (2022-05-24)

This release adds major new features since the 2.6.1 release. We deem it moderate priority for upgrading.

This release includes these noteworthy features:

  • Optimize continuous aggregate query performance and storage
  • The following query clauses and functions can now be used in a continuous aggregate: FILTER, DISTINCT, ORDER BY as well as Ordered-Set Aggregate and Hypothetical-Set Aggregate
  • Optimize now() query planning time
  • Improve COPY insert performance
  • Improve performance of UPDATE/DELETE on PG14 by excluding chunks

This release also includes several bug fixes.

If you are upgrading from a previous version and were using compression with a non-default collation on a segmentby-column you should recompress those hypertables.

Features

  • #4045 Custom origin's support in CAGGs
  • #4120 Add logging for retention policy
  • #4158 Allow ANALYZE command on a data node directly
  • #4169 Add support for chunk exclusion on DELETE to PG14
  • #4209 Add support for chunk exclusion on UPDATE to PG14
  • #4269 Continuous Aggregates finals form
  • #4301 Add support for bulk inserts in COPY operator
  • #4311 Support non-superuser move chunk operations
  • #4330 Add GUC "bgw_launcher_poll_time"
  • #4340 Enable now() usage in plan-time chunk exclusion

Bugfixes

  • #3899 Fix segfault in Continuous Aggregates
  • #4225 Fix TRUNCATE error as non-owner on hypertable
  • #4236 Fix potential wrong order of results for compressed hypertable with a non-default collation
  • #4249 Fix option "timescaledb.create_group_indexes"
  • #4251 Fix INSERT into compressed chunks with dropped columns
  • #4255 Fix option "timescaledb.create_group_indexes"
  • #4259 Fix logic bug in extension update script
  • #4269 Fix bad Continuous Aggregate view definition reported in #4233
  • #4289 Support moving compressed chunks between data nodes
  • #4300 Fix refresh window cap for cagg refresh policy
  • #4315 Fix memory leak in scheduler
  • #4323 Remove printouts from signal handlers
  • #4342 Fix move chunk cleanup logic
  • #4349 Fix crashes in functions using AlterTableInternal
  • #4358 Fix crash and other issues in telemetry reporter

Thanks

  • @abrownsword for reporting a bug in the telemetry reporter and testing the fix
  • @jsoref for fixing various misspellings in code, comments and documentation
  • @yalon for reporting an error with ALTER TABLE RENAME on distributed hypertables
  • @zhuizhuhaomeng for reporting and fixing a memory leak in our scheduler

2.6.1 (2022-04-11)

This release is patch release. We recommend that you upgrade at the next available opportunity.

Bugfixes

  • #4121 Fix RENAME TO/SET SCHEMA on distributed hypertable
  • #4122 Fix segfault on INSERT into distributed hypertable
  • #4142 Ignore invalid relid when deleting hypertable
  • #4159 Fix ADD COLUMN IF NOT EXISTS error on compressed hypertable
  • #4161 Fix memory handling during scans
  • #4176 Fix remote EXPLAIN with parameterized queries
  • #4181 Fix spelling errors and omissions
  • #4186 Fix owner change for distributed hypertable
  • #4192 Abort sessions after extension reload
  • #4193 Fix relcache callback handling causing crashes
  • #4199 Remove signal-unsafe calls from signal handlers
  • #4219 Do not modify aggregation state in finalize

Thanks

  • @abrownsword for reporting a crash in the telemetry reporter
  • @amalek215 for reporting a segmentation fault when running VACUUM FULL pg_class
  • @daydayup863 for reporting issue with remote explain
  • @krvajal for reporting an error with ADD COLUMN IF NOT EXISTS on compressed hypertables

2.6.0 (2022-02-16)

This release is medium priority for upgrade. We recommend that you upgrade at the next available opportunity.

This release adds major new features since the 2.5.2 release, including:

  • Compression in continuous aggregates
  • Experimental support for timezones in continuous aggregates
  • Experimental support for monthly buckets in continuous aggregates

The release also includes several bug fixes. Telemetry reports now include new and more detailed statistics on regular tables and views, compression, distributed hypertables, and continuous aggregates, which will help us improve TimescaleDB.

Features

  • #3768 Allow ALTER TABLE ADD COLUMN with DEFAULT on compressed hypertable
  • #3769 Allow ALTER TABLE DROP COLUMN on compressed hypertable
  • #3943 Optimize first/last
  • #3945 Add support for ALTER SCHEMA on multi-node
  • #3949 Add support for DROP SCHEMA on multi-node

Bugfixes

  • #3808 Properly handle max_retries option
  • #3863 Fix remote transaction heal logic
  • #3869 Fix ALTER SET/DROP NULL constraint on distributed hypertable
  • #3944 Fix segfault in add_compression_policy
  • #3961 Fix crash in EXPLAIN VERBOSE on distributed hypertable
  • #4015 Eliminate float rounding instabilities in interpolate
  • #4019 Update ts_extension_oid in transitioning state
  • #4073 Fix buffer overflow in partition scheme
  • #4180 ALTER TABLE OWNER TO does not work for distributed hypertable

Improvements

  • Query planning performance is improved for hypertables with a large number of chunks.

Thanks

  • @fvannee for reporting a first/last memory leak
  • @mmouterde for reporting an issue with floats and interpolate

2.5.2 (2022-02-09)

This release contains bug fixes since the 2.5.1 release. This release is high priority for upgrade. We strongly recommend that you upgrade as soon as possible.

Bugfixes

  • #3900 Improve custom scan node registration
  • #3911 Fix role type deparsing for GRANT command
  • #3918 Fix DataNodeScan plans with one-time filter
  • #3921 Fix segfault on insert into internal compressed table
  • #3938 Fix subtract_integer_from_now on 32-bit platforms and improve error handling
  • #3939 Fix projection handling in time_bucket_gapfill
  • #3948 Avoid double PGclear() in data fetchers
  • #3979 Fix deparsing of index predicates
  • #4020 Fix ALTER TABLE EventTrigger initialization
  • #4024 Fix premature cache release call
  • #4037 Fix status for dropped chunks that have catalog entries
  • #4069 Fix riinfo NULL handling in ANY construct
  • #4071 Fix extension installation privilege escalation (CVE-2022-24128)

Thanks

  • @carlocperez for reporting crash with NULL handling in ANY construct
  • @erikhh for reporting an issue with time_bucket_gapfill
  • @kancsuki for reporting drop column and partial index creation not working
  • @mmouterde for reporting an issue with floats and interpolate
  • Pedro Gallegos for reporting a possible privilege escalation during extension installation

2.5.1 (2021-12-02)

This release contains bug fixes since the 2.5.0 release. We deem it medium priority to upgrade.

Bugfixes

  • #3706 Test enabling dist compression within a procedure
  • #3734 Rework distributed DDL processing logic
  • #3737 Fix flaky pg_dump
  • #3739 Fix compression policy on tables using INTEGER
  • #3766 Fix segfault in ts_hist_sfunc
  • #3779 Support GRANT/REVOKE on distributed database
  • #3789 Fix time_bucket comparison transformation
  • #3797 Fix DISTINCT ON queries for distributed hyperatbles
  • #3799 Fix error printout on correct security label
  • #3801 Fail size utility functions when data nodes do not respond
  • #3809 Fix NULL pointer evaluation in fill_result_error()
  • #3811 Fix INSERT..SELECT involving dist hypertables
  • #3819 Fix reading garbage value from TSConnectionError
  • #3824 Remove pointers from CAGG lists for 64-bit archs
  • #3846 Eliminate deadlock in recompress chunk policy
  • #3881 Fix SkipScan crash due to pruned unique path
  • #3884 Fix create_distributed_restore_point memory issue

Thanks

  • @cbisnett for reporting and fixing a typo in an error message
  • @CaptainCuddleCube for reporting bug on compression policy procedure on tables using INTEGER on time dimension
  • @phemmer for reporting bugs on multi-node

2.5.0 (2021-10-28)

This release adds major new features since the 2.4.2 release. We deem it moderate priority for upgrading.

This release includes these noteworthy features:

  • Continuous Aggregates for Distributed Hypertables
  • Support for PostgreSQL 14
  • Experimental: Support for timezones in time_bucket_ng(), including the origin argument

This release also includes several bug fixes.

Features

  • #3034 Add support for PostgreSQL 14
  • #3435 Add continuous aggregates for distributed hypertables
  • #3505 Add support for timezones in time_bucket_ng()

Bugfixes

  • #3580 Fix memory context bug executing TRUNCATE
  • #3592 Allow alter column type on distributed hypertable
  • #3598 Improve evaluation of stable functions such as now() on access node
  • #3618 Fix execution of refresh_caggs from user actions
  • #3625 Add shared dependencies when creating chunk
  • #3626 Fix memory context bug executing TRUNCATE
  • #3627 Schema qualify UDTs in multi-node
  • #3638 Allow owner change of a data node
  • #3654 Fix index attnum mapping in reorder_chunk
  • #3661 Fix SkipScan path generation with constant DISTINCT column
  • #3667 Fix compress_policy for multi txn handling
  • #3673 Fix distributed hypertable DROP within a procedure
  • #3701 Allow anyone to use size utilities on distributed hypertables
  • #3708 Fix crash in get_aggsplit
  • #3709 Fix ordered append pathkey check
  • #3712 Fix GRANT/REVOKE ALL IN SCHEMA handling
  • #3717 Support transparent decompression on individual chunks
  • #3724 Fix inserts into compressed chunks on hypertables with caggs
  • #3727 Fix DirectFunctionCall crash in distributed_exec
  • #3728 Fix SkipScan with varchar column
  • #3733 Fix ANALYZE crash with custom statistics for custom types
  • #3747 Always reset expr context in DecompressChunk

Thanks

  • @binakot and @sebvett for reporting an issue with DISTINCT queries
  • @hardikm10, @DavidPavlicek and @pafiti for reporting bugs on TRUNCATE
  • @mjf for reporting an issue with ordered append and JOINs
  • @phemmer for reporting the issues on multinode with aggregate queries and evaluation of now()
  • @abolognino for reporting an issue with INSERTs into compressed hypertables that have cagg
  • @tanglebones for reporting the ANALYZE crash with custom types on multinode
  • @amadeubarbosa and @felipenogueirajack for reporting crash using JSONB column in compressed chunks

2.4.2 (2021-09-21)

This release contains bug fixes since the 2.4.1 release. We deem it high priority to upgrade.

Bugfixes

  • #3437 Rename on all continuous aggregate objects
  • #3469 Use signal-safe functions in signal handler
  • #3520 Modify compression job processing logic
  • #3527 Fix time_bucket_ng behaviour with origin argument
  • #3532 Fix bootstrap with regresschecks disabled
  • #3574 Fix failure on job execution by background worker
  • #3590 Call cleanup functions on backend exit

Thanks

  • @jankatins for reporting a crash with background workers
  • @LutzWeischerFujitsu for reporting an issue with bootstrap

2.4.1 (2021-08-19)

This release contains bug fixes since the 2.4.0 release. We deem it high priority to upgrade.

The release fixes continous aggregate refresh for postgres 12.8 and 13.4, a crash with ALTER TABLE commands and a crash with continuous aggregates with HAVING clause.

Bugfixes

  • #3430 Fix havingqual processing for continuous aggregates
  • #3468 Disable tests by default if tools are not found
  • #3462 Fix crash while tracking alter table commands
  • #3489 Fix continuous agg bgw job failure for PG 12.8 and 13.4
  • #3494 Improve error message when adding data nodes

Thanks

  • @brianbenns for reporting a segfault with continuous aggregates
  • @usego for reporting an issue with continuous aggregate refresh on PG 13.4

2.4.0 (2021-07-29)

This release adds new experimental features since the 2.3.1 release.

The experimental features in this release are:

  • APIs for chunk manipulation across data nodes in a distributed hypertable setup. This includes the ability to add a data node and move chunks to the new data node for cluster rebalancing.
  • The time_bucket_ng function, a newer version of time_bucket. This function supports years, months, days, hours, minutes, and seconds.

We’re committed to developing these experiments, giving the community a chance to provide early feedback and influence the direction of TimescaleDB’s development. We’ll travel faster with your input!

Please create your feedback as a GitHub issue (using the experimental-schema label), describe what you found, and tell us the steps or share the code snip to recreate it.

This release also includes several bug fixes.

PostgreSQL 11 deprecation announcement Timescale is working hard on our next exciting features. To make that possible, we require functionality that is available in Postgres 12 and above. Postgres 11 is not supported with TimescaleDB 2.4.

Experimental Features

  • #3293 Add timescaledb_experimental schema
  • #3302 Add block_new_chunks and allow_new_chunks API to experimental schema. Add chunk based refresh_continuous_aggregate.
  • #3211 Introduce experimental time_bucket_ng function
  • #3366 Allow use of experimental time_bucket_ng function in continuous aggregates
  • #3408 Support for seconds, minutes and hours in time_bucket_ng
  • #3446 Implement cleanup for chunk copy/move.

Bugfixes

  • #3401 Fix segfault for RelOptInfo without fdw_private
  • #3411 Verify compressed chunk validity for compressed path
  • #3416 Fix targetlist names for continuous aggregate views
  • #3434 Remove extension check from relcache invalidation callback
  • #3440 Fix remote_tx_heal_data_node to work with only current database

Thanks

  • @fvannee for reporting an issue with hypertable expansion in functions
  • @amalek215 for reporting an issue with cache invalidation during pg_class vacuum full
  • @hardikm10 for reporting an issue with inserting into compressed chunks
  • @dberardo-com and @iancmcc for reporting an issue with extension updates after renaming columns of continuous aggregates.

2.3.1 (2021-07-05)

This maintenance release contains bugfixes since the 2.3.0 release. We deem it moderate priority for upgrading. The release introduces the possibility of generating downgrade scripts, improves the trigger handling for distributed hypertables, adds some more randomness to chunk assignment to avoid thundering herd issues in chunk assignment, and fixes some issues in update handling as well as some other bugs.

Bugfixes

  • #3279 Add some more randomness to chunk assignment
  • #3288 Fix failed update with parallel workers
  • #3300 Improve trigger handling on distributed hypertables
  • #3304 Remove paths that reference parent relids for compressed chunks
  • #3305 Fix pull_varnos miscomputation of relids set
  • #3310 Generate downgrade script
  • #3314 Fix heap buffer overflow in hypertable expansion
  • #3317 Fix heap buffer overflow in remote connection cache.
  • #3327 Make aggregates in caggs fully qualified
  • #3336 Fix pg_init_privs objsubid handling
  • #3345 Fix SkipScan distinct column identification
  • #3355 Fix heap buffer overflow when renaming compressed hypertable columns.
  • #3367 Improve DecompressChunk qual pushdown
  • #3377 Fix bad use of repalloc

Thanks

  • @db-adrian for reporting an issue when accessing cagg view through postgres_fdw
  • @fncaldas and @pgwhalen for reporting an issue accessing caggs when public is not in search_path
  • @fvannee, @mglonnro and @ebreijo for reporting an issue with the upgrade script
  • @fvannee for reporting a performance regression with SkipScan

2.3.0 (2021-05-25)

This release adds major new features since the 2.2.1 release. We deem it moderate priority for upgrading.

This release adds support for inserting data into compressed chunks and improves performance when inserting data into distributed hypertables. Distributed hypertables now also support triggers and compression policies.

The bug fixes in this release address issues related to the handling of privileges on compressed hypertables, locking, and triggers with transition tables.

Features

  • #3116 Add distributed hypertable compression policies
  • #3162 Use COPY when executing distributed INSERTs
  • #3199 Add GENERATED column support on distributed hypertables
  • #3210 Add trigger support on distributed hypertables
  • #3230 Support for inserts into compressed chunks

Bugfixes

  • #3213 Propagate grants to compressed hypertables
  • #3229 Use correct lock mode when updating chunk
  • #3243 Fix assertion failure in decompress_chunk_plan_create
  • #3250 Fix constraint triggers on hypertables
  • #3251 Fix segmentation fault due to incorrect call to chunk_scan_internal
  • #3252 Fix blocking triggers with transition tables

Thanks

  • @yyjdelete for reporting a crash with decompress_chunk and identifying the bug in the code
  • @fabriziomello for documenting the prerequisites when compiling against PostgreSQL 13

2.2.1 (2021-05-05)

This maintenance release contains bugfixes since the 2.2.0 release. We deem it high priority for upgrading.

This release extends Skip Scan to multinode by enabling the pushdown of DISTINCT to data nodes. It also fixes a number of bugs in the implementation of Skip Scan, in distributed hypertables, in creation of indexes, in compression, and in policies.

Features

  • #3113 Pushdown "SELECT DISTINCT" in multi-node to allow use of Skip Scan

Bugfixes

  • #3101 Use commit date in get_git_commit()
  • #3102 Fix REINDEX TABLE for distributed hypertables
  • #3104 Fix use after free in add_reorder_policy
  • #3106 Fix use after free in chunk_api_get_chunk_stats
  • #3109 Copy recreated object permissions on update
  • #3111 Fix CMAKE_BUILD_TYPE check
  • #3112 Use %u to format Oid instead of %d
  • #3118 Fix use after free in cache
  • #3123 Fix crash while using REINDEX TABLE CONCURRENTLY
  • #3135 Fix SkipScan path generation in DISTINCT queries with expressions
  • #3146 Fix SkipScan for IndexPaths without pathkeys
  • #3147 Skip ChunkAppend if AppendPath has no children
  • #3148 Make SELECT DISTINCT handle non-var targetlists
  • #3151 Fix fdw_relinfo_get assertion failure on DELETE
  • #3155 Inherit CFLAGS from PostgreSQL
  • #3169 Fix incorrect type cast in compression policy
  • #3183 Fix segfault in calculate_chunk_interval
  • #3185 Fix wrong datatype for integer based retention policy

Thanks

  • @Dead2, @dv8472 and @einsibjarni for reporting an issue with multinode queries and views
  • @aelg for reporting an issue with policies on integer-based hypertables
  • @hperez75 for reporting an issue with Skip Scan
  • @nathanloisel for reporting an issue with compression on hypertables with integer-based timestamps
  • @xin-hedera for fixing an issue with compression on hypertables with integer-based timestamps

2.2.0 (2021-04-13)

This release adds major new features since the 2.1.1 release. We deem it moderate priority for upgrading.

This release adds the Skip Scan optimization, which significantly improves the performance of queries with DISTINCT ON. This optimization is not yet available for queries on distributed hypertables.

This release also adds a function to create a distributed restore point, which allows performing a consistent restore of a multi-node cluster from a backup.

The bug fixes in this release address issues with size and stats functions, high memory usage in distributed inserts, slow distributed ORDER BY queries, indexes involving INCLUDE, and single chunk query planning.

PostgreSQL 11 deprecation announcement

Timescale is working hard on our next exciting features. To make that possible, we require functionality that is unfortunately absent on PostgreSQL 11. For this reason, we will continue supporting PostgreSQL 11 until mid-June 2021. Sooner to that time, we will announce the specific version of TimescaleDB in which PostgreSQL 11 support will not be included going forward.

Major Features

  • #2843 Add distributed restore point functionality
  • #3000 SkipScan to speed up SELECT DISTINCT

Bugfixes

  • #2989 Refactor and harden size and stats functions
  • #3058 Reduce memory usage for distributed inserts
  • #3067 Fix extremely slow multi-node order by queries
  • #3082 Fix chunk index column name mapping
  • #3083 Keep Append pathkeys in ChunkAppend

Thanks

  • @BowenGG for reporting an issue with indexes with INCLUDE
  • @fvannee for reporting an issue with ChunkAppend pathkeys
  • @pedrokost and @RobAtticus for reporting an issue with size functions on empty hypertables
  • @phemmer and @ryanbooz for reporting issues with slow multi-node order by queries
  • @stephane-moreau for reporting an issue with high memory usage during single-transaction inserts on a distributed hypertable.

2.1.1 (2021-03-29)

This maintenance release contains bugfixes since the 2.1.0 release. We deem it high priority for upgrading.

The bug fixes in this release address issues with CREATE INDEX and UPSERT for hypertables, custom jobs, and gapfill queries.

This release marks TimescaleDB as a trusted extension in PG13, so that superuser privileges are not required anymore to install the extension.

Minor features

  • #2998 Mark timescaledb as trusted extension

Bugfixes

  • #2948 Fix off by 4 error in histogram deserialize
  • #2974 Fix index creation for hypertables with dropped columns
  • #2990 Fix segfault in job_config_check for cagg
  • #2987 Fix crash due to txns in emit_log_hook_callback
  • #3042 Commit end transaction for CREATE INDEX
  • #3053 Fix gapfill/hashagg planner interaction
  • #3059 Fix UPSERT on hypertables with columns with defaults

Thanks

  • @eloyekunle and @kitwestneat for reporting an issue with UPSERT
  • @jocrau for reporting an issue with index creation
  • @kev009 for fixing a compilation issue
  • @majozv and @pehlert for reporting an issue with time_bucket_gapfill

2.1.0 (2021-02-22)

This release adds major new features since the 2.0.2 release. We deem it moderate priority for upgrading.

This release adds the long-awaited support for PostgreSQL 13 to TimescaleDB. The minimum required PostgreSQL 13 version is 13.2 due to a security vulnerability affecting TimescaleDB functionality present in earlier versions of PostgreSQL 13.

This release also relaxes some restrictions for compressed hypertables; namely, TimescaleDB now supports adding columns to compressed hypertables and renaming columns of compressed hypertables.

Major Features

  • #2779 Add support for PostgreSQL 13

Minor features

  • #2736 Support adding columns to hypertables with compression enabled
  • #2909 Support renaming columns of hypertables with compression enabled

2.0.2 (2021-02-19)

This maintenance release contains bugfixes since the 2.0.1 release. We deem it high priority for upgrading.

The bug fixes in this release address issues with joins, the status of background jobs, and disabling compression. It also includes enhancements to continuous aggregates, including improved validation of policies and optimizations for faster refreshes when there are a lot of invalidations.

Minor features

  • #2926 Optimize cagg refresh for small invalidations

Bugfixes

  • #2850 Set status for backend in background jobs
  • #2883 Fix join qual propagation for nested joins
  • #2884 Add GUC to control join qual propagation
  • #2885 Fix compressed chunk check when disabling compression
  • #2908 Fix changing column type of clustered hypertables
  • #2942 Validate continuous aggregate policy

Thanks

  • @zeeshanshabbir93 for reporting an issue with joins
  • @Antiarchitect for reporting the issue with slow refreshes of continuous aggregates.
  • @diego-hermida for reporting the issue about being unable to disable compression
  • @mtin for reporting the issue about wrong job status

1.7.5 (2021-02-12)

This maintenance release contains bugfixes since the 1.7.4 release. Most of these fixes were backported from the 2.0.0 and 2.0.1 releases. We deem it high priority for upgrading for users on TimescaleDB 1.7.4 or previous versions.

In particular the fixes contained in this maintenance release address issues in continuous aggregates, compression, JOINs with hypertables, and when upgrading from previous versions.

Bugfixes

  • #2502 Replace check function when updating
  • #2558 Repair dimension slice table on update
  • #2619 Fix segfault in decompress_chunk for chunks with dropped columns
  • #2664 Fix support for complex aggregate expression
  • #2800 Lock dimension slices when creating new chunk
  • #2860 Fix projection in ChunkAppend nodes
  • #2865 Apply volatile function quals at decompresschunk
  • #2851 Fix nested loop joins that involve compressed chunks
  • #2868 Fix corruption in gapfill plan
  • #2883 Fix join qual propagation for nested joins
  • #2885 Fix compressed chunk check when disabling compression
  • #2920 Fix repair in update scripts

Thanks

  • @akamensky for reporting several issues including segfaults after version update
  • @alex88 for reporting an issue with joined hypertables
  • @dhodyn for reporting an issue when joining compressed chunks
  • @diego-hermida for reporting an issue with disabling compression
  • @Netskeh for reporting bug on time_bucket problem in continuous aggregates
  • @WarriorOfWire for reporting the bug with gapfill queries not being able to find pathkey item to sort
  • @zeeshanshabbir93 for reporting an issue with joins

2.0.1 (2021-01-28)

This maintenance release contains bugfixes since the 2.0.0 release. We deem it high priority for upgrading.

In particular the fixes contained in this maintenance release address issues in continuous aggregates, compression, JOINs with hypertables and when upgrading from previous versions.

Bugfixes

  • #2772 Always validate existing database and extension
  • #2780 Fix config enum entries for remote data fetcher
  • #2806 Add check for dropped chunk on update
  • #2828 Improve cagg watermark caching
  • #2838 Fix catalog repair in update script
  • #2842 Do not mark job as started when setting next_start field
  • #2845 Fix continuous aggregate privileges during upgrade
  • #2851 Fix nested loop joins that involve compressed chunks
  • #2860 Fix projection in ChunkAppend nodes
  • #2861 Remove compression stat update from update script
  • #2865 Apply volatile function quals at decompresschunk node
  • #2866 Avoid partitionwise planning of partialize_agg
  • #2868 Fix corruption in gapfill plan
  • #2874 Fix partitionwise agg crash due to uninitialized memory

Thanks

  • @alex88 for reporting an issue with joined hypertables
  • @brian-from-quantrocket for reporting an issue with extension update and dropped chunks
  • @dhodyn for reporting an issue when joining compressed chunks
  • @markatosi for reporting a segfault with partitionwise aggregates enabled
  • @PhilippJust for reporting an issue with add_job and initial_start
  • @sgorsh for reporting an issue when using pgAdmin on windows
  • @WarriorOfWire for reporting the bug with gapfill queries not being able to find pathkey item to sort

2.0.0 (2020-12-18)

With this release, we are officially moving TimescaleDB 2.0 to GA, concluding several release candidates.

TimescaleDB 2.0 adds the much-anticipated support for distributed hypertables (multi-node TimescaleDB), as well as new features and enhancements to core functionality to give users better clarity and more control and flexibility over their data.

Multi-node architecture: In particular, with TimescaleDB 2.0, users can now create distributed hypertables across multiple instances of TimescaleDB, configured so that one instance serves as an access node and multiple others as data nodes. All queries for a distributed hypertable are issued to the access node, but inserted data and queries are pushed down across data nodes for greater scale and performance.

Multi-node TimescaleDB can be self managed or, for easier operation, launched within Timescale's fully-managed cloud services.

This release also adds:

  • Support for user-defined actions, allowing users to define, customize, and schedule automated tasks, which can be run by the built-in jobs scheduling framework now exposed to users.
  • Significant changes to continuous aggregates, which now separate the view creation from the policy. Users can now refresh individual regions of the continuous aggregate materialized view, or schedule automated refreshing via policy.
  • Redesigned informational views, including new (and more general) views for information about hypertable's dimensions and chunks, policies and user-defined actions, as well as support for multi-node TimescaleDB.
  • Moving all formerly enterprise features into our Community Edition, and updating Timescale License, which now provides additional (more permissive) rights to users and developers.

Some of the changes above (e.g., continuous aggregates, updated informational views) do introduce breaking changes to APIs and are not backwards compatible. While the update scripts in TimescaleDB 2.0 will upgrade databases running TimescaleDB 1.x automatically, some of these API and feature changes may require changes to clients and/or upstream scripts that rely on the previous APIs. Before upgrading, we recommend reviewing upgrade documentation at docs.timescale.com for more details.

Major Features

TimescaleDB 2.0 moves the following major features to GA:

  • #1923 Add support for distributed hypertables
  • #2006 Add support for user-defined actions
  • #2125 #2221 Improve Continuous Aggregate API
  • #2084 #2089 #2098 #2417 Redesign informational views
  • #2435 Move enterprise features to community
  • #2437 Update Timescale License

Previous Release Candidates

  • #2702 Release Candidate 4 (December 2, 2020)
  • #2637 Release Candidate 3 (November 12, 2020)
  • #2554 Release Candidate 2 (October 20, 2020)
  • #2478 Release Candidate 1 (October 1, 2020)

Minor Features

Since the last release candidate 4, there are several minor improvements:

  • #2746 Optimize locking for create chunk API
  • #2705 Block tableoid access on distributed hypertable
  • #2730 Do not allow unique index on compressed hypertables
  • #2764 Bootstrap data nodes with versioned extension

Bugfixes

Since the last release candidate 4, there are several bugfixes:

  • #2719 Support disabling compression on distributed hypertables
  • #2742 Fix compression status in chunks view for distributed chunks
  • #2751 Fix crash and cancel when adding data node
  • #2763 Fix check constraint on hypertable metadata table

Thanks

Thanks to all contributors for the TimescaleDB 2.0 release:

  • @airton-neto for reporting a bug in executing some queries with UNION
  • @nshah14285 for reporting an issue with propagating privileges
  • @kalman5 for reporting an issue with renaming constraints
  • @LbaNeXte for reporting a bug in decompression for queries with subqueries
  • @semtexzv for reporting an issue with continuous aggregates on int-based hypertables
  • @mr-ns for reporting an issue with privileges for creating chunks
  • @cloud-rocket for reporting an issue with setting an owner on continuous aggregate
  • @jocrau for reporting a bug during creating an index with transaction per chunk
  • @fvannee for reporting an issue with custom time types
  • @ArtificialPB for reporting a bug in executing queries with conditional ordering on compressed hypertable
  • @dutchgecko for reporting an issue with continuous aggregate datatype handling
  • @lambdaq for suggesting to improve error message in continuous aggregate creation
  • @francesco11112 for reporting memory issue on COPY
  • @Netskeh for reporting bug on time_bucket problem in continuous aggregates
  • @mr-ns for reporting the issue with CTEs on distributed hypertables
  • @akamensky for reporting an issue with recursive cache invalidation
  • @ryanbooz for reporting slow queries with real-time aggregation on continuous aggregates
  • @cevian for reporting an issue with disabling compression on distributed hypertables

2.0.0-rc4 (2020-12-02)

This release candidate contains bugfixes since the previous release candidate, as well as additional minor features. It improves validation of configuration changes for background jobs, adds support for gapfill on distributed tables, contains improvements to the memory handling for large COPY, and contains improvements to compression for distributed hypertables.

Minor Features

  • #2689 Check configuration in alter_job and add_job
  • #2696 Support gapfill on distributed hypertable
  • #2468 Show more information in get_git_commit
  • #2678 Include user actions into job stats view
  • #2664 Fix support for complex aggregate expression
  • #2672 Add hypertable to continuous aggregates view
  • #2662 Save compression metadata settings on access node
  • #2707 Introduce additional db for data node bootstrapping

Bugfixes

  • #2688 Fix crash for concurrent drop and compress chunk
  • #2666 Fix timeout handling in async library
  • #2683 Fix crash in add_job when given NULL interval
  • #2698 Improve memory handling for remote COPY
  • #2555 Set metadata for chunks compressed before 2.0

Thanks

  • @francesco11112 for reporting memory issue on COPY
  • @Netskeh for reporting bug on time_bucket problem in continuous aggregates

2.0.0-rc3 (2020-11-12)

This release candidate contains bugfixes since the previous release candidate, as well as additional minor features including support for "user-mapping" authentication between access/data nodes and an experimental API for refreshing continuous aggregates on individual chunks.

Minor Features

  • #2627 Add optional user mappings support
  • #2635 Add API to refresh continuous aggregate on chunk

Bugfixes

  • #2560 Fix SCHEMA DROP CASCADE with continuous aggregates
  • #2593 Set explicitly all lock parameters in alter_job
  • #2604 Fix chunk creation on hypertables with foreign key constraints
  • #2610 Support analyze of internal compression table
  • #2612 Optimize internal cagg_watermark function
  • #2613 Refresh correct partial during refresh on drop
  • #2617 Fix validation of available extensions on data node
  • #2619 Fix segfault in decompress_chunk for chunks with dropped columns
  • #2620 Fix DROP CASCADE for continuous aggregate
  • #2625 Fix subquery errors when using AsyncAppend
  • #2626 Fix incorrect total_table_pages setting for compressed scan
  • #2628 Stop recursion in cache invalidation

Thanks

  • @mr-ns for reporting the issue with CTEs on distributed hypertables
  • @akamensky for reporting an issue with recursive cache invalidation
  • @ryanbooz for reporting slow queries with real-time aggregation on continuous aggregates

2.0.0-rc2 (2020-10-21)

This release candidate contains bugfixes since the previous release candidate.

Minor Features

  • #2520 Support non-transactional distibuted_exec

Bugfixes

  • #2307 Overflow handling for refresh policy with integer time
  • #2503 Remove error for correct bootstrap of data node
  • #2507 Fix validation logic when adding a new data node
  • #2510 Fix outer join qual propagation
  • #2514 Lock dimension slices when creating new chunk
  • #2515 Add if_attached argument to detach_data_node()
  • #2517 Fix member access within misaligned address in chunk_update_colstats
  • #2525 Fix index creation on hypertables with dropped columns
  • #2543 Pass correct status to lock_job
  • #2544 Assume custom time type range is same as bigint
  • #2563 Fix DecompressChunk path generation
  • #2564 Improve continuous aggregate datatype handling
  • #2568 Change use of ssl_dir GUC
  • #2571 Make errors and messages conform to style guide
  • #2577 Exclude compressed chunks from ANALYZE/VACUUM

2.0.0-rc1 (2020-10-06)

This release adds major new features and bugfixes since the 1.7.4 release. We deem it moderate priority for upgrading.

This release adds the long-awaited support for distributed hypertables to TimescaleDB. With 2.0, users can create distributed hypertables across multiple instances of TimescaleDB, configured so that one instance serves as an access node and multiple others as data nodes. All queries for a distributed hypertable are issued to the access node, but inserted data and queries are pushed down across data nodes for greater scale and performance.

This release also adds support for user-defined actions allowing users to define actions that are run by the TimescaleDB automation framework.

In addition to these major new features, the 2.0 branch introduces breaking changes to APIs and existing features, such as continuous aggregates. These changes are not backwards compatible and might require changes to clients and/or scripts that rely on the previous APIs. Please review our updated documentation and do proper testing to ensure compatibility with your existing applications.

The noticeable breaking changes in APIs are:

  • Redefined functions for policies
  • A continuous aggregate is now created with CREATE MATERIALIZED VIEW instead of CREATE VIEW and automated refreshing requires adding a policy via add_continuous_aggregate_policy
  • Redesign of informational views, including new (and more general) views for information about policies and user-defined actions

This release candidate is upgradable, so if you are on a previous release (e.g., 1.7.4) you can upgrade to the release candidate and later expect to be able to upgrade to the final 2.0 release. However, please carefully consider your compatibility requirements before upgrading.

Major Features

  • #1923 Add support for distributed hypertables
  • #2006 Add support for user-defined actions
  • #2435 Move enterprise features to community
  • #2437 Update Timescale License

Minor Features

  • #2011 Constify TIMESTAMPTZ OP INTERVAL in constraints
  • #2105 Support moving compressed chunks

Bugfixes

  • #1843 Improve handling of "dropped" chunks
  • #1886 Change ChunkAppend leader to use worker subplan
  • #2116 Propagate privileges from hypertables to chunks
  • #2263 Fix timestamp overflow in time_bucket optimization
  • #2270 Fix handling of non-reference counted TupleDescs in gapfill
  • #2325 Fix rename constraint/rename index
  • #2370 Fix detection of hypertables in subqueries
  • #2376 Fix caggs width expression handling on int based hypertables
  • #2416 Check insert privileges to create chunk
  • #2428 Allow owner change of continuous aggregate
  • #2436 Propagate grants in continuous aggregates

2.0.0-beta6 (2020-09-14)

For beta releases, upgrading from an earlier version of the extension (including previous beta releases) is not supported.

This beta release includes breaking changes to APIs. The most notable changes since the beta-5 release are the following, which will be reflected in forthcoming documentation for the 2.0 release.

  • Existing information views were reorganized. Retrieving information about sizes and statistics was moved to functions. New views were added to expose information, which was previously available only internally.
  • New ability to create custom jobs was added.
  • Continuous aggregate API was redesigned. Its policy creation is separated from the view creation.
  • compress_chunk_policy and drop_chunk_policy were renamed to compression_policy and retention_policy.

1.7.4 (2020-09-07)

This maintenance release contains bugfixes since the 1.7.3 release. We deem it high priority for upgrading if TimescaleDB is deployed with replicas (synchronous or asynchronous).

In particular the fixes contained in this maintenance release address an issue with running queries on compressed hypertables on standby nodes.

Bugfixes

  • #2340 Remove tuple lock on select path

1.7.3 (2020-07-27)

This maintenance release contains bugfixes since the 1.7.2 release. We deem it high priority for upgrading.

In particular the fixes contained in this maintenance release address issues in compression, drop_chunks and the background worker scheduler.

Bugfixes

  • #2059 Improve infering start and stop arguments from gapfill query
  • #2067 Support moving compressed chunks
  • #2068 Apply SET TABLESPACE for compressed chunks
  • #2090 Fix index creation with IF NOT EXISTS for existing indexes
  • #2092 Fix delete on tables involving hypertables with compression
  • #2164 Fix telemetry installed_time format
  • #2184 Fix background worker scheduler memory consumption
  • #2222 Fix negative bitmapset member not allowed in decompression
  • #2255 Propagate privileges from hypertables to chunks
  • #2256 Fix segfault in chunk_append with space partitioning
  • #2259 Fix recursion in cache processing
  • #2261 Lock dimension slice tuple when scanning

Thanks

  • @akamensky for reporting an issue with drop_chunks and ChunkAppend with space partitioning
  • @dewetburger430 for reporting an issue with setting tablespace for compressed chunks
  • @fvannee for reporting an issue with cache invalidation
  • @nexces for reporting an issue with ChunkAppend on space-partitioned hypertables
  • @PichetGoulu for reporting an issue with index creation and IF NOT EXISTS
  • @prathamesh-sonpatki for contributing a typo fix
  • @sezaru for reporting an issue with background worker scheduler memory consumption

1.7.2 (2020-07-07)

This maintenance release contains bugfixes since the 1.7.1 release. We deem it medium priority for upgrading.

In particular the fixes contained in this maintenance release address bugs in continuous aggregates, drop_chunks and compression.

Features

  • #1877 Add support for fast pruning of inlined functions

Bugfixes

  • #1908 Fix drop_chunks with unique constraints when cascade_to_materializations is false
  • #1915 Check for database in extension_current_state
  • #1918 Unify chunk index creation
  • #1932 Change compression locking order
  • #1938 Fix gapfill locf treat_null_as_missing
  • #1982 Check for disabled telemetry earlier
  • #1984 Fix compression bit array left shift count
  • #1997 Add checks for read-only transactions
  • #2002 Reset restoring gucs rather than explicitly setting 'off'
  • #2028 Fix locking in drop_chunks
  • #2031 Enable compression for tables with compound foreign key
  • #2039 Fix segfault in create_trigger_handler
  • #2043 Fix segfault in cagg_update_view_definition
  • #2046 Use index tablespace during chunk creation
  • #2047 Better handling of chunk insert state destruction
  • #2049 Fix handling of PlaceHolderVar in DecompressChunk
  • #2051 Fix tuple concurrently deleted error with multiple continuous aggregates

Thanks

  • @akamensky for reporting an issue with telemetry and an issue with drop_chunks
  • @darko408 for reporting an issue with decompression
  • @dmitri191 for reporting an issue with failing background workers
  • @eduardotsj for reporting an issue with indexes not inheriting tablespace settings
  • @fourseventy for reporting an issue with multiple continuous aggregrates
  • @fvannee for contributing optimizations for pruning inlined functions
  • @jflambert for reporting an issue with failing telemetry jobs
  • @nbouscal for reporting an issue with compression jobs locking referenced tables
  • @nicolai6120 for reporting an issue with locf and treat_null_as_missing
  • @nomanor for reporting an issue with expression index with table references
  • @olernov for contributing a fix for compressing tables with compound foreign keys
  • @werjo for reporting an issue with drop_chunks and unique constraints

2.0.0-beta5 (2020-06-08)

This release adds new functionality on distributed hypertables, including (but not limited to) basic LIMIT pushdown, manual chunk compression, table access methods storage options, SERIAL columns, and altering of the replication factor. This release only supports PG11 and PG12. Thus, PG9.6 and PG10 are no longer supported.

Note that the 2.0 major release will introduce breaking changes to user functions and APIs. In particular, this beta removes the cascade parameter from drop_chunks and changes the names of certain GUC parameters. Expect additional breaking changes to be introduced up until the 2.0 release.

For beta releases, upgrading from an earlier version of the extension (including previous beta releases) is not supported.

Features

  • #1877 Add support for fast pruning of inlined functions
  • #1922 Cleanup GUC names
  • #1923 Add repartition option on detach/delete_data_node
  • #1923 Allow ALTER TABLE SET on distributed hypertable
  • #1923 Allow SERIAL columns for distributed hypertables
  • #1923 Basic LIMIT push down support
  • #1923 Implement altering replication factor
  • #1923 Support compression on distributed hypertables
  • #1923 Support storage options for distributed hypertables
  • #1941 Change default prefix for distributed tables
  • #1943 Support table access methods for distributed hypertables
  • #1952 Remove cascade option from drop_chunks
  • #1955 Remove support for PG9.6 and PG10

Bugfixes

  • #1915 Check for database in extension_current_state
  • #1918 Unify chunk index creation
  • #1923 Fix insert batch size calculation for prepared statements
  • #1923 Fix port conversion issue in add_data_node
  • #1932 Change compression locking order
  • #1938 Fix gapfill locf treat_null_as_missing

Thanks

  • @dmitri191 for reporting an issue with failing background workers
  • @fvannee for optimizing pruning of inlined functions
  • @nbouscal for reporting an issue with compression jobs locking referenced tables
  • @nicolai6120 for reporting an issue with locf and treat_null_as_missing
  • @nomanor for reporting an issue with expression index with table references

1.7.1 (2020-05-18)

This maintenance release contains bugfixes since the 1.7.0 release. We deem it medium priority for upgrading and high priority for users with multiple continuous aggregates.

In particular the fixes contained in this maintenance release address bugs in continuous aggregates with real-time aggregation and PostgreSQL 12 support.

Bugfixes

  • #1834 Define strerror() for Windows
  • #1846 Fix segfault on COPY to hypertable
  • #1850 Fix scheduler failure due to bad next_start_time for jobs
  • #1851 Fix hypertable expansion for UNION ALL
  • #1854 Fix reorder policy job to skip compressed chunks
  • #1861 Fix qual pushdown for compressed hypertables where quals have casts
  • #1864 Fix issue with subplan selection in parallel ChunkAppend
  • #1868 Add support for WHERE, HAVING clauses with real time aggregates
  • #1869 Fix real time aggregate support for multiple continuous aggregates
  • #1871 Don't rely on timescaledb.restoring for upgrade
  • #1875 Fix hypertable detection in subqueries
  • #1884 Fix crash on SELECT WHERE NOT with empty table

Thanks

  • @airton-neto for reporting an issue with queries over UNIONs of hypertables
  • @dhodyn for reporting an issue with UNION ALL queries
  • @frostwind for reporting an issue with casts in where clauses on compressed hypertables
  • @fvannee for reporting an issue with hypertable detection in inlined SQL functions and an issue with COPY
  • @hgiasac for reporting missing where clause with real time aggregates
  • @louisth for reporting an issue with real-time aggregation and multiple continuous aggregates
  • @michael-sayapin for reporting an issue with INSERTs and WHERE NOT EXISTS
  • @olernov for reporting and fixing an issue with compressed chunks in the reorder policy
  • @pehlert for reporting an issue with pg_upgrade

1.7.0 (2020-04-16)

This release adds major new features and bugfixes since the 1.6.1 release. We deem it moderate priority for upgrading.

This release adds the long-awaited support for PostgreSQL 12 to TimescaleDB.

This release also adds a new default behavior when querying continuous aggregates that we call real-time aggregation. A query on a continuous aggregate will now combine materialized data with recent data that has yet to be materialized.

Note that only newly created continuous aggregates will have this real-time query behavior, although it can be enabled on existing continuous aggregates with a configuration setting as follows:

ALTER VIEW continuous_view_name SET (timescaledb.materialized_only=false);

This release also moves several data management lifecycle features to the Community version of TimescaleDB (from Enterprise), including data reordering and data retention policies.

Major Features

  • #1456 Add support for PostgreSQL 12
  • #1685 Add support for real-time aggregation on continuous aggregates

Bugfixes

  • #1665 Add ignore_invalidation_older_than to timescaledb_information.continuous_aggregates view
  • #1750 Handle undefined ignore_invalidation_older_than
  • #1757 Restrict watermark to max for continuous aggregates
  • #1769 Add rescan function to CompressChunkDml CustomScan node
  • #1785 Fix last_run_success value in continuous_aggregate_stats view
  • #1801 Include parallel leader in plan execution
  • #1808 Fix ts_hypertable_get_all for compressed tables
  • #1828 Ignore dropped chunks in compressed_chunk_stats

Licensing changes

  • Reorder and policies around reorder and drop chunks are now accessible to community users, not just enterprise
  • Gapfill functionality no longer warns about expired license

Thanks

  • @t0k4rt for reporting an issue with parallel chunk append plans
  • @alxndrdude for reporting an issue when trying to insert into compressed chunks
  • @Olernov for reporting and fixing an issue with show_chunks and drop_chunks for compressed hypertables
  • @mjb512 for reporting an issue with INSERTs in CTEs in cached plans
  • @dmarsh19 for reporting and fixing an issue with dropped chunks in compressed_chunk_stats

1.6.1 (2020-03-18)

This maintenance release contains bugfixes since the 1.6.0 release. We deem it medium priority for upgrading.

In particular the fixes contained in this maintenance release address bugs in continuous aggregates, time_bucket_gapfill, partial index handling and drop_chunks.

For this release only, you will need to restart the database after upgrade before restoring a backup.

Minor Features

  • #1666 Support drop_chunks API for continuous aggregates
  • #1711 Change log level for continuous aggregate materialization messages

Bugfixes

  • #1630 Print notice for COPY TO on hypertable
  • #1648 Drop chunks from materialized hypertable
  • #1668 Cannot add dimension if hypertable has empty chunks
  • #1673 Fix crash when interrupting create_hypertable
  • #1674 Fix time_bucket_gapfill's interaction with GROUP BY
  • #1686 Fix order by queries on compressed hypertables that have char segment by column
  • #1687 Fix issue with disabling compression when foreign keys are present
  • #1688 Handle many BGW jobs better
  • #1698 Add logic to ignore dropped chunks in hypertable_relation_size
  • #1704 Fix bad plan for continuous aggregate materialization
  • #1709 Prevent starting background workers with NOLOGIN
  • #1713 Fix miscellaneous background worker issues
  • #1715 Fix issue with overly aggressive chunk exclusion in outer joins
  • #1719 Fix restoring/scheduler entrypoint to avoid BGW death
  • #1720 Add scheduler cache invalidations
  • #1727 Fix compressing INTERVAL columns
  • #1728 Handle Sort nodes in ConstraintAwareAppend
  • #1730 Fix partial index handling on hypertables
  • #1739 Use release OpenSSL DLLs for debug builds on Windows
  • #1740 Fix invalidation entries from multiple caggs on same hypertable
  • #1743 Fix continuous aggregate materialization timezone handling
  • #1748 Fix remove_drop_chunks_policy for continuous aggregates
  • #1756 Fix handling of dropped chunks in compression background worker

Thanks

  • @RJPhillips01 for reporting an issue with drop chunks.
  • @b4eEx for reporting an issue with disabling compression.
  • @darko408 for reporting an issue with order by on compressed hypertables
  • @mrechte for reporting an issue with compressing INTERVAL columns
  • @tstaehli for reporting an issue with ConstraintAwareAppend
  • @chadshowalter for reporting an issue with partial index on hypertables
  • @geoffreybennett for reporting an issue with create_hypertable when interrupting operations
  • @alxndrdude for reporting an issue with background workers during restore
  • @zcavaliero for reporting and fixing an issue with dropped columns in hypertable_relation_size
  • @ismailakpolat for reporting an issue with cagg materialization on hypertables with TIMESTAMP column

1.6.0 (2020-01-14)

This release adds major new features and bugfixes since the 1.5.1 release. We deem it moderate priority for upgrading.

The major new feature in this release allows users to keep the aggregated data in a continuous aggregate while dropping the raw data with drop_chunks. This allows users to save storage by keeping only the aggregates.

The semantics of the refresh_lag parameter for continuous aggregates has been changed to be relative to the current timestamp instead of the maximum value in the table. This change requires that an integer_now func be set on hypertables with integer-based time columns to use continuous aggregates on this table.

We added a timescaledb.ignore_invalidation_older_than parameter for continuous aggregates. This parameter accept a time-interval (e.g. 1 month). If set, it limits the amount of time for which to process invalidation. Thus, if timescaledb.ignore_invalidation_older_than = '1 month', then any modifications for data older than 1 month from the current timestamp at modification time may not cause continuous aggregate to be updated. This limits the amount of work that a backfill can trigger. By default, all invalidations are processed.

Major Features

  • #1589 Allow drop_chunks while keeping continuous aggregates

Minor Features

  • #1568 Add ignore_invalidation_older_than option to continuous aggs
  • #1575 Reorder group-by clause for continuous aggregates
  • #1592 Improve continuous agg user messages

Bugfixes

  • #1565 Fix partial select query for continuous aggregate
  • #1591 Fix locf treat_null_as_missing option
  • #1594 Fix error in compression constraint check
  • #1603 Add join info to compressed chunk
  • #1606 Fix constify params during runtime exclusion
  • #1607 Delete compression policy when drop hypertable
  • #1608 Add jobs to timescaledb_information.policy_stats
  • #1609 Fix bug with parent table in decompression
  • #1624 Fix drop_chunks for ApacheOnly
  • #1632 Check for NULL before dereferencing variable

Thanks

  • @optijon for reporting an issue with locf treat_null_as_missing option
  • @acarrera42 for reporting an issue with constify params during runtime exclusion
  • @ChristopherZellermann for reporting an issue with the compression constraint check
  • @SimonDelamare for reporting an issue with joining hypertables with compression

2.0.0-beta4 (2019-12-19)

For beta releases, upgrading from an earlier version of the extension (including previous beta releases) is not supported.

This release includes user experience improvements for managing data nodes, more efficient statistics collection for distributed hypertables, and miscellaneous fixes and improvements.

1.5.1 (2019-11-12)

This maintenance release contains bugfixes since the 1.5.0 release. We deem it low priority for upgrading.

In particular the fixes contained in this maintenance release address potential segfaults and no other security vulnerabilities. The bugfixes are related to bloom indexes and updates from previous versions.

Bugfixes

  • #1523 Fix bad SQL updates from previous updates
  • #1526 Fix hypertable model
  • #1530 Set active snapshots in multi-xact index create

Thanks

  • @84660320 for reporting an issue with bloom indexes
  • @gumshoes @perhamm @jermudgeon @gmisagm for reporting the issue with updates

2.0.0-beta3 (2019-11-05)

For beta releases, upgrading from an earlier version of the extension (including previous beta releases) is not supported.

This release improves performance for queries executed on distributed hypertables, fixes minor issues and blocks a number of SQL API functions, which are not supported on distributed hypertables. It also adds information about distributed databases in the telemetry.

2.0.0-beta2 (2019-10-22)

This release introduces distributed hypertables, a major new feature that allows hypertables to scale out across multiple nodes for increased performance and fault tolerance. Please review the documentation to learn how to configure and use distributed hypertables and what current limitations are.

1.5.0 (2019-10-31)

This release adds major new features and bugfixes since the 1.4.2 release. We deem it moderate priority for upgrading.

This release adds compression as a major new feature. Multiple type-specific compression options are available in this release (including DeltaDelta with run-length-encoding for integers and timestamps; Gorilla compression for floats; dictionary-based compression for any data type, but specifically for low-cardinality datasets; and other LZ-based techniques). Individual columns can be compressed with type-specific compression algorithms as Postgres' native row-based format are rolled up into columnar-like arrays on a per chunk basis. The query planner then handles transparent decompression for compressed chunks at execution time.

This release also adds support for basic data tiering by supporting the migration of chunks between tablespaces, as well as support for parallel query coordination to the ChunkAppend node. Previously ChunkAppend would rely on parallel coordination in the underlying scans for parallel plans.

More information can be found on our blog or in this tutorial

For this release only, you will need to restart the database before running ALTER EXTENSION

Major Features

  • #1393 Moving chunks between different tablespaces
  • #1433 Make ChunkAppend parallel aware
  • #1434 Introducing native compression, multiple compression algorithms, and hybrid row/columnar projections

Minor Features

  • #1471 Allow setting reloptions on chunks
  • #1479 Add next_start option to alter_job_schedule
  • #1481 Add last_successful_finish to bgw_job_stats

Bugfixes

  • #1444 Prevent LIMIT pushdown in JOINs
  • #1447 Fix runtime exclusion memory leak
  • #1464 Fix ordered append with expressions in ORDER BY clause with space partitioning
  • #1476 Fix logic for BGW rescheduling
  • #1477 Fix gapfill treat_null_as_missing
  • #1493 Prevent recursion in invalidation processing
  • #1498 Fix overflow in gapfill's interpolate
  • #1499 Fix error for exported_uuid in pg_restore
  • #1503 Fix bug with histogram function in parallel

Thanks

  • @dhyun-obsec for reporting an issue with pg_restore
  • @rhaymo for reporting an issue with interpolate
  • @optijon for reporting an issue with locf treat_null_as_missing
  • @fvannee for reporting an issue with runtime exclusion
  • @Lectem for reporting an issue with histograms
  • @rogerdwan for reporting an issue with BGW rescheduling
  • @od0 for reporting an issue with alter_job_schedule

1.4.2 (2019-09-11)

This maintenance release contains bugfixes since the 1.4.1 release. We deem it medium priority for upgrading.

In particular the fixes contained in this maintenance release address 2 potential segfaults and no other security vulnerabilities. The bugfixes are related to background workers, OUTER JOINs, ordered append on space partitioned hypertables and expression indexes.

Bugfixes

  • #1327 Fix chunk exclusion with ordered append
  • #1390 Fix deletes of background workers while a job is running
  • #1392 Fix cagg_agg_validate expression handling (segfault)
  • #1408 Fix ChunkAppend space partitioning support for ordered append
  • #1420 Fix OUTER JOIN qual propagation
  • #1422 Fix background worker error handling (segfault)
  • #1424 Fix ChunkAppend LIMIT pushdown
  • #1429 Fix expression index creation

Thanks

  • @shahidhk for reporting an issue with OUTER JOINs
  • @cossbow and @xxGL1TCHxx for reporting reporting issues with ChunkAppend and space partitioning
  • @est for reporting an issue with CASE expressions in continuous aggregates
  • @devlucasc for reporting the issue with deleting a background worker while a job is running
  • @ryan-shaw for reporting an issue with expression indexes on hypertables with dropped columns

1.4.1 (2019-08-01)

This maintenance release contains bugfixes since the 1.4.0 release. We deem it medium priority for upgrading.

In particular the fixes contained in this maintenance release address 2 potential segfaults and no other security vulnerabilities. The bugfixes are related to queries with prepared statements, PL/pgSQL functions and interoperability with other extensions. More details below.

Bugfixes

  • #1362 Fix ConstraintAwareAppend subquery exclusion
  • #1363 Mark drop_chunks as VOLATILE and not PARALLEL SAFE
  • #1369 Fix ChunkAppend with prepared statements
  • #1373 Only allow PARAM_EXTERN as time_bucket_gapfill arguments
  • #1380 Handle Result nodes gracefully in ChunkAppend

Thanks

  • @overhacked for reporting an issue with drop_chunks and parallel queries
  • @fvannee for reporting an issue with ConstraintAwareAppend and subqueries
  • @rrb3942 for reporting a segfault with ChunkAppend and prepared statements
  • @mchesser for reporting a segfault with time_bucket_gapfill and subqueries
  • @lolizeppelin for reporting and helping debug an issue with ChunkAppend and Result nodes

1.4.0 (2019-07-18)

This release contains major new functionality for continuous aggregates and adds performance improvements for analytical queries.

In version 1.3.0 we added support for continuous aggregates which was initially limited to one continuous aggregate per hypertable. With this release, we remove this restriction and allow multiple continuous aggregates per hypertable.

This release adds a new custom node ChunkAppend that can perform execution time constraint exclusion and is also used for ordered append. Ordered append no longer requires a LIMIT clause and now supports space partitioning and ordering by time_bucket.

Major features

  • #1270 Use ChunkAppend to replace Append nodes
  • #1257 Support for multiple continuous aggregates

Minor features

  • #1181 Remove LIMIT clause restriction from ordered append
  • #1273 Propagate quals to joined hypertables
  • #1317 Support time bucket functions in Ordered Append
  • #1331 Add warning message for REFRESH MATERIALIZED VIEW
  • #1332 Add job statistics columns to timescaledb_information.continuous_aggregate_stats view
  • #1326 Add architecture and bit size to telemetry

Bugfixes

  • #1288 Do not remove Result nodes with one-time filter
  • #1300 Fix telemetry report return value
  • #1339 Fix continuous agg catalog table insert failure
  • #1344 Update continuous agg bgw job start time

Thanks

  • @ik9999 for reporting a bug with continuous aggregates and negative refresh lag

1.3.2 (2019-06-24)

This maintenance release contains bug and security fixes since the 1.3.1 release. We deem it moderate-to-high priority for upgrading.

This release fixes some security vulnerabilities, specifically related to being able to elevate role-based permissions by database users that already have access to the database. We strongly recommend that users who rely on role-based permissions upgrade to this release as soon as possible.

Security Fixes

  • #1311 Fix role-based permission checking logic

Bugfixes

  • #1315 Fix potentially lost invalidations in continuous aggs
  • #1303 Fix handling of types with custom time partitioning
  • #1299 Arm32: Fix Datum to int cast issue
  • #1297 Arm32: Fix crashes due to long handling
  • #1019 Add ARM32 tests on travis

Thanks

  • @hedayat for reporting the error with handling of types with custom time partitioning

1.3.1 (2019-06-10)

This maintenance release contains bugfixes since the 1.3.0 release. We deem it low-to-moderate priority for upgrading.

In particular, the fixes contained in this maintenance release do not address any security vulnerabilities, while the only one affecting system stability is related to TimescaleDB running on PostgreSQL 11. More details below.

Bugfixes

  • #1220 Fix detecting JOINs for continuous aggs
  • #1221 Fix segfault in VACUUM on PG11
  • #1228 ARM32 Fix: Pass int64 using Int64GetDatum when a Datum is required
  • #1232 Allow Param as time_bucket_gapfill arguments
  • #1236 Stop preventing REFRESH in transaction blocks
  • #1283 Fix constraint exclusion for OUTER JOIN

Thanks

  • @od0 for reporting an error with continuous aggs and JOINs
  • @rickbatka for reporting an error when using time_bucket_gapfill in functions
  • @OneMoreSec for reporting the bug with VACUUM
  • @dvdrozdov @od0 @t0k4rt for reporting the issue with REFRESH in transaction blocks
  • @mhagander and @devrimgunduz for suggesting adding a CMAKE flag to control the default telemetry level

1.3.0 (2019-05-06)

This release contains major new functionality that we call continuous aggregates.

Aggregate queries which touch large swathes of time-series data can take a long time to compute because the system needs to scan large amounts of data on every query execution. Our continuous aggregates continuously calculate the results of a query in the background and materialize the results. Queries to the continuous aggregate view are then significantly faster as they do not need to touch the raw data in the hypertable, instead using the pre-computed aggregates in the view.

Continuous aggregates are somewhat similar to PostgreSQL materialized views, but unlike a materialized view, continuous aggregates do not need to be refreshed manually; the view will be refreshed automatically in the background as new data is added, or old data is modified. Additionally, it does not need to re-calculate all of the data on every refresh. Only new and/or invalidated data will be calculated. Since this re-aggregation is automatic, it doesn’t add any maintenance burden to your database.

Our continuous aggregate approach supports high-ingest rates by avoiding the high-write amplification associated with trigger-based approaches. Instead, we use invalidation techniques to track what data has changed, and then correct the materialized aggregate the next time that the automated process executes.

More information can be found on our docs overview or in this tutorial.

Major Features

  • #1184 Add continuous aggregate functionality

Minor Features

  • #1005 Enable creating indexes with one transaction per chunk
  • #1007 Remove hypertable parent from query plans
  • #1038 Infer time_bucket_gapfill arguments from WHERE clause
  • #1062 Make constraint aware append parallel safe
  • #1067 Add treat_null_as_missing option to locf
  • #1112 Add support for window functions to gapfill
  • #1130 Add support for cross datatype chunk exclusion for time types
  • #1134 Add support for partitionwise aggregation
  • #1153 Add time_bucket support to chunk exclusion
  • #1170 Add functions for turning restoring on/off and setting license key
  • #1177 Add transformed time_bucket comparison to quals
  • #1182 Enable optimizing SELECTs within INSERTs
  • #1201 Add telemetry for policies: drop_chunk & reorder

Bugfixes

  • #1010 Add session locks to CLUSTER
  • #1115 Fix ordered append optimization for join queries
  • #1123 Fix gapfill with prepared statements
  • #1125 Fix column handling for columns derived from GROUP BY columns
  • #1132 Adjust ordered append path cost
  • #1155 Limit initial max_open_chunks_per_insert to PG_INT16_MAX
  • #1167 Fix postgres.conf ApacheOnly license
  • #1183 Handle NULL in a check constraint name
  • #1195 Fix cascade in scheduled drop chunks
  • #1196 Fix UPSERT with prepared statements

Thanks

  • @spickman for reporting a segfault with ordered append and JOINs
  • @comicfans for reporting a performance regression with ordered append
  • @Specter-Y for reporting a segfault with UPSERT and prepared statements
  • @erthalion submitting a bugfix for a segfault with validating check constraints

1.2.2 (2019-03-14)

This release contains bugfixes.

Bugfixes

  • #1097 Adjust ordered append plan cost
  • #1079 Stop background worker on ALTER DATABASE SET TABLESPACE and CREATE DATABASE WITH TEMPLATE
  • #1088 Fix ON CONFLICT when using prepared statements and functions
  • #1089 Fix compatibility with extensions that define planner_hook
  • #1057 Fix chunk exclusion constraint type inference
  • #1060 Fix sort_transform optimization

Thanks

  • @esatterwhite for reporting a bug when using timescaledb with zombodb
  • @eeeebbbbrrrr for fixing compatibility with extensions that also define planner_hook
  • @naquad for reporting a segfault when using ON conflict in stored procedures
  • @aaronkaplan for reporting an issue with ALTER DATABASE SET TABLESPACE
  • @quetz for reporting an issue with CREATE DATABASE WITH TEMPLATE
  • @nbouscal for reporting an issue with ordered append resulting in bad plans

1.2.1 (2019-02-11)

This release contains bugfixes.

Notable commits

  • [2f6b58a] Fix tlist on hypertable inserts inside CTEs
  • [7973b4a] Stop background worker on rename database
  • [32cc645] Fix loading the tsl license in parallel workers

Thanks

  • @jamessewell for reporting and helping debug a segfault in last() [034a0b0]
  • @piscopoc for reporting a segfault in time_bucket_gapfill [e6c68f8]

1.2.0 (2019-01-29)

This is our first release to include Timescale-Licensed features, in addition to new Apache-2 capabilities.

We are excited to be introducing new time-series analytical functions, advanced data lifecycle management capabilities, and improved performance.

  • Time-series analytical functions: Users can now use our time_bucket_gapfill function, to write complex gapfilling, last object carried forward, and interpolation queries.
  • Advanced data lifecycle management: We are introducing scheduled policies, which use our background worker framework to manage time-series data. In this release, we support scheduled drop_chunks and reorder.
  • Improved performance: We added support for ordered appends, which optimize a large range of queries - particularly those that are ordered by time and contain a LIMIT clause. Please note that ordered appends do not support ordering by time_bucket at this time.
  • Postgres 11 Support: We added beta support for PG11 in 1.1.0. We're happy to announce that our PG11 support is now out of beta, and fully supported.

This release adds code under a new license, LICENSE_TIMESCALE. This code can be found in tsl.

For this release only, you will need to restart the database before running ALTER EXTENSION

Notable commits

  • [a531733] switch cis state when we switch chunks
  • [5c6b619] Make a copy of the ri_onConflict object in PG11
  • [61e524e] Make slot for upserts be update for every chunk switch
  • [8a7c127] Fix for ExecSlotDescriptor during upserts
  • [fa61613] Change time_bucket_gapfill argument names
  • [01be394] Fix bgw_launcher restart when failing during launcher setup
  • [7b3929e] Add ordered append optimization
  • [a69f84c] Fix signal processing in background workers
  • [47b5b7d] Log which chunks are dropped by background workers
  • [4e1e15f] Add reorder command
  • [2e4bb5d] Recluster and drop chunks scheduling code
  • [ef43e52] Add alter_policy_schedule API function
  • [5ba740e] Add gapfill query support
  • [be7c74c] Add logic for automatic DB maintenance functions
  • [4ff6ac7] Initial Timescale-Licensed-Module and License-Key Implementation
  • [fc42539] Add new top-level licensing information
  • [31e9c5b] Fix time column handling in get_create_command
  • [1b8ceca] Avoid loading twice in parallel workers and load only from $libdir
  • [76d7875] Don't throw errors when extension is loaded but not installed yet
  • [eecd845] Add Timescale License (TSL)
  • [4b42b30] Free ChunkInsertStates when the es_per_tuple_exprcontext is freed

Thanks

  • @fordred for reporting our docker-run.sh script was out of date
  • @JpWebster for reporting a deadlock between reads an drop_chunks
  • @chickenburgers for reporting an issue with our CMake
  • Dimtrj and Asbjørn D., on slack, for creating a reproducible testcase for an UPSERT bug
  • @skebanga for reporting a loader bug

1.1.1 (2018-12-20)

This release contains bugfixes.

High-level changes

  • Fix issue when upgrading with pg_upgrade
  • Fix a segfault that sometimes appeared in long COPYs
  • Other bug and stability fixes

Notable commits

  • [f99b540] Avoid loading twice in parallel workers and load only from $libdir
  • [e310f7d] Don't throw errors when extension is loaded but not installed yet
  • [8498416] Free ChunkInsertStates when the es_per_tuple_exprcontext is freed
  • [937eefe] Set C standard to C11

Thanks

  • @costigator for reporting the pg_upgrade bug
  • @FireAndIce68 for reporting the parallel workers issue
  • @damirda for reporting the copy bug

1.1.0 (2018-12-13)

Our 1.1 release introduces beta support for PG 11, as well as several performance optimizations aimed at improving chunk exclusion for read queries. We are also packaging our new timescale-tune tool (currently in beta) with our Debian and Linux releases. If you encounter any issues with our beta features, please file a Github issue.

Potential breaking changes

  • In addition to optimizing first() / last() to utilize indices for non-group-by queries, we adjusted its sorting behavior to match that of PostgreSQL’s max() and min() functions. Previously, if the column being sorted had NULL values, a NULL would be returned. First() and last() now instead ignore NULL values.

Notable Commits

  • [71f3a0c] Fix Datum conversion issues
  • [5aa1eda] Refactor compatibility functions and code to support PG11
  • [e4a4f8e] Add support for functions on open (time) dimensions
  • [ed5067c] Fix interval_from_now_to_internal timestamptz handling
  • [019971c] Optimize FIRST/LAST aggregate functions
  • [83014ee] Implement drop_chunks in C
  • [9a34028] Implement show_chunks in C and have drop_chunks use it
  • [d461959] Add view to show hypertable information
  • [35dee48] Remove version-checking from client-side
  • [5b6a5f4] Change size utility and job functions to STRICT
  • [7e55d91] Add checks for NULL arguments to DDL functions
  • [c1db608] Fix upsert TLE translation when mapping variable numbers
  • [55a378e] Check extension exists for DROP OWNED and DROP EXTENSION
  • [0c8c085] Exclude unneeded chunks for IN/ANY/ALL operators
  • [f27c0a3] Move int time_bucket functions with offset to C

Thanks

  • @did-g for some memory improvements

1.0.1 (2018-12-05)

This commit contains bugfixes and optimizations for 1.0.0

Notable commits

  • [6553aa4] Make a number of size utility functions to STRICT
  • [bb1d748] Add checks for NULL arguments to set_adaptive_chunking, set_number_partitions, set_chunk_time_interval, add_dimension, and create_hypertable
  • [a534ed4] Fix upsert TLE translation when mapping variable numbers
  • [aecd55b] Check extension exists for DROP OWNED and DROP EXTENSION

1.0.0 (2018-10-30)

This is our 1.0 release!

For notable commits between 0.12.0/0.12.1 and this final 1.0 release, please see previous entries for the release candidates (rc1, rc2, and rc3).

Thanks To all the external contributors who helped us debug the release candidates, as well as anyone who has contributed bug reports, PRs, or feedback on Slack, GitHub, and other channels. All input has been valuable and helped us create the product we have today!

Potential breaking changes

  • To better align with the ISO standard so that time bucketing starts each week by default on a Monday (rather than Saturday), the time_bucket epoch/origin has been changed from January 1, 2000 to January 3, 2000. The function now includes an origin parameter that can be used to adjust this.
  • Error codes are now prefixed with TS instead of the prior IO prefix. If you were checking for these error codes by name, please update your code.

1.0.0-rc3 (2018-10-18)

This release is our third 1.0 release candidate. We expect to only merge bug fixes between now and our final 1.0 release. This is a big milestone for us and signifies our maturity and enterprise readiness.

PLEASE NOTE that release candidate (rc) builds will only be made available via GitHub and Docker, and not on other release channels. Please help us test these release candidates out if you can!

Potential breaking change: Starting with rc2, we updated our error codes to be prefixed with TS instead of the old IO prefix. If you were checking for these error codes by name, please update your checks.

Notable commits

  • [f7ba13d] Handle and test tablespace changes to and from the default tablespace
  • [9ccda0d] Start stopped workers on restart message
  • [3e3bb0c] Add bool created to create_hypertable and add_dimension return value
  • [53ff656] Add state machine and polling to launcher
  • [d9b2dfe] Change return value of add_dimension to TABLE
  • [19299cf] Make all time_bucket function STRICT
  • [297d885] Add a version of time_bucket that takes an origin
  • [e74be30] Move time_bucket epoch to a Monday
  • [46564c1] Handle ALTER SCHEMA RENAME properly
  • [a83e283] Change return value of create_hypertable to TABLE
  • [aea7c7e] Add GRANTs to update script for pg_dump to work
  • [119963a] Replace hardcoded bash path in shell scripts

Thanks

  • @jesperpedersen for several PRs that help improve documentation and some rough edges
  • @did-g for improvements to our build process
  • @skebanga for reporting an issue with ALTER SCHEMA RENAME
  • @p-alik for suggesting a way to improve our bash scripts' portability
  • @mx781 and @HeikoOnnebrink for reporting an issues with permission GRANTs and ownership when using pg_dump

1.0.0-rc2 (2018-09-27)

This release is our second 1.0 release candidate. We expect to only merge bug fixes between now and our final 1.0 release. This is a big milestone for us and signifies our maturity and enterprise readiness.

PLEASE NOTE that release candidate (rc) builds will only be made available via GitHub and Docker, and not on other release channels. Please help us test these release candidates out if you can!

Potential breaking change: We updated our error codes to be prefixed with TS instead of the old IO prefix. If you were checking for these error codes by name, please update your checks.

Notable commits

  • [b43574f] Switch 'IO' error prefix to 'TS'
  • [9747885] Prefix public C functions with ts_
  • [39510c3] Block unknown alter table commands on hypertables
  • [2408a83] Add support for ALTER TABLE SET TABLESPACE on hypertables
  • [41d9846] Enclose macro replacement list and arguments in parentheses
  • [cc59d51] Replace macro LEAST_TIMESTAMP by a static function
  • [281f363] Modify telemetry BGW to run every hour the first 12 hours
  • [a09b3ec] Add pg_isolation_regress support to the timescale build system
  • [2c267ba] Handle SIGTERM/SIGINT asynchronously
  • [5377e2d] Fix use-after-free bug for connections in the telemetry BGW
  • [248f662] Fix pg_dump for unprivileged users
  • [193fa4a] Stop background workers when extension is DROP OWNED
  • [625e3fa] Fix negative value handling in int time_bucket
  • [a33224b] Add loader API version function
  • [18b8068] Remove unnecessary index on dimension metadata table
  • [d09405d] Fix adaptive chunking when hypertables have multiple dimensions
  • [a81dc18] Block signals when writing to the log table in tests
  • [d5a6392] Fix adaptive chunking so it chooses correct index
  • [3489cca] Fix sigterm handling in background jobs
  • [2369ae9] Remove !WIN32 for sys/time.h and sys/socket.h, pg provides fills
  • [ebbb4ae] Also add sys/time.h for NetBSD. Fixes #700
  • [1a9ae17] Fix build on FreeBSD wrt sockets
  • [8225cd2] Remove (redefined) macro PG_VERSION and replace with PACKAGE_VERSION
  • [2a07cf9] Release SpinLock even when we're about to Error due to over-decrementing
  • [b2a15b8] Make sure DB schedulers are not decremented if they were never incremented
  • [6731c86] Add support for pre-release version checks

Thanks

  • @did-g for an improvement to our macros to make compiliers happy
  • @mx781 and @HeikoOnnebrink for reporting issues with working with pg_dump fully
  • @znbang and @timolson for reporting a bug that was causing telemetry to fail
  • @alanhamlett for reporting an issue with spinlocks when handling SIGTERMs
  • @oldgreen for reporting an issue with building on NetBSD
  • @kev009 for fixing build issues on FreeBSD and NetBSD
  • All the others who have helped us test and used these RCs!

0.12.1 (2018-09-19)

High-level changes

  • Fixes for a few issues related to the new scheduler and background worker framework.
  • Fixed bug in adaptive chunking where the incorrect index could be used for determining the current interval.
  • Improved testing, code cleanup, and other housekeeping.

Notable commits

  • [0f6f7fc] Fix adaptive chunking so it chooses correct index
  • [3ed79ed] Fix sigterm handling in background jobs
  • [bea098f] Remove !WIN32 for sys/time.h and sys/socket.h, pg provides fills
  • [9f62a1a] Also add sys/time.h for NetBSD. Fixes #700
  • [95a982f] Fix build on FreeBSD wrt sockets
  • [fcb4a79] Remove (redefined) macro PG_VERSION and replace with PACKAGE_VERSION
  • [2634897] Release SpinLock even when we're about to Error due to over-decrementing
  • [1f30dbb] Make sure DB schedulers are not decremented if they were never incremented
  • [f518cd0] Add support for pre-release version checks
  • [acebaea] Don't start schedulers for template databases.
  • [f221a12] Fix use-after-free bug in telemetry test
  • [0dc5bbb] Use pg_config bindir directory for pg executables

Thanks

  • @did-g for reporting a use-after-free bug in a test and for improving the robustness of another test
  • @kev009 for fixing build issues on FreeBSD and NetBSD

1.0.0-rc1 (2018-09-12)

This release is our 1.0 release candidate. We expect to only merge bug fixes between now and our final 1.0 release. This is a big milestone for us and signifies our maturity and enterprise readiness.

PLEASE NOTE that release candidate (rc) builds will only be made available via GitHub and Docker, and not on other release channels. Please help us test these release candidates out if you can!

Notable commits

  • [acebaea] Don't start schedulers for template databases.
  • [f221a12] Fix use-after-free bug in telemetry test
  • [2092b2a] Fix unused variable warning in Release build
  • [0dc5bbb] Use pg_config bindir directory for pg executables

Thanks

  • @did-g for reporting a use-after-free bug in a test and for improving the robustness of another test

0.12.0 (2018-09-10)

High-level changes

Scheduler framework: This release introduces a background job framework and scheduler. Each database running within a PostgreSQL instance has a scheduler that schedules recurring jobs from a new jobs table while maintaining statistics that inform the scheduler's policy. Future releases will leverage this scheduler framework for more automated management of data retention, archiving, analytics, and the like.

Telemetry: Using this new scheduler framework, TimescaleDB databases now send anonymized usage information to a telemetry server via HTTPS, as well as perform version checking to notify users if a newer version is available. For transparency, a new get_telemetry_report function details the exact JSON that is sent, and users may also opt out of this telemetry and version check.

Continued hardening: This release addresses several issues around more robust backup and recovery, handling large numbers of chunks, and additional test coverage.

Notable commits

  • [efab2aa] Fix net lib functionality on Windows and improve error handling
  • [71589c4] Fix issues when OpenSSL is not available
  • [a43cd04] Call the main telemetry function inside BGW executor
  • [faf481b] Add telemetry functionality
  • [45a2b76] Add new Connection and HTTP libraries
  • [b6fe657] Fix max_background_workers guc, errors on EXEC_BACKEND and formatting
  • [5d8c7cc] Add a scheduler for background jobs
  • [55a7141] Implement a cluster-wide launcher for background workers
  • [5bc705f] Update bootstrap to check for cmake and exit if not found
  • [98e56dd] Improve show_indexes test func to be more platform agnostic
  • [b928caa] Note how to recreate templated files
  • [8571e41] Use AttrNumberGetAttrOffset instead of Anum_name - 1 for array indexing
  • [d1710ef] Improve regression test script to cleanup more thoroughly
  • [fc3677f] Reduce number of open chunks per insert
  • [027b7b2] Hide extension symbols by default on Unix platforms
  • [6a3abe5] Fix SubspaceStore to ensure max_open_chunks_per_insert is obeyed

Thanks

@EvanCarroll for updates to the bootstrap script to check for cmake

0.11.0 (2018-08-08)

High-level changes

  • Adaptive chunking: This feature, currently in beta, allows the database to automatically adapt a chunk's time interval, so that users do not need to manually set (and possibly manually change) this interval size. In this release, users can specify either a target chunk data size (in terms of MB or GB), and the chunk's time intervals will be automatically adapted. Alternatively, users can ask the database to just estimate a target size itself based on the platform's available memory and other parameters, and the system will adapt accordingly. This type of automation can simplify initial database test and operations. This feature is default off. Note: The default time interval for non-adaptive chunking has also been changed from 1 month to 1 week.
  • Continued hardening: This release addresses a number of less frequently used schema modifications, functions, or constraints. Unsupported functions are safely blocked, while we have added support for a number of new types of table alterations. This release also adds additional test coverage.
  • Support for additional types of time columns, if they are binary compatible (thanks @fvannee!).

Notable commits

  • [9ba2e81] Fix segfault with custom partition types
  • [7e9bf25] Change default chunk size to one week
  • [506fa18] Add tests for custom types
  • [1d9ade7] add support for other types as timescale column
  • [570f2f8] Validate parameters when creating partition info
  • [148f2da] Use shared_buffers as the available cache memory
  • [e0a15c1] Add additional comments to explain algorithm
  • [d81dccb] Set the default chunk_time_interval to 1 day with adaptive chunking enabled
  • [2e7b32c] Add WARNING when doing min-max heap scan for adaptive chunking
  • [6b452a8] Update adaptive chunk algorithm to handle very small chunks.
  • [9c9cdca] Add support for adaptive chunk sizing
  • [7f8d17d] Handle DEFERRED and VALID options for constraints
  • [0c5c21b] Block using rules with hypertables
  • [37142e9] Block INSERTs on a hypertable's root table
  • [4daf087] Fix some ALTER TABLE corner case bugs on hypertables
  • [122f5f1] Block replica identity usage with hypertables
  • [8bf552e] Block unlogged tables from being used as hypertables
  • [a8c637e] Create aggregate functions only once to avoid dependency issues
  • [a97f2af] Add support for custom hypertable dimension types
  • [dfe026c] Refactor create_hypertable rel access.
  • [ed379c3] Validate existing indexes before adding a new dimension
  • [1f2d276] Fix and improve show_indexes test support function
  • [77b0035] Enforce IMMUTABLE partitioning functions
  • [cbc5e60] Block NO INHERIT constraints on hypertables
  • [e362e9c] Block mixing hypertables with postgres inheritance
  • [011f12b] Add support for CLUSTER ON and SET WITHOUT CLUSTER
  • [e947c6b] Improve handling of column settings
  • [fc4957b] Update statistics on parent table when doing ANALYZE
  • [82942bf] Enable backwards compatibility for loader for 0.9.0 and 0.9.1

Thanks

  • @Ngalstyan4 and @hjsuh18, our interns, for all of the PRs this summer
  • @fvannee for a PR adding support for binary compatible custom types as a time column
  • @fmacelw for reporting a bug where first() and last() hold reference across extension update
  • @soccerdroid for reporting a corner case bug in ALTER TABLE

0.10.1 (2018-07-12)

High-level changes

  • Improved memory management for long-lived connections.
  • Fixed handling of dropping triggers that would lead to orphaned references in pg_depend.
  • Fixed pruning in CustomScan when the subplan is not a Scan type that caused a crash with LATERALs.
  • Corrected size reporting that was not accurately counting TOAST size
  • Updated error messages that more closely conform to PG style.
  • Corrected handling of table and schema name changes to chunks; TimescaleDB metadata catalogs are now properly updated

Notable commits

  • [8b58500] Fix bug where dropping triggers caused dangling references in pg_depend, disallow disabling triggers on hypertables
  • [745b8ab] Fixing CustomScan pruning whenever the subplan is NOT of a Scan type.
  • [67a8a41] Make chunk identifiers formatting safe using format
  • [41af6ff] Fix misreported toast_size in chunk_relation_size funcs
  • [4f2f1a6] Update the error messages to conform with the style guide; Fix tests
  • [3c28f65] Release cache pin memory
  • [abe76fc] Add support for changing chunk schema and name

Thanks

  • @mfuterko for updating our error messages to conform with PG error message style
  • @fvannee for reporting a crash when using certain LATERAL joins with aggregates
  • @linba708 for reporting a memory leak with long lived connections
  • @phlsmk for reporting an issue where dropping triggers prevented drop_chunks from working due to orphaned dependencies

0.10.0 (2018-06-27)

High-level changes

  • Planning time improvement (up to 15x) when a hypertable has many chunks by only expanding (and taking locks on) chunks that will actually be used in a query, rather than on all chunks (as was the default PostgreSQL behavior).
  • Smarter use of HashAggregate by teaching the planner to better estimate the number of output rows when using time-based grouping.
  • New convenience function for getting the approximate number of rows in a hypertable (hypertable_approximate_row_count).
  • Fixed support for installing extension into non-public schemas
  • Other bug fixes and refactorings.

Notable commits

  • [12bc117] Fix static analyzer warning when checking for index attributes
  • [7d9f49b] Fix missing NULL check when creating default indexes
  • [2e1f3b9] Improve memory allocation during cache lookups
  • [ca6e5ef] Fix upserts on altered tables.
  • [2de6b02] Add optimization to use HashAggregate more often
  • [4b4211f] Fix some external functions when setting a custom schema
  • [b7257fc] Optimize planning times when hypertables have many chunks
  • [c660fcd] Add hypertable_approximate_row_count convenience function
  • [9ce1576] Fix a compilation issue on pre 9.6.3 versions

Thanks

  • @viragkothari for suggesting the addition of hypertable_approximate_row_count and @fvannee for providing the initial SQL used to build that function
  • 'mintekhab' from Slack for reporting a segfault when using upserts on an altered table
  • @mmouterde for reporting an issue where the extension implicitly expected to be installed in the public schema
  • @mfuterko for bringing some potential bugs to our attention via static analysis

0.9.2 (2018-05-04)

High-level changes

  • Fixed handling of DISCARD ALL command when parallel workers are involved, which sometimes caused the extension to complain it was not preloaded
  • User permission bug fix where users locating TRIGGER permissions in a database could not insert data into a hypertable
  • Fixes for some issues with 32-bit architectures

Notable commits

  • [256b394] Fix parsing of GrantRoleStmt
  • [b78953b] Fix datum conversion typo
  • [c7283ef] Fix bug with extension loader when DISCARD ALL is executed
  • [fe20e48] Fix chunk creation with user that lacks TRIGGER permission

Thanks

  • @gumshoes, @manigandham, @wallies, & @cjrh for reporting a problem where sometimes the extension would appear to not be preloaded when it actually was
  • @thaxy for reporting a permissions issue when user creating a hypertable lacks TRIGGER permission
  • @bertmelis for reporting some bugs with 32-bit architectures

0.9.1 (2018-03-26)

High-level changes

  • For this release only, you will need to restart the database before running ALTER EXTENSION
  • Several edge cases regarding CTEs addressed
  • Updated preloader with better error messaging and fixed edge case
  • ABI compatibility with latest PostgreSQL to help catch any breaking changes

Notable commits

  • [40ce037] Fix crash on explain analyze with insert cte
  • [8378beb] Enable hypertable inserts within CTEs
  • [bdfda75] Fix double-loading of extension
  • [01ea77e] Fix EXPLAIN output for ConstraintAwareAppend inside CTE
  • [fc05637] Add no preload error to versioned library.
  • [38f8e0c] Add ABI compatibility tests
  • [744ca09] Fix Cache Pinning for Subtxns
  • [39010db] Move more drops into event trigger system
  • [fc36699] Do not fail add_dimension() on non-empty table with 'if_not_exists'

Thanks

  • @The-Alchemist for pointing out broken links in the README
  • @chaintng for pointing out a broken link in the docs
  • @jgranstrom for reporting a edge case crash with UPSERTs in CTEs
  • @saosebastiao for reporting the lack of an error message when the library is not preloaded and trying to delete/modify a hypertable
  • @jbylund for reporting a cache invalidation issue with the preloader

0.9.0 (2018-03-05)

High-level changes

  • Support for multiple extension versions on different databases in the same PostgreSQL instance. This allows different databases to be updated independently and provides for smoother updates between versions. No more spurious errors in the log as the extension is being updated, and new versions no longer require a restart of the database.
  • Streamlined update process for smaller binary/package sizes
  • Significant refactoring to simplify and improve codebase, including improvements to error handling, security/permissions, and more
  • Corrections to edge-case scenarios involving dropping schemas, hypertables, dimensions, and more
  • Correctness improvements through propagating reloptions from main table to chunk tables and blocking ONLY commands that try to alter hypertables (i.e., changes should be applied to chunks as well)
  • Addition of a migrate_data option to create_hypertable to allow non-empty tables to be turned into hypertables without separate creation & insertion steps. Note, this option may take a while if the original table has lots of data
  • Support for ALTER TABLE RENAME CONSTRAINT
  • Support for adjusting the number of partitions for a space dimension
  • Improvements to tablespace handling

Notable commits

  • [4672719] Fix error in handling of RESET ALL
  • [9399308] Refactor/simplify update scripts and build process
  • [0e79df4] Fix handling of custom SQL-based partitioning functions
  • [f13969e] Fix possible memory safety issue and squash valgrind error.
  • [ef74491] Migrate table data when creating a hypertable
  • [2696582] Move index and constraints drop handling to event trigger
  • [d6baccb] Improve tablespace handling, including blocks for DROP and REVOKE
  • [b9a6f89] Handle DROP SCHEMA for hypertable and chunk schemas
  • [b534a5a] Add test case for adding metadata entries automatically
  • [6adce4c] Handle TRUNCATE without upcall and handle ONLY modifier
  • [71b1124] Delete orphaned dimension slices
  • [fa19a54] Handle deletes on metadata objects via native catalog API
  • [6e011d1] Refactor hypertable-related API functions
  • [5afd39a] Fix locking for serializing chunk creation
  • [6dd2c46] Add check for null in ca_append_rescan to prevent segfault
  • [71962b8] Refactor dimension-related API functions
  • [cc254a9] Fix CREATE EXTENSION IF NOT EXISTS and error messages
  • [d135256] Spread chunk indexes across tablespaces like chunks
  • [e85721a] Block ONLY hypertable on all ALTER TABLE commands.
  • [78d36b5] Handle subtxn for cache pinning
  • [26ef77f] Add subtxn abort logic to process_utility.c
  • [25f3284] Handle cache invalidation during subtxn rollback
  • [264956f] Block DROP NOT NULL on time-partitioned columns.
  • [ad7d361] Better accounting for number of items stored in a subspace
  • [12f92ea] Improve speed of out-of-order inserts
  • [87f055d] Add support for ALTER TABLE RENAME CONSTRAINT.
  • [da8cc79] Add support for multiple extension version in one pg instance
  • [68faddc] Make chunks inherit reloptions set on the hypertable
  • [4df8f28] Add proper permissions handling for associated (chunk) schemas
  • [21efcce] Refactor chunk table creation and unify constraint handling

Thanks

  • @Anthares for a request to pass reloptions like fill factor to child chunks
  • @oldgreen for reporting an issue with subtransaction handling
  • @fvannee for a PR that fixed a bug with ca_append_rescan
  • @maksm90 for reporting an superfluous index being created in an internal catalog table
  • @Rashid987 for reporting an issue where deleting a chunk, then changing the time interval would not apply the change when a replacement chunk is created
  • RaedA from Slack for reporting compilation issues on Windows between 0.8.0 and this release
  • @haohello for a request to adjust the number of partitions for a given dimension
  • @LonghronShen and @devereaux for reporting an issue (and submitting a PR) for handling version identification when there is more to the version than just major and minor numbers
  • @carlospeon for reporting an issue with dropping hypertables
  • @gumshoes, @simpod, @jbylund, and @ryan-shaw for testing a pre-release version to verify our new update path works as expected
  • @gumshoes for reporting an issue with RESET ALL

0.8.0 (2017-12-19)

High-level changes

  • TimescaleDB now builds and runs on Windows! Now in addition to using Docker, users can choose to build the extension from source and install on 64-bit Windows
  • Update functions add_dimension and set_chunk_time_interval to take INTERVAL types
  • Improved tablespace management including detaching tablespaces from hypertables and looking up tablespaces associated with a hypertable
  • Reduced memory usage for INSERTs with out-of-order data
  • Fixes inserts on 32-bit architectures, in particular ARM
  • Other correctness improvements including preventing attachment of PG10 partitions to hypertables, improved handling of space dimensions with one partition, and correctly working with pg_upgrade
  • Test and build improvements making those both more robust and easier to do

Notable commits

  • [26971d2] Make tablespace_show function return Name instead of CString
  • [2fe447b] Make TimescaleDB work with pg_upgrade
  • [90c7a6f] Fix logic for one space partition
  • [6cfdd79] Prevent native partitioning attachment of hypertables
  • [438d79d] Fix trigger relcache handling for COPY
  • [cc1ad95] Reduce memory usage for out-of-order inserts
  • [a0f62c5] Improve bootstrap script's robustness
  • [00a096f] Modify tests to make more platform agnostic
  • [0e76b5f] Do not add tablespaces to hypertable objects
  • [176b75e] Add command to show tablespaces attached to a hypertable
  • [6e92383] Add function to detach tablespaces from hypertables
  • [e593876] Refactor tablespace handling
  • [c4a46ac] Add hypertable cache lookup on ID/pkey
  • [f38a578] Fix handling of long constraint names
  • [20c9b28] Unconditionally add pg_config --includedir to src build
  • [12dff61] Fixes insert for 32bit architecture
  • [e44e47e] Update add_dimension to take INTERVAL times
  • [0763e62] Update set_chunk_time_interval to take INTERVAL times
  • [87c4b4f] Fix test generator to work for PG 10.1
  • [51854ac] Fix error message to reflect that drop_chunks can take a DATE interval
  • [66396fb] Add build support for Windows
  • [e1a0e81] Refactor and fix cache invalidation

Thanks

  • @oldgreen for reporting an issue where COPY was warning of relcache reference leaks
  • @campeterson for pointing out some documentation typos
  • @jwdeitch for the PR to prevent attaching PG10 partitions to hypertables
  • @vjpr and @sztanpet for reporting bugs and suggesting improvements to the bootstrap script

0.7.1 (2017-11-29)

High-level changes

  • Fix to the migration script for those coming from 0.6.1 (or earlier)
  • Fix edge case in drop_chunks when hypertable uses TIMESTAMP type
  • Query planning improvements & fixes
  • Permission fixes and support SET ROLE functionality

Notable commits

  • [717299f] Change time handling in drop_chunks for TIMESTAMP times
  • [d8ec285] Do not append-optimize plans with result relations (DELETE/UPDATE)
  • [30b72ec] Handle empty append plans in ConstraintAwareAppend
  • [b35509b] Permission fixes and allow SET ROLE

Thanks

  • @shaneodonnell for reporting a bug with empty append plans in ConstraintAwareAppend
  • @ryan-shaw for reporting a bug with query plans involving result relations and reporting an issue with our 0.6.1 to 0.7.0 migration script

0.7.0 (2017-11-21)

Please note: This update may take a long time (minutes, even hours) to complete, depending on the size of your database

High-level changes

  • Initial PostgreSQL 10 support. TimescaleDB now should work on both PostgreSQL 9.6 and 10. As this is our first release supporting PG10, we look forward to community feedback and testing. Some release channels, like Ubuntu & RPM-based distros will remain on 9.6 for now
  • Support for CLUSTER on hypertables to recursively apply to chunks
  • Improve constraint handling of edge cases for DATE and TIMESTAMP
  • Fix range_start and range_end to properly handle the full 32-bit int space
  • Allow users to specify their desired partitioning function
  • Enforce NOT NULL constraint on time columns
  • Add testing infrastructure to use Coverity and test PostgreSQL regression tests in TimescaleDB
  • Switch to the CMake build system for better cross-platform support
  • Several other bug fixes, cleanups, and improvements

Notable commits

  • [13e1cb5] Add reindex function
  • [6594018] Handle when create_hypertable is invoked on partitioned table
  • [818bdbc] Add coverity testing
  • [5d0cbc1] Recurse CLUSTER command to chunks
  • [9c7191e] Change TIMESTAMP partitioning to be completely tz-independent
  • [741b256] Mark IMMUTABLE functions as PARALLEL SAFE
  • [2ffb30d] Make aggregate serialize and deserialize functions STRICT
  • [c552410] Add build target to run the standard PostgreSQL regression tests
  • [291050b] Change DATE partitioning to be completely tz-independent
  • [ca0968a] Make all partitioning functions take anyelement argument
  • [a4e1e32] Change range_start and range_end semantics
  • [2dfbc82] Fix off-by-one error on range-end
  • [500563f] Add support for PostgreSQL 10
  • [201a948] Check that time dimensions are set as NOT NULL.
  • [4532650] Allow setting partitioning function
  • [4a0a0d8] Fix column type change on plain tables
  • [cf009cc] Avoid string conversion in hash partitioning
  • [8151098] Improve update testing by adding a rerun test
  • [c420c11] Create a catalog entry for constraint-backed indexes
  • [ec746d1] Add ability to run regression test locally
  • [44f9fec] Add analyze to parallel test for stability
  • [9e0422a] Fix bug with pointer assignment after realloc
  • [114fa8d] Refactor functions used to recurse DDL commands to chunks
  • [b1ec4fa] Refactor build system to use CMake

Thanks

  • @jgraichen for reporting an issue with drop_chunks not accepting BIGINT
  • @nathansgreen for reporting an edge case with constraints for TIMESTAMP
  • @jonmd for reporting a similar edge case for DATE
  • @jwdeitch for a PR to cover an error case in PG10

0.6.1 (2017-11-07)

High-level changes

  • Fix several memory bugs that caused segfaults
  • Fix bug when creating expression indexes
  • Plug a memory leak with constraint expressions
  • Several other bug fixes and stability improvements

Notable commits

  • [2799075] Fix EXPLAIN for ConstraintAware and MergeAppend
  • [8084594] Use per-chunk memory context for cached chunks
  • [a13d9de] Do not convert tuples on insert unless needed
  • [da09f24] Limit growth of range table during chunk inserts
  • [85dee79] Fix issue with creating expression indexes
  • [844ff7f] Fix memory leak due to constraint expressions.
  • [e90d3ee] Consider precvious CIS state in copy FROM file to rel
  • [56d632f] Fix bug with pointer assignment after realloc
  • [f97d624] Make event trigger creation idempotent

Thanks

  • @jwdeitch for submitting a patch to correct behavior in the COPY operation
  • @jgraichen for reporting a bug with expression indexes
  • @zixet for reporting a memory leak
  • @djk447 for reporting a bug in EXPLAIN with ConstraintAware and MergeAppend

0.6.0 (2017-10-12)

High-level changes

  • Fix bugs where hypertable-specific handlers were affecting normal Postgres tables.
  • Make it so that all TimescaleDB commands can run as a normal user rather than a superuser.
  • Updates to the code to make the extension compileable on Windows; future changes will add steps to properly build.
  • Move time_bucket functions out of public schema (put in schema where extension is).
  • Several other bugs fixes.

Notable commits

  • [1d73fb8] Fix bug with extension starting too early.
  • [fd390ec] Fix chunk index attribute mismatch and locking issue
  • [430ed8a] Fix bug with collected commands in index statement.
  • [614c2b7] Fix permissions bugs and run tests as normal user
  • [ce12104] Fix "ON CONFLICT ON CONSTRAINT" on plain PostgreSQL tables
  • [4c451e0] Fix rename and reindex bugs when objects are not relations
  • [c3ebc67] Fix permission problems with dropping hypertables and chunks
  • [040e815] Remove truncate and hypertable metadata triggers
  • [5c26328] Fix INSERT on hypertables using sub-selects with aggregates
  • [b57e2bf] Prepare C code for compiling on Windows
  • [a2bad2b] Fix constraint validation on regular tables
  • [fb5717f] Remove explicit schema for time_bucket
  • [04d01ce] Split DDL processing into start and end hooks

Thanks

  • @oldgreen for reporting time_bucket being incorrectly put in the public schema and pointing out permission problems
  • @qlandman for reporting a bug with INSERT using sub-selects with aggregates
  • @min-mwei for reporting a deadlock issue during INSERTs
  • @ryan-shaw for reporting a bug where the extension sometimes used pg_cache too soon

0.5.0 (2017-09-20)

High-level changes

  • Improved support for primary-key, foreign-key, unique, and exclusion constraints.
  • New histogram function added for getting the frequency of a column's values.
  • Add support for using DATE as partition column.
  • chunk_time_interval now supports INTERVAL data types
  • Block several unsupported and/or dangerous operations on hypertables and chunks, including dropping or otherwise altering a chunk directly.
  • Several bug fixes throughout the code.

Notable commits

  • [afcb0b1] Fix NULL handling in first/last functions.
  • [d53c705] Add script to dump meta data that can be useful for debugging.
  • [aa904fa] Block adding constraints without a constraint name
  • [a13039f] Fix dump and restore for tables with triggers and constraints
  • [8cf8d3c] Improve the size utils functions.
  • [2767548] Block adding constraints using an existing index
  • [5cee104] Allow chunk_time_interval to be specified as an INTERVAL type
  • [6232f98] Add histogram function.
  • [2380033] Block ALTER TABLE and handle DROP TABLE on chunks
  • [72d6681] Move security checks for ALTER TABLE ALTER COLUMN to C
  • [19d3d89] Handle changing the type of dimension columns correctly.
  • [17c4ba9] Handle ALTER TABLE rename column
  • [66932cf] Forbid relocating extension after install.
  • [d2561cc] Add ability to partition by a date type
  • [48e0a61] Remove triggers from chunk and chunk_constraint
  • [4dcbe61] Add support for hypertable constraints

Thanks

  • @raycheung for reporting a segfault in first/last
  • @meotimdihia, @noyez, and @andrew-blake for reporting issues with UNQIUE and other types of constraints

0.4.2 (2017-09-06)

High-level changes

  • Provide scripts for backing up and restoring single hypertables

Notable commits

  • [683c078] Add backup/restore scripts for single hypertables

0.4.1 (2017-09-04)

High-level changes

  • Bug fix for a segmentation fault in the planner
  • Shortcut when constraint-aware append excludes all chunks
  • Fix edge case with negative timestamps when points fell right on the boundary
  • Fix behavior of time_bucket for DATE types by not converting to TIMESTAMPTZ
  • Make the output of chunk_relation_size consistent

Notable commits

  • [50c8c4c] Fix possible segfault in planner
  • [e49e45c] Fix failure when constraint-aware append excludes all chunks
  • [c3b6fb9] Fix bug with negative dimension values
  • [3c69e4f] Fix semantics of time_bucket on DATE input
  • [0137c92] Fix output order of chunk dimensions and ranges in chunk_relation_size.
  • [645b530] Convert inserted tuples to the chunk's rowtype

Thanks

  • @yadid for reporting a segfault (fixed in 50c8c4c)
  • @ryan-shaw for reporting tuples not being correctly converted to a chunk's rowtype (fixed in 645b530)
  • @yuezhihan for reporting GROUP BY error when setting compress_segmentby with an enum column

0.4.0 (2017-08-21)

High-level changes

  • Exclude chunks when constraints can be constifyed even if they are considered mutable like NOW().
  • Support for negative values in the dimension range which allows for pre-1970 dates.
  • Improve handling of default chunk times for integral date times by forcing it to be explicit rather than guessing the units of the time.
  • Improve memory usage for long-running COPY operations (previously it would grow unbounded).
  • VACUUM and REINDEX on hypertables now recurse down to chunks.

Notable commits

  • [139fe34] Implement constraint-aware appends to exclude chunks at execution time
  • [2a51cf0] Add support for negative values in dimension range
  • [f2d5c3f] Error if add_dimension given both partition number and interval length
  • [f3df02d] Improve handling of non-TIMESTAMP/TZ timestamps
  • [6a5a7eb] Reduce memory usage on long-running COPY operations
  • [953346c] Make VACUUM and REINDEX recurse to chunks
  • [55bfdf7] Release all cache pins when a transaction ends

0.3.0 (2017-07-31)

High-level changes

  • "Upserts" are now supported via normal ON CONFLICT DO UPDATE/ON CONFLICT DO NOTHING syntax. However, ON CONFLICT ON CONSTRAINT is not yet supported.
  • Improved support for user-defined triggers on hypertables. Now handles both INSERT BEFORE and INSERT AFTER triggers, and triggers can be named arbitrarily (before, a _0_ prefix was required to ensure correct execution priority).
  • TRUNCATE on a hypertable now deletes empty chunks.

Notable commits

  • [23f9d3c] Add support for upserts (ON CONFLICT DO UPDATE)
  • [1f3dcd8] Make INSERTs use a custom plan instead of triggers
  • [f23bf58] Remove empty chunks on TRUNCATE hypertable.

0.2.0 (2017-07-12)

High-level changes

  • Users can now define their own triggers on hypertables (except for INSERT AFTER)
  • Hypertables can now be renamed or moved to a different schema
  • Utility functions added so you can examine the size hypertables, chunks, and indices

Notable commits

  • [83c75fd] Add support for triggers on hypertables for all triggers except INSERT AFTER
  • [e0eeeb9] Add hypertable, chunk, and indexes size utils functions.
  • [4d2a65d] Add infrastructure to build update script files.
  • [a5725d9] Add support to rename and change schema on hypertable.
  • [142f58c] Cleanup planner and process utility hooks

0.1.0 (2017-06-28)

IMPORTANT NOTE

Starting with this release, TimescaleDB will now support upgrading between extension versions using the typical ALTER EXTENSION command, unless otherwise noted in future release notes. This important step should make it easier to test TimescaleDB and be able to get the latest benefits from new versions of TimescaleDB. If you were previously using a version with the -beta tag, you will need to DROP any databases currently using TimescaleDB and re-create them in order to upgrade to this new version. To backup and migrate data, use pg_dump to save the table schemas and COPY to write hypertable data to CSV for re-importing after upgrading is complete. We describe a similar process on our docs.

High-level changes

  • More refactoring to stabilize and cleanup the code base for supporting upgrades (see above note)
  • Correct handling of ownership and permission propagation for hypertables
  • Multiple bug fixes

Notable commits

  • [696cc4c] Provide API for adding hypertable dimensions
  • [97681c2] Fixes permission handling
  • [aca7f32] Fix extension drop handling
  • [9b8a447] Limit the SubspaceStore size; Add documentation.
  • [14ac892] Fix possible segfault
  • [0f4169c] Fix check constraint on dimension table
  • [71c5e78] Fix and refactor tablespace support
  • [5452dc5] Fix partiton functions; bug fixes (including memory)
  • [e75cd7e] Finer grained memory management
  • [3c460f0] Fix partitioning, memory, and tests
  • [fe51d8d] Add native scan for the chunk table
  • [fc68baa] Separate out subspace_store and add it to the hypertable object as well
  • [c8124b8] Use hypercube instead of dimension slice list
  • [f5d7786] Change the semantics of range_end to be exclusive
  • [700c9c8] Refactor insert path in C.
  • [0584c47] Created chunk_get_or_create in sql with an SPI connector in C
  • [7b8de0c] Refactor catalog for new schema and add native data types
  • [d3bdcba] Start refactoring to support any number of partitioning dimensions

0.0.12-beta (2017-06-21)

High-level changes

  • A major cleanup and refactoring was done to remove legacy code and currently unused code paths. This change is backwards incompatible and will require a database to be re-initialized and data re-imported. This refactoring will allow us to provide upgrade paths starting with the next release.
  • COPY and INSERT commands now return the correct number of rows
  • Default indexes no longer duplicate existing indexes
  • Cleanup of the Docker image and build process
  • Chunks are now time-aligned across partitions

Notable commits

  • [3192c8a] Remove Dockerfile and docker.mk
  • [2a01ebc] Ensure that chunks are aligned.
  • [73622bf] Fix default index creation duplication of indexes
  • [c8872fe] Fix command-tag for COPY and INSERT
  • [bfe58b6] Refactor towards supporting version upgrades
  • [db01c84] Make time-bucket function parallel safe
  • [18db11c] Fix timestamp test
  • [97bbb59] Make constraint exclusion work with non-text partition keys
  • [f2b42eb] Fix problems with partitioning logic for padded fields
  • [997029a] if_not_exist flag to create_hypertable now works on hypertables with data as well
  • [347a8bd] Reference the correct column when scanning partition epochs
  • [88a9849] Fix bug with timescaledb.allow_install_without_preload GUC not working

0.0.11-beta (2017-05-24)

High-level changes

  • New first(value, time) and last(value, time) aggregates
  • Remove setup_timescaledb() function to streamline setup
  • Allow for use cases where restarting the server is not feasible by force loading the library
  • Disable time series optimizations on non-hypertables
  • Add some default indexes for hypertables if they do not exist
  • Add "if not exists" flag for create_hypertable
  • Several bug fixes and cleanups

Notable commits

  • [8ccc8cc] Add if_not_exists flag to create_hypertable()
  • [2bc60c7] Fix time interval field name in hypertable cache entry
  • [4638688] Improve GUC handling
  • [cedcafc] Remove setup_timescaledb() and fix pg_dump/pg_restore.
  • [34ad9a0] Add error when timescaledb library is not preloaded.
  • [fc4ddd6] Fix bug with dropping chunks on tables with indexes
  • [32215ff] Add default indexes for hypertables
  • [b2900f9] Disable query optimization on regular tables (non-hypertables)
  • [f227db4] Fixes command tag return for COPY on hypertables.
  • [eb32081] Fix Invalid database ID error
  • [662be94] Add the first(value, time),last(value, time) aggregates
  • [384a8fb] Add regression tests for deleted unit tests
  • [31ee92a] Remove unit tests and sql/setup
  • [13d3acb] Fix bug with alter table add/drop column if exists
  • [f960c24] Fix bug with querying a row as a composite type

0.0.10-beta (2017-05-04)

High-level changes

  • New time_bucket functions for doing roll-ups on varied intervals
  • Change default partition function (thanks @robin900)
  • Variety of bug fixes

Notable commits

  • [1c4868d] Add documentation for chunk_time_interval argument
  • [55fd2f2] Fixes command tag return for INSERTs on hypertables.
  • [c3f930f] Add time_bucket functions
  • [b128ac2] Fix bug with INSERT INTO...SELECT
  • [e20edf8] Add better error checking for index creation.
  • [72f754a] use PostgreSQL's own hash_any function as default partfunc (thanks @robin900)
  • [39f4c0f] Remove sample data instructions and point to docs site
  • [9015314] Revised the get_general_index_definition function to handle cases where indexes have definitions other than just CREATE INDEX (thanks @bricklen)