---
title: "PostgreSQL TimescaleDB Versions and Configurations"
sidebar_label: "Versions and Configurations"
sidebar_position: 1
description: "Available PostgreSQL TimescaleDB versions, fixed and custom cluster node configurations"
---

import Formbricks from '@theme/MDXComponents/Formbricks'
import {CustomTable} from '@selectel/docux/components'

# PostgreSQL TimescaleDB versions and configurations

## Versions \{#versions}

PostgreSQL versions 14, 15, 16, and 17 are supported. A specific version of TimescaleDB is installed for each PostgreSQL version. You can [find out the TimescaleDB version](#find-out-timescaledb-version) after [creating a cluster](/managed-databases/timescaledb/create-cluster.mdx).

The TimescaleDB extension is distributed under the [Apache 2.0 license](https://github.com/timescale/timescaledb/blob/main/LICENSE-APACHE).

### Find out the TimescaleDB version \{#find-out-timescaledb-version}

To find out which version of TimescaleDB is installed in your cluster, run the following SQL query:

```sql
SELECT installed_version FROM pg_available_extensions WHERE name = 'timescaledb';
```

## Node configurations \{#node-configurations}

import Configurations from '@site/i18n/en/docusaurus-plugin-content-docs/current/_partials/managed-databases/common/configurations.mdx'

<Configurations DatabaseName="PostgreSQL TimescaleDB" slug="timescaledb" />

<Formbricks />
