<a id="cc-postgresql-source"></a>

# PostgreSQL Source (JDBC) Connector for Confluent Cloud

The fully managed PostgreSQL Source (JDBC) connector for Confluent Cloud polls a
PostgreSQL table and streams new and updated rows to Apache Kafka®. The connector
uses a timestamp or incrementing column to detect new and changed rows.

#### NOTE
- This Quick Start is for the fully managed Confluent Cloud connector. If you are
  installing the connector locally for Confluent Platform, see [JDBC Connector (Source and
  Sink) for Confluent Platform](https://docs.confluent.io/kafka-connectors/jdbc/current/).
- If you require private networking for fully managed connectors, make sure to set up the proper
  networking beforehand. For more information, see [Manage Networking for Confluent Cloud Connectors](networking/internet-resource.md#clusters-connect-cloud).

## Features

The PostgreSQL Source connector provides the following features:

* **At least once delivery**: The connector guarantees that records are delivered at least once to the Kafka topic.
* **Topics created automatically**: The connector automatically creates Kafka topics using the naming convention: `<topic.prefix><tableName>`. The tables are created with the properties: `topic.creation.default.partitions=1` and `topic.creation.default.replication.factor=3`.
* **Insert modes:**
  - *timestamp* mode is enabled when only a timestamp column is specified when you enter database details.
  - *timestamp+incrementing* mode is enabled when both a timestamp column and incrementing column are specified when you enter database details.

    #### IMPORTANT
    A timestamp column must not be nullable.
* **Database authentication:** Supports password authentication, Google service account impersonation,
  Microsoft Entra ID-based authentication, and AWS IAM role-based authentication using Confluent
  Provider Integration. For more information about provider integration setup, see the
  [connector authentication](#cc-postgresql-source-setup-connection) and
  [AWS IAM Authentication Setup](#cc-postgresql-source-aws-iam-auth).
* **Record processing**: Supports table and query modes.
  Use the `query` property to execute custom SQL queries for
  joining tables or selecting specific data subsets.
* **SSL support:** Supports both one-way SSL (Server CA cert validation) and
  mTLS, where the connector presents a client certificate so the database can
  authenticate the connector. See
  [How do I configure SSL/TLS certificates for secure PostgreSQL connections?](#cc-postgresql-source-ssl-tls-faq)
  for details.
* **Data Format with or without a Schema**: The connector supports Avro, JSON Schema, Protobuf, JSON (schemaless), or Bytes. [Schema Registry](../get-started/schema-registry.md#cloud-sr-config) must be enabled to use a Schema Registry-based format (for example, Avro, JSON_SR (JSON Schema), or Protobuf).
* **Select configuration properties:**
  - `db.timezone`
  - `poll.interval.ms`
  - `batch.max.rows`
  - `timestamp.delay.interval.ms`
  - `topic.prefix`
  - `schema.pattern`
* **PostgreSQL JSON and JSONB**: The connector supports sourcing from PostgreSQL tables containing data stored as JSON or JSONB (JSON binary format). The connector stores JSON or JSONB as STRING type in Kafka.
* **Offset management capabilities**: Supports offset management. For more information, see [Manage custom offsets](#cc-postgressql-source-custom-offsets).
* **Secret manager integration**: The connector supports secret manager integration. For `Password` based authentication, the connector can retrieve the following configurations from an integrated secret manager at runtime as needed.

  | **Secret manager managed configuration**   | **Type**   |
  |--------------------------------------------|------------|
  | `connection.user`                          | `STRING`   |
  | `connection.password`                      | `PASSWORD` |

  For more information, see [Create a secret manager integration in Confluent Cloud](secret-manager-integration/overview.md#cloud-secret-manager-quickstart).

For more information and examples to use with the Confluent Cloud API for Connect,
see the [Confluent Cloud API for Connect Usage Examples](connect-api-section.md#ccloud-connect-api) section.

## Limitations

Be sure to review the following information.

* For connector limitations, see [PostgreSQL Source (JDBC) Connector](limits.md#cc-postgresql-source-limits) limitations.
* If you plan to use one or more Single Message Transformations (SMTs), see [SMT Limitations](single-message-transforms.md#cc-single-message-transforms-limitations).

#### NOTE
CockroachDB is not supported.

<a id="cc-postgressql-source-custom-offsets"></a>

## Manage custom offsets

You can manage the offsets for this connector. Offsets provide information on the
point in the system from which the connector is accessing data. For more
information, see [Manage Offsets for Fully Managed Connectors in Confluent Cloud](offsets.md#connect-custom-offsets).

**To manage offsets**:

- Manage offsets using Confluent Cloud APIs. For more information, see [Connect offsets API reference](https://docs.confluent.io/cloud/current/ccloud/offsets-connect-v-1/).

### Get the current offset

To get the current offset, make a `GET` request that specifies the environment, Kafka cluster, and connector name.

```bash
GET /connect/v1/environments/{environment_id}/clusters/{kafka_cluster_id}/connectors/{connector_name}/offsets
Host: https://api.confluent.cloud
```

**Response:**

Successful calls return HTTP `200` with a JSON payload that describes the offset.

```bash
{
    "id": "lcc-example123",
    "name": "{connector_name}",
    "offsets": [
        {
            "partition": {
                "protocol": "1",
                "table": "{table_name}"
            },
            "offset": {
                "incrementing": 26
            }
        }
    ],
    "metadata": {
        "observed_at": "2024-03-28T17:57:48.139635200Z"
    }
}
```

Responses include the following information:

- The position of latest offset.
- The observed time of the offset in the metadata portion of the payload. The `observed_at` time
  indicates a snapshot in time for when the API retrieved the offset. A running connector is always updating
  its offsets. Use `observed_at` to get a sense for the gap between real time and the time at which the request
  was made. By default, offsets are observed every minute. Calling `GET` repeatedly will fetch more recently
  observed offsets.
- Information about the connector.
- In these examples, the curly braces around “{connector_name}” indicate a replaceable value.

### Update the offset

To update the offset, make a `POST` request that specifies the environment, Kafka cluster, and connector
name. Include a JSON payload that specifies new offset and a patch type.

```bash
POST /connect/v1/environments/{environment_id}/clusters/{kafka_cluster_id}/connectors/{connector_name}/offsets/request
Host: https://api.confluent.cloud

 {
     "type": "PATCH",
     "offsets": [
       {
         "partition": {
           "protocol": "1",
           "table": "{table_name}"
         },
         "offset": {
           "incrementing": 3
         }
       }
     ]
 }
```

**Considerations:**

- You can only make one offset change at a time for a given connector.
- This is an asynchronous request. To check the status of this request, you must use the check offset status API. For more information,
  see **Get the status of an offset request**.
- For source connectors, the connector attempts to read from the position defined by the requested offsets.

**Response:**

Successful calls return HTTP `202 Accepted` with a JSON payload that describes the offset.

```bash
{
    "id": "lcc-example123",
    "name": "{connector_name}",
    "offsets": [
        {
            "partition": {
                "protocol": "1",
                "table": "{table_name}"
            },
            "offset": {
                "incrementing": 3
            }
        }
    ],
    "requested_at": "2024-03-28T17:58:45.606796307Z",
    "type": "PATCH"
}
```

Responses include the following information:

- The requested position of the offsets in the source.
- The time of the request to update the offset.
- Information about the connector.

### Delete the offset

To delete the offset, make a `POST` request that specifies the environment, Kafka cluster, and connector
name. Include a JSON payload that specifies the delete type.

```bash
 POST /connect/v1/environments/{environment_id}/clusters/{kafka_cluster_id}/connectors/{connector_name}/offsets/request
 Host: https://api.confluent.cloud

{
  "type": "DELETE"
}
```

**Considerations:**

- Delete requests delete the offset for the provided partition and reset to the base state. A
  delete request is as if you created a fresh new connector.
- This is an asynchronous request. To check the status of this request, you must use the check offset status API. For more information,
  see **Get the status of an offset request**.
- Do not issue delete and patch requests at the same time.
- For source connectors, the connector attempts to read from the position defined in the base state.

**Response**:

Successful calls return HTTP `202 Accepted` with a JSON payload that describes the result.

```bash
{
  "id": "lcc-example123",
  "name": "{connector_name}",
  "offsets": [],
  "requested_at": "2024-03-28T17:59:45.606796307Z",
  "type": "DELETE"
}
```

Responses include the following information:

- Empty offsets.
- The time of the request to delete the offset.
- Information about Kafka cluster and connector.
- The type of request.

### Get the status of an offset request

To get the status of a previous offset request, make a `GET` request that specifies the environment, Kafka cluster, and connector
name.

```bash
GET /connect/v1/environments/{environment_id}/clusters/{kafka_cluster_id}/connectors/{connector_name}/offsets/request/status
Host: https://api.confluent.cloud
```

**Considerations:**

- The status endpoint always shows the status of the most recent PATCH/DELETE operation.

**Response**:

Successful calls return HTTP `200` with a JSON payload that describes the result. The following is an example
of an applied patch.

```bash
{
   "request": {
      "id": "lcc-example123",
      "name": "{connector_name}",
      "offsets": [
          {
              "partition": {
                  "protocol": "1",
                  "table": "{table_name}"
              },
              "offset": {
                  "incrementing": 3
              }
          }
      ],
      "requested_at": "2024-03-28T17:58:45.606796307Z",
      "type": "PATCH"
   },
   "status": {
      "phase": "APPLIED",
      "message": "The Connect framework-managed offsets for this connector have been altered successfully. However, if this connector manages offsets externally, they will need to be manually altered in the system that the connector uses."
   },
   "previous_offsets": [
       {
           "partition": {
               "protocol": "1",
               "table": "{table_name}"
           },
           "offset": {
               "incrementing": 26
           }
       }
   ],
   "applied_at": "2024-03-28T17:58:48.079141883Z"
}
```

Responses include the following information:

- The original request, including the time it was made.
- The status of the request: applied, pending, or failed.
- The time you issued the status request.
- The previous offsets. These are the offsets that the connector last updated
  prior to updating the offsets. Use these to try to restore the state of your connector
  if a patch update causes your connector to fail or to return a connector to its
  previous state after rolling back.

### JDBC modes and offsets

You can run the JDBC source connectors in one of four modes. Each mode uses a different offset object in its JSON payload to track the
progress of the connector. The provided samples show an offset object from a JBDC source connector in incrementing mode.

- `bulk` - No offset. This is the default mode for JDBC source connectors.
- `incrementing` - The offset is provided by the `incrementing` property in the offset object.
- `timestamp` - The offset is provided by the `timestamp` and `timestamp-nanos` properties in the offset object.
- `timestamp+incrementing` - The offset is provided by the `incrementing`, `timestamp` and `timestamp-nanos`
  properties in the offset object.

### JSON payload

The table below offers a description of the unique fields in the JSON payload
for managing offsets of the JDBC Source connectors, including:

- IBM Db2 Source connector
- Microsoft SQL Server Source connector
- MySQL Source connector
- Oracle Database Source connector
- PostgreSQL Source connector

| Field             | Definition                                                                                                                                                                                                                                            | Required/Optional   |
|-------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
| `incrementing`    | Specifies the value of `incrementing.column.name` which identifies the current offset. The connector<br/>gets only values greater than the value in this field.<br/><br/>Available only in the following modes: incrementing, timestamp+incrementing. | Required            |
| `protocol`        | Specifies the protocol.<br/><br/>Available in the following modes: incrementing, timestamp, timestamp+incrementing.                                                                                                                                   | Required            |
| `table`           | The name of the table.<br/><br/>Available in the following modes: incrementing, timestamp, timestamp+incrementing.                                                                                                                                    | Required            |
| `timestamp`       | The number of milliseconds since `January 1, 1970, 00:00:00` GMT represented by the Timestamp object of the column value.<br/><br/>Available only in the following modes: timestamp, timestamp+incrementing.                                          | Required            |
| `timestamp_nanos` | Fractional seconds component of the timestamp object.<br/><br/>Available only in the following modes: timestamp, timestamp+incrementing.                                                                                                              | Required            |

## Quick Start

Use this quick start to get up and running with the Confluent Cloud PostgreSQL Source connector. The quick start provides the basics of selecting the connector and
configuring it to obtain a snapshot of the existing data in a PostgreSQL
database and then monitoring and recording all subsequent row-level changes.

<a id="cc-postgresql-source-prereqs"></a>

Prerequisites
: - Authorized access to a [Confluent Cloud](https://www.confluent.io/confluent-cloud/) cluster on Amazon Web Services (AWS), Microsoft Azure (Azure), or Google Cloud.
  - The Confluent CLI installed and configured for the cluster. See [Install the Confluent CLI](https://docs.confluent.io/confluent-cli/current/install.html).
  - The connector automatically creates Kafka topics using the naming
    convention: `<topic.prefix><tableName>`. The tables are created with the
    properties: `topic.creation.default.partitions=1` and
    `topic.creation.default.replication.factor=3`. If you want to create
    topics with specific settings, create the topics before running this
    connector.
  <br/>
    #### IMPORTANT
    If you are configuring granular access using a [service account](service-account.md#s3-cloud-service-account), and you leave the optional **Topic prefix**
    (`topic.prefix`) configuration property empty, you must grant ACL
    `CREATE` and `WRITE` access to all the Kafka topics or create [RBAC
    role bindings](managed-connector-rbac.md#managed-connector-rbac). To add ACLs, you use the (\*)
    wildcard in the ACL entries as shown in the following examples.
    ```bash
    confluent kafka acl create --allow --service-account
    "<service-account-id>" --operation create --topic "*"
    ```
  <br/>
    ```bash
    confluent kafka acl create --allow --service-account
    "<service-account-id>" --operation write --topic "*"
    ```
  - [Schema Registry](../get-started/schema-registry.md#cloud-sr-config) must be enabled to use a Schema Registry-based format (for example, Avro, JSON_SR (JSON Schema), or Protobuf).
  - You cannot use a basic database with Azure. You must use a general purpose or memory-optimized PostgreSQL database.
  - Make sure your connector can reach your service. Consider the following before running the connector:
    * Depending on the service environment, certain network access limitations may exist.  See [Manage Networking for Confluent Cloud Connectors](networking/internet-resource.md#clusters-connect-cloud) for details.
    * To use a set of public egress IP addresses, see [Public Egress IP Addresses for Confluent Cloud Connectors](static-egress-ip.md#cc-static-egress-ips). For additional fully managed connector networking details, see [Networking and DNS](overview.md#connect-internet-access-resources).
    * Do not include `jdbc:xxxx://` in the connection hostname property. An example of a connection hostname property is `database.example.endpoint.com`. For example, `mydatabase.abc123ecs2.us-west.rds.amazonaws.com`.
    * Clients from Azure Virtual Networks are not allowed to access the server by default. Check that your Azure Virtual Network is correctly configured and that **Allow access to Azure Services** is enabled.
    * See your specific cloud platform documentation for how to configure security rules for your VPC.
  <br/>
  - Kafka cluster credentials. The following lists the different ways you can provide credentials.
    - Enter an existing [service account](service-account.md#s3-cloud-service-account) resource ID.
    - Create a Confluent Cloud [service account](service-account.md#s3-cloud-service-account) for the connector. Make sure to review the ACL entries required in the [service account documentation](service-account.md#s3-cloud-service-account). Some connectors have specific ACL requirements.
    - Create a Confluent Cloud API key and secret. To create a key and secret, you can use [confluent api-key create](https://docs.confluent.io/confluent-cli/current/command-reference/api-key/confluent_api-key_create.html) *or* you can autogenerate the API key and secret directly in the Cloud Console when setting up the connector.

### Using the Confluent Cloud Console

#### Step 1: Launch your Confluent Cloud cluster

To create and launch a Kafka cluster in Confluent Cloud, see [Create a kafka cluster in Confluent Cloud](../get-started/index.md#cloud-create-kafka-cluster).

#### Step 2: Add a connector

In the left navigation menu, click **Connectors**. If you already have connectors in your cluster, click **+ Add
connector**.

#### Step 3: Select your connector

Click the **PostgreSQL Source** connector card.

![PostgreSQL Source Connector Card](images/ccloud-postgresql-source-icon.png)

<a id="cc-postgresql-source-setup-connection"></a>

#### Step 4: Enter the connector details

#### NOTE
* Make sure you have all your [prerequisites](#cc-postgresql-source-prereqs) completed.
* An asterisk ( \* ) designates a required entry.

At the **Postgres Source Connector** screen, complete the following:

### Define a topic prefix

In the **Topic prefix** field, define a topic prefix your connector will
use to publish to Kafka topics. The connector will Kafka topics using the
following naming convention: `<topic.prefix><tableName>`.

#### IMPORTANT
If you are configuring granular access using a [service account](service-account.md#s3-cloud-service-account), and you leave the optional **Topic prefix**
(`topic.prefix`) configuration property empty, you must grant ACL
`CREATE` and `WRITE` access to all the Kafka topics or create [RBAC
role bindings](managed-connector-rbac.md#managed-connector-rbac). To add ACLs, you use the (\*)
wildcard in the ACL entries as shown in the following examples.

```bash
confluent kafka acl create --allow --service-account
"<service-account-id>" --operation create --topic "*"
```

```bash
confluent kafka acl create --allow --service-account
"<service-account-id>" --operation write --topic "*"
```

### Kafka access

1. Select the way you want to provide **Kafka Cluster credentials**. You can
   choose one of the following options:
   - **My account**: This setting allows your connector to globally access everything
     that you have access to. With a user account, the connector uses an API key and
     secret to access the Kafka cluster. This option is not recommended for production.
   - **Service account**: This setting limits the access for your connector by using a
     [service account](service-account.md#s3-cloud-service-account). This option is recommended for
     production.
   - **Use an existing API key**: This setting allows you to specify an API key and a
     secret pair. You can use an existing pair or create a new one. This method is not
     recommended for production environments.

   #### NOTE
   Freight clusters support only service accounts for Kafka authentication.
2. Click **Continue**.

### Authentication

1. Configure the authentication properties:

   **Authentication method**
   - **Authentication method**: How Confluent Cloud authenticates with Azure or Google Cloud.

     Allowed values are:
     * `Password`
     * `Microsoft Entra ID application`
     * `Google service account impersonation`
   - **Use secret manager**: Fetch sensitive configuration values from a secret manager.
   - **Provider Integration**: The provider integration Confluent Cloud uses to access your resource.
   - **Database AWS region**: The AWS region of your RDS or Aurora database
     instance, for example `us-east-1`. Required
     when the authentication method is `IAM Roles`.

   **Secret manager configuration**
   - **Secret manager**: Select the secret manager to use for retrieving sensitive data.
   - **Configurations from Secret manager**: Select the configurations whose values Confluent Cloud should fetch from the secret manager.
   - **Provider Integration**: The provider integration Confluent Cloud uses to access your resource.

   **How should we connect to your database?**
   - **Connection host**: The JDBC connection host. Do not include
     `jdbc:xxxx://` in the connection hostname property. An example of
     a connection hostname property is `database-1.123abc456ecs2.us-west-2.rds.amazonaws.com`.
     Depending on the service environment, certain network access
     limitations may exist. For details, see [Manage Networking for Confluent Cloud Connectors](networking/internet-resource.md#clusters-connect-cloud).
   - **Connection port**: JDBC connection port for PostgreSQL.
   - **Connection user**: JDBC connection user for PostgreSQL.
   - **Connection password**: JDBC connection password for PostgreSQL.
   - **Database name**: JDBC database name for PostgreSQL.
   - **SSL mode**: The SSL mode to use to connect to your database. Possible options
     are `prefer`, `require`, `verify-ca`, and `verify-full`.
     - `prefer` (default):  Attempts to use a secure (encrypted) connection first and, failing
       that, an unencrypted connection.
     - `require`:  Uses a secure (encrypted) connection, and fails if one cannot be established,
       but does not perform certificate validation on the server.
     - `verify-ca`: Uses SSL/TLS for encryption and performs certificate verification,
       but does not perform hostname verification.
     - `verify-full`: Uses SSL/TLS for encryption, certificate verification, and hostname verification.
   - **SSL root cert**: The server root certification file used for
     certificate validation. Only required if using `verify-ca` or
     `verify-full` SSL mode.
   - **SSL client cert**: The client certificate file used for mutual TLS authentication.
     Required when the database server requires client certificate authentication.
     Must be a PEM encoded X509v3 certificate.
   - **SSL client key**: The client private key file used for mutual TLS authentication.
     Required when the database server requires client certificate authentication.
     Must be in PKCS-8 DER format.
2. Click **Continue**.

### Configuration

- **Table names (Deprecated)**: (Deprecated) List of tables to include when copying data. Use a comma-separated list
  to specify multiple tables (for example, "User, Address, Email").
  Since this configuration is deprecated, use `table.include.list`.
- **Table include list**: List of tables to include when copying data. Use a
  comma-separated list of regular expressions or fully qualified table names
  to specify multiple tables (for example, `public.users, public.orders` or
  `.*users.*, .*orders.*`). For PostgreSQL, use schema.table format and do not include
  database name in the fully qualified name (for example, `public.customers`).
- **Table types**: By default, the JDBC connector will only detect
  tables with type `TABLE` from the source database. This config
  allows a command separated list of table types to extract.
- **Table exclude list**: A comma-separated list of regular expressions that match the fully qualified
  names of tables to be excluded from copying. Use a comma-separated list to
  specify multiple regular expressions. Table names are case-sensitive.
  For example, `table.exclude.list: schema1.customer.*,schema2.order.*`.
  If specified, `table.whitelist` cannot not be set.
- **Database timezone**: Name of the JDBC timezone used in the
  connector when querying with time-based criteria. Defaults to
  `UTC.`

**Output messages**

- **Select output record value format**: Select the **output record value format** (data going to the Kafka
  topic): AVRO, JSON, JSON_SR (JSON Schema), or PROTOBUF. [Schema Registry](../get-started/schema-registry.md#cloud-sr-config) must be enabled to use a Schema Registry-based format (for
  example, AVRO, JSON_SR, or PROTOBUF).

### **Show advanced configurations**

- **Schema context**: Select a schema context to use for this connector, if using
  a schema-based data format. This property defaults to the **Default** context,
  which configures the connector to use the default schema set up for Schema Registry in your
  Confluent Cloud environment. A schema context allows you to use separate schemas (like
  schema sub-registries) tied to topics in different Kafka clusters that share the
  same Schema Registry environment. For example, if you select a non-default context, a
  **Source** connector uses only that schema context to register a schema and a
  **Sink** connector uses only that schema context to read from. For more
  information about setting up a schema context, see [What are schema contexts and when should you use them?](../sr/faqs-cc.md#faq-schema-contexts).
- **Mode**: The mode for updating a table each time it is polled.
  Defaults to `bulk` mode.
- **Table to timestamp columns mappings**: A comma-separated list of table regex to timestamp columns mappings. On specifying multiple timestamp columns, COALESCE SQL function would be used to find out the effective timestamp for a row. Expected format is `regex1:[col1|col2],regex2:[col3]`. Regexes would be matched against the fully qualified table names. Identifier names are case sensitive. Every table included for capture should match exactly one of the provided mappings. An example for a valid input would be `.*\.customers.*:[updated_at|modified_at],.*\.orders.*:[changed_at]`.
- **Numeric Mapping**: Map NUMERIC values by precision and
  optionally scale to integral or decimal types.
- **Table to incrementing column mappings**: A comma-separated list of table regex to incrementing column mappings.
  Expected format is `regex1:col1,regex2:col2`. Regexes would be matched
  against the fully qualified table names. Identifier names are case sensitive.
  Every table included for capture should match exactly one of the provided mappings.
  An example for a valid input would be `.*\.customers.*:id,.*\.orders.*:order_id`.
- **Quote SQL Identifiers**: When to quote table names, column
  names, and other identifiers in SQL statements. For backward
  compatibility, the default value is `ALWAYS`.
- **Timestamp column name (Deprecated)**: (deprecated) Comma-separated list of one or more
  timestamp columns to detect new or modified rows using the
  COALESCE SQL function. Rows whose first non-null timestamp value
  is greater than the largest previous timestamp value seen will be
  discovered with each poll. At least one column should not be
  nullable.

  #### NOTE
  This configuration is deprecated. Use timestamp column mapping (`timestamp.columns.mapping`)
  instead of timestamp column name.
- **Initial timestamp**: The epoch timestamp used for initial
  queries that use timestamp criteria. The value `-1` sets the
  initial timestamp to the current time. If not specified, the
  connector retrieves all data. Once the connector has managed to
  successfully record a source offset, this property has no effect
  even if changed to a different value later on.
- **Date Calendar System**: The time elapsed from epoch populated in the end table topic for DATE or
  TIMESTAMP type columns can have two different values based upon the Calendar
  used to interpret it.

  This is defaulted to LEGACY for backward compatibility.
  - If you use `LEGACY` (the default), the connector uses the hybrid
    Gregorian/Julian calendar. This matches the default behavior of older
    Java date and time APIs.
  - If you use `PROLEPTIC_GREGORIAN`, the connector uses the proleptic Gregorian
    calendar (which extends Gregorian rules backward indefinitely) and does not apply
    the 1582 cutover. This matches the behavior of modern Java date/time APIs (java.time).

  #### WARNING
  Changing this configuration on an existing connector might lead to a drift
  in the Kafka topic record values.
- **Incrementing column name (Deprecated)**: (Deprecated legacy configuration. Use `incrementing.column.mapping` for new implementations.)
  The name of the strictly incrementing column to use to detect new rows. Any empty value
  indicates the column should be autodetected by looking for an auto-incrementing column.
  This column may not be nullable.
- **Transaction Isolation Level**: Isolation level determines how
  transaction integrity is visible to other users and systems.
  `DEFAULT` is the default isolation level configured at the
  database server. `READ_UNCOMMITTED` is the lowest isolation
  level. At this level, a transaction may see changes that are not
  committed (that is, dirty reads) made by other transactions.
  `READ_COMMITTED` guarantees that any data read is already
  committed at the moment it is read. `REPEATABLE_READ` adds to
  the guarantees of the `READ_COMMITTED` level with the addition
  of also guaranteeing that any data read cannot change, if the
  transaction reads the same data again. However, phantom reads are
  possible. `SERIALIZABLE` is the highest isolation level. In
  addition to everything `REPEATABLE_READ` guarantees,
  `SERIALIZABLE` also eliminates phantom reads.
- **Schema pattern**: Schema pattern to fetch table metadata from
  the database.
- **Timestamp granularity for timestamp columns**: Defines the
  granularity of the Timestamp column. `CONNECT_LOGICAL`
  (default) represents timestamp values using Connect’s built-in
  representations. `MICROS_LONG` represents timestamp values as
  microseconds since the epoch (UNIX epoch time).
  `MICROS_STRING` represents timestamp values as microseconds
  since the epoch in string format. `MICROS_ISO_DATETIME_STRING`
  represents timestamp values in ISO format
  `yyyy-MM-dd'T'HH:mm:ss.SSSSSS`. `NANOS_LONG` represents
  timestamp values as nanoseconds (ns) since the epoch (UNIX epoch
  time). `NANOS_STRING` represents timestamp values as ns since
  the epoch in string format. `NANOS_ISO_DATETIME_STRING`
  represents timestamp values in ISO format
  `yyyy-MM-dd'T'HH:mm:ss.n`.
- **Poll interval (ms)**: Set the time in milliseconds to wait for new change events when no data is returned. Default is `500` ms.
- **Max rows per batch**: The maximum number of rows to include in a
  single batch when polling for new data. This setting can be used
  to limit the amount of data buffered internally in the connector.
- **Delay interval (ms)**: The amount of time to wait after a row
  with a certain timestamp appears before we include it in the
  result. You may choose to add some delay to allow transactions
  with an earlier timestamp to complete.

**Additional Configs**

- **Value Converter Replace Null With Default**: Specifies whether to replace fields that have a default value and that are null to the default value. When set to `true`, the connector uses the default value; otherwise, it uses `null`. Applies to the `JSON` converter.
- **Value Converter Reference Subject Name Strategy**: Sets the subject reference name strategy for values. Valid entries are `DefaultReferenceSubjectNameStrategy` or `QualifiedReferenceSubjectNameStrategy`. You can use this strategy only with `PROTOBUF` format; the default strategy is `DefaultReferenceSubjectNameStrategy`.
- **Value Converter Schemas Enable**: Includes schema within each of the serialized values. Input messages must contain `schema` and `payload` fields and must not contain additional fields. For plain `JSON` data, set this to `false`. Applies to the `JSON` converter.
- **Errors Tolerance**: Use this property to configure the connector’s error handling behavior.

  #### WARNING
  Use this property with caution for sink connectors, as it can lead to data loss. If you set this property to `all`, the connector does not fail on errant records, but logs them (and sends to DLQ for sink connectors) and continues processing. If you set this property to `none`, the connector task fails on errant records.
- **Value Converter Ignore Default For Nullables**: When set to `true`, this property ensures that the corresponding record in Kafka is `null`, instead of showing the default column value. Applies to the `AVRO`, `PROTOBUF`, and `JSON_SR` converters.
- **Value Converter Decimal Format**: Specifies the `JSON` or `JSON_SR` serialization format for Connect `DECIMAL` logical type values with two allowed literals:
  `BASE64` to serialize `DECIMAL` logical types as base64 encoded binary data, and
  `NUMERIC` to serialize `DECIMAL` logical type values in `JSON` or `JSON_SR` as a number representing the decimal value.
- **Key Converter Schema ID Serializer**: The class name of the schema ID serializer for keys. This is used to serialize schema IDs in the message headers.
- **Value Converter Connect Meta Data**: Enables the Connect converter to add its metadata to the output schema. Applies to Avro converters.
- **Value Converter Value Subject Name Strategy**: Determines how to construct the subject name under which the value schema is registered with Schema Registry.
- **Key Converter Key Subject Name Strategy**: Determines how to construct the subject name for key schema registration.
- **Value Converter Schema ID Serializer**: The class name of the schema ID serializer for values. This is used to serialize schema IDs in the message headers.

**Auto-restart policy**

- **Enable Connector Auto-restart**: Enables the auto-restart behavior of the connector and its
  task in the event of user-actionable errors. Defaults to `true`, enabling the connector to
  automatically restart in case of user-actionable errors. Set this property to `false` to
  disable auto-restart for failed connectors. If disabled, you must manually restart the connector.

**Database details**

- **Query Config**: If specified, the connector uses this custom SQL query to read source records, which allows for operations like joining tables or selecting subsets of data. Providing a query instructs the connector to read only the result set instead of performing a full table copy. This configuration supports different query modes with the incremental query properly constructed by appending a `WHERE` clause (for more information, see [Incremental Query Modes](https://docs.confluent.io/kafka-connectors/jdbc/current/source-connector/overview.html#incremental-query-modes)). Note that only `SELECT` statements are supported. Always adhere to security best practices, like enforcing strict authorization using [managed connector RBAC](https://docs.confluent.io/cloud/current/connectors/managed-connector-rbac.html#managed-connector-rbac), applying appropriate [network access controls](https://docs.confluent.io/cloud/current/security/access-control/ip-filtering/manage-ip-filters.html) for control plane APIs, and following the principle of least privilege when provisioning identities or credentials for any third-party systems.

**Transforms**

- **Single Message Transformations**: To add a new SMT, see [Add transforms](single-message-transforms.md#cc-single-message-transforms-ui).
  For more information about unsupported SMTs, see
  [Unsupported transformations](single-message-transforms.md#cc-single-message-transforms-unsupported-transforms).

**Processing position**

- **Set offsets**: Click **Set offsets** to define a specific offset for
  this connector to begin procession data from. For more information
  on managing offsets, see [Manage offsets](offsets.md#connect-custom-offsets).

For all property values and definitions, see [Configuration Properties](#cc-postgresql-source-config-properties).

- Click **Continue**.

### Sizing

Based on the number of topic partitions you select, you will be provided
with a recommended number of tasks.

1. To change the number of tasks, use the Range Slider to select the
   desired number of tasks.
2. Click **Continue**.

### Review and Launch

1. Verify the connection details by previewing the running configuration.
   ![Launch the connector](images/ccloud-postgresql-source-launch-connector.png)
2. After you’ve validated that the properties are configured to your
   satisfaction, click **Launch**.

   The status for the connector should go from **Provisioning** to
   **Running**.
   ![Launch the connector](images/ccloud-postgresql-source-status.png)

#### Step 5: Check the Kafka topic

After the connector is running, verify that messages are populating your Kafka topic.

For more information and examples to use with the Confluent Cloud API for Connect,
see the [Confluent Cloud API for Connect Usage Examples](connect-api-section.md#ccloud-connect-api) section.

<a id="cc-postgresql-source-cli-quickstart"></a>

### Using the Confluent CLI

Complete the following steps to set up and run the connector using the Confluent CLI.

#### NOTE
Make sure you have all your [prerequisites](#cc-postgresql-source-prereqs) completed.

#### Step 1: List the available connectors

Enter the following command to list available connectors:

```none
confluent connect plugin list
```

#### Step 2: List the connector configuration properties

Enter the following command to show the connector configuration properties:

```none
confluent connect plugin describe <connector-plugin-name>
```

The command output shows the required and optional configuration properties.

#### Step 3: Create the connector configuration file

Create a JSON file that contains the connector configuration properties. The
following examples show the required connector properties for both password and
IAM role-based authentication.

Using password authentication:

```none
{
    "name" : "confluent-postgresql-source",
    "connector.class": "PostgresSource",
    "kafka.api.key": "<my-kafka-api-key>",
    "kafka.auth.mode": "KAFKA_API_KEY",
    "kafka.api.secret" : "<my-kafka-api-secret>",
    "topic.prefix" : "postgresql_",
    "ssl.mode" : "prefer",
    "connection.host" : "<my-database-endpoint>",
    "connection.port" : "5432",
    "connection.user" : "postgres",
    "connection.password": "<my-database-password>",
    "db.name": "postgres",
    "table.include.list": ".*passengers.*",
    "timestamp.columns.mapping": ".*passengers.*:[created_at]",
    "output.data.format": "JSON",
    "db.timezone": "UTC",
    "tasks.max" : "1"
}
```

Using IAM role-based authentication:

```none
{
    "name" : "confluent-postgresql-source",
    "connector.class": "PostgresSource",
    "kafka.api.key": "<my-kafka-api-key>",
    "kafka.auth.mode": "KAFKA_API_KEY",
    "kafka.api.secret" : "<my-kafka-api-secret>",
    "topic.prefix" : "postgresql_",
    "ssl.mode" : "prefer",
    "connection.host" : "<my-database-endpoint>",
    "connection.port" : "5432",
    "connection.user" : "db_user_with_iam_login",
    "db.name": "postgres",
    "table.include.list": ".*passengers.*",
    "timestamp.columns.mapping": ".*passengers.*:[created_at]",
    "output.data.format": "JSON",
    "db.timezone": "UTC",
    "tasks.max" : "1",
    "authentication.method": "IAM Roles",
    "provider.integration.id": "dlz-f3a90de",
    "database.aws.region": "us-west-2"
}
```

Note the following property definitions:

* `"name"`: Sets a name for your new connector.
* `"connector.class"`: Identifies the connector plugin name.

* `"kafka.auth.mode"`: Identifies the connector authentication mode you want to use. There are two options: `SERVICE_ACCOUNT` or `KAFKA_API_KEY` (the default). To use an API key and secret, specify the configuration properties `kafka.api.key` and `kafka.api.secret`, as shown in the example configuration (above).  To use a [service account](service-account.md#s3-cloud-service-account), specify the **Resource ID** in the property `kafka.service.account.id=<service-account-resource-ID>`. To list the available service account resource IDs, use the following command:
  ```bash
  confluent iam service-account list
  ```

  For example:
  ```bash
  confluent iam service-account list

     Id     | Resource ID |       Name        |    Description
  +---------+-------------+-------------------+-------------------
     123456 | sa-l1r23m   | sa-1              | Service account 1
     789101 | sa-l4d56p   | sa-2              | Service account 2
  ```

* `"topic.prefix"`: Enter a topic prefix. The connector automatically creates
  Kafka topics using the naming convention: `<topic.prefix><tableName>`. The
  tables are created with the properties:
  `topic.creation.default.partitions=1` and
  `topic.creation.default.replication.factor=3`. If you want to create topics
  with specific settings, create the topics before running this connector. If
  you are configuring granular access using a service account, you must set up
  [ACLs for the topic prefix](service-account.md#cloud-service-account-jdbc-mongo-acls).

  #### IMPORTANT
  If you are configuring granular access using a [service account](service-account.md#s3-cloud-service-account), and you leave the optional **Topic prefix**
  (`topic.prefix`) configuration property empty, you must grant ACL
  `CREATE` and `WRITE` access to all the Kafka topics or create [RBAC
  role bindings](managed-connector-rbac.md#managed-connector-rbac). To add ACLs, you use the (\*)
  wildcard in the ACL entries as shown in the following examples.
  ```bash
  confluent kafka acl create --allow --service-account
  "<service-account-id>" --operation create --topic "*"
  ```

  ```bash
  confluent kafka acl create --allow --service-account
  "<service-account-id>" --operation write --topic "*"
  ```
* The following provides more information about how to use the `ssl.mode` property:
  - `prefer` (default): Attempts to use an encrypted connection. Falls back to
    an unencrypted connection if SSL is unavailable. Used when `ssl.mode` is not
    added to the connector configuration. Does not perform Certification Authority
    (CA) validation.
  - `require`: Uses a secure (encrypted) connection. The connector fails if a
    secure connection cannot be established. Does not perform Certification
    Authority (CA) validation.
  - `verify-ca`: Similar to `require`, but also verifies the
    server TLS certificate against the configured Certificate Authority
    (CA) certificates. Fails if no valid matching CA certificates are found.
  - `verify-full`: similar to `verify-ca`, but also verifies that
    the server certificate matches the host to which the connection is
    attempted.

  If you choose `verify-ca` or `verify-full`, use the property
  `ssl.rootcertfile` and provide the server root certificate as a
  base64-encoded `data:` URL. For example,
  `"ssl.rootcertfile": "data:application/x-x509-ca-cert;base64,LS0tLS1CRUdJTi..."`.

  To authenticate the connector to the database with mTLS, provide
  `ssl.clientcertfile` and `ssl.clientkeyfile`. Client authentication
  works with any `ssl.mode`. Provide the client certificate
  (PEM-encoded X.509v3) in `ssl.clientcertfile` and the corresponding
  private key (PKCS-8 DER format) in `ssl.clientkeyfile`, each as a
  base64-encoded `data:` URL.

  For details and examples, see
  [How do I configure SSL/TLS certificates for secure PostgreSQL connections?](#cc-postgresql-source-ssl-tls-faq).
* `"authentication.method"`: Set to `"IAM Roles"` to use AWS IAM role-based authentication. Other supported values are `"Password"`, `"Microsoft Entra ID application"`, and `"Google service account impersonation"`.
* `"provider.integration.id"`: The ID of the provider integration resource that contains the IAM role, service account, or application configuration. Required for every authentication method except `"Password"`.
* `"database.aws.region"`: The AWS region of the PostgreSQL database server for RDS/Aurora. Only applicable when using IAM role-based authentication.
* `"connection.password"`: Password of the PostgreSQL database user that has the required authorization. Only applicable when using password-based authentication.
* The following provides more information about how to use the `timestamp.column.name` and\`\`incrementing.column.name\`\` properties.
  - Enter a `timestamp.column.name` to enable *timestamp* mode. This mode uses a timestamp (or timestamp-like) column to detect new and modified rows. This assumes the column is updated with each write, and that values are monotonically incrementing, but not necessarily unique.
  - Enter both a `timestamp.column.name` and an `incrementing.column.name` to enable *timestamp+incrementing* mode. This mode uses two columns, a timestamp column that detects new and modified rows, and a strictly incrementing column which provides a globally unique ID for updates so each row can be assigned a unique stream offset. By default, the connector only detects `table.types` with type `TABLE` from the source database. Enter `VIEW` for virtual tables created from joining one or more tables. Enter `ALIAS` for tables with a shortened or temporary name.
* If you define a schema pattern in your database, you need to enter the `schema.pattern` property to fetch table metadata from the database. `""` retrieves table metadata for tables not using a schema. `null` (default) indicates that the schema name is not used to narrow the search and that all table metadata is fetched, regardless of the schema.
* `"output.data.format"`: Sets the output Kafka record value format (data coming from the connector). Valid entries are **AVRO**, **JSON_SR**, **PROTOBUF**, **JSON**, or **STRING**. You must have Confluent Cloud Schema Registry configured if using a schema-based message format (for example, Avro, JSON_SR (JSON Schema), or Protobuf).
* `"db.timezone"`: Identifies the database timezone. This can be any valid database timezone. The default is **UTC**. For more information, see this [list of database timezones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).

**SMTs**: For details about adding SMTs using the Confluent CLI, see the [Single Message Transformations](single-message-transforms.md#cc-single-message-transforms) documentation.

See [Configuration Properties](#cc-postgresql-source-config-properties) for all property values and definitions.

#### Step 4: Load the properties file and create the connector

Enter the following command to load the configuration and start the connector:

```none
confluent connect cluster create --config-file <file-name>.json
```

For example:

```none
confluent connect cluster create --config-file postgres-source.json
```

Example output:

```none
Created connector confluent-postgresql-source lcc-ix4dl
```

#### Step 5: Check the connector status

Enter the following command to check the connector status:

```none
confluent connect cluster list
```

Example output:

```none
ID          |            Name             | Status  |  Type
+-----------+-----------------------------+---------+-------+
lcc-ix4dl   | confluent-postgresql-source | RUNNING | source
```

#### Step 6: Check the Kafka topic.

After the connector is running, verify that messages are populating your Kafka topic.

For more information and examples to use with the Confluent Cloud API for Connect,
see the [Confluent Cloud API for Connect Usage Examples](connect-api-section.md#ccloud-connect-api) section.

<a id="cc-postgresql-source-aws-iam-auth"></a>

## AWS IAM Authentication Setup

To use AWS IAM role-based authentication with the PostgreSQL Source
connector, configure your PostgreSQL database as described in the following
sections. The same setup works for both Amazon RDS PostgreSQL and Aurora
PostgreSQL.

### Database setup

1. Enable IAM authentication on your RDS or Aurora instance/cluster (the
   **Database authentication** option in the AWS Console, or set
   `--enable-iam-database-authentication` with the AWS CLI). For an
   existing instance/cluster, this change applies immediately.
2. Connect to the database as the master/superuser and grant the IAM login role
   to the database user the connector uses:
   ```sql
   GRANT rds_iam TO db_user_with_iam_login;
   ```

   Ensure `db_user_with_iam_login` already has the `SELECT` privileges the connector needs on the tables it polls. If those tables are in a schema other than `public`, also grant `USAGE` on that schema:
   ```sql
   GRANT USAGE ON SCHEMA <schema> TO db_user_with_iam_login;
   ```

### IAM permission policy

Attach the following IAM permission policy to the IAM role you have integrated
with provider integration. The same policy shape applies to both RDS instances
and Aurora clusters, only the resource identifier differs.

For RDS PostgreSQL (use the per-instance `DbiResourceId`, an immutable string
of the form `db-XXXXXXXXXXXXXXXXXXXXXXXXXX`, not the human-friendly DB
instance identifier):

```json
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "rds-db:connect",
      "Resource": [
        "arn:aws:rds-db:<region>:<account-id>:dbuser:<db-instance-resource-id>/<db-username>"
      ]
    }
  ]
}
```

For Aurora PostgreSQL (use the cluster `DbClusterResourceId`, an immutable
string of the form `cluster-XXXXXXXXXXXXXXXXXXXXXXXXXX`, not the cluster
identifier or the writer-instance resource ID):

```json
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "rds-db:connect",
      "Resource": [
        "arn:aws:rds-db:<region>:<account-id>:dbuser:<db-cluster-resource-id>/<db-username>"
      ]
    }
  ]
}
```

Replace the `region`, `account-id`, `db-instance-resource-id` (for RDS)
or `db-cluster-resource-id` (for Aurora), and `db-username` placeholders
with the values for your environment. You can find the resource ID on the
**Configuration** tab of your RDS instance or Aurora cluster in the AWS
Console, or by using `aws rds describe-db-instances --query
'DBInstances[].DbiResourceId'` / `aws rds describe-db-clusters --query
'DBClusters[].DbClusterResourceId'`. The IAM token the connector generates is
signed against the database hostname, so ensure the connector’s
`connection.host` is the canonical AWS-managed RDS or Aurora endpoint.

<a id="cc-postgresql-source-config-properties"></a>

## Configuration Properties

Use the following configuration properties with the fully managed connector. For
self-managed connector property definitions and other details, see the connector
docs in [Self-managed connectors for Confluent Platform](/platform/current/connect/kafka_connectors.html).

### How should we connect to your data?

`name`
: Sets a name for your connector.
  <br/>
  * Type: string
  * Valid Values: A string at most 64 characters long
  * Importance: high

### Kafka Cluster credentials

`kafka.auth.mode`
: Kafka Authentication mode. It can be one of KAFKA_API_KEY or SERVICE_ACCOUNT. It defaults to KAFKA_API_KEY mode, whenever possible.
  <br/>
  * Type: string
  * Valid Values: SERVICE_ACCOUNT, KAFKA_API_KEY
  * Importance: high

`kafka.api.key`
: Kafka API Key. Required when kafka.auth.mode==KAFKA_API_KEY.
  <br/>
  * Type: password
  * Importance: high

`kafka.service.account.id`
: The Service Account that will be used to generate the API keys to communicate with Kafka Cluster.
  <br/>
  * Type: string
  * Importance: high

`kafka.api.secret`
: Secret associated with Kafka API key. Required when kafka.auth.mode==KAFKA_API_KEY.
  <br/>
  * Type: password
  * Importance: high

### Schema Config

`schema.context.name`
: Add a schema context name. A schema context represents an independent scope in Schema Registry. It is a separate sub-schema tied to topics in different Kafka clusters that share the same Schema Registry instance. If not used, the connector uses the default schema configured for Schema Registry in your Confluent Cloud environment.
  <br/>
  * Type: string
  * Default: default
  * Importance: medium

### How do you want to prefix table names?

`topic.prefix`
: Prefix to prepend to table names to generate the name of the Apache Kafka® topic to publish data to.
  <br/>
  * Type: string
  * Importance: high

### Authentication method

`authentication.method`
: How Confluent Cloud authenticates with the database. Allowed values - `Password`, `Microsoft Entra ID application`, `Google service account impersonation` and `IAM Roles`.
  <br/>
  * Type: string
  * Default: Password
  * Valid Values: Google service account impersonation, IAM Roles, Microsoft Entra ID application, Password
  * Importance: high

`secret.manager.enabled`
: Fetch sensitive configuration values from a secret manager.
  <br/>
  * Type: boolean
  * Default: false
  * Importance: high

`provider.integration.id`
: Select an existing integration that has access to your resource.
  <br/>
  * Type: string
  * Importance: high

`database.aws.region`
: The AWS region of your RDS or Aurora database instance, for example `us-east-1`. Required when the authentication method is `IAM Roles`.
  <br/>
  * Type: string
  * Default: “”
  * Importance: high

### Secret manager configuration

`secret.manager`
: Select the secret manager to use for retrieving sensitive data.
  <br/>
  * Type: string
  * Importance: high

`secret.manager.managed.configs`
: Select the configurations to fetch their values from the secret manager.
  <br/>
  * Type: list
  * Importance: high

`secret.manager.provider.integration.id`
: Select an existing provider integration that has access to your secret manager.
  <br/>
  * Type: string
  * Importance: high

### How should we connect to your database?

`connection.host`
: Depending on the service environment, certain network access limitations may exist. Make sure the connector can reach your service. Do not include [jdbc:xxxx://](jdbc:xxxx://) in the connection hostname property (e.g. database-1.abc234ec2.us-west.rds.amazonaws.com).
  <br/>
  * Type: string
  * Importance: high

`connection.port`
: JDBC connection port.
  <br/>
  * Type: int
  * Valid Values: [0,…,65535]
  * Importance: high

`connection.user`
: JDBC connection user.
  <br/>
  * Type: string
  * Importance: high

`connection.password`
: JDBC connection password.
  <br/>
  * Type: password
  * Importance: high

`db.name`
: JDBC database name.
  <br/>
  * Type: string
  * Importance: high

`ssl.mode`
: What SSL mode should we use to connect to your database. `prefer` allows for the connection to not be encrypted and `require` allows for the connection to be encrypted but does not do certificate validation on the server. `verify-ca` and `verify-full` require a file containing SSL CA certificate to be provided. The server’s certificate will be verified to be signed by one of these authorities.\`\`verify-ca\`\` will verify that the server certificate is issued by a trusted CA. `verify-full` will verify that the server certificate is issued by a trusted CA and that the server hostname matches that in the certificate. Client authentication is not performed.
  <br/>
  * Type: string
  * Default: prefer
  * Importance: high

`ssl.rootcertfile`
: The server root cert file used for certificate validation. Only required if using verify-ca or verify-full ssl mode. Must be a PEM encoded X509v3 certificate
  <br/>
  * Type: password
  * Default: [hidden]
  * Importance: low

`ssl.clientcertfile`
: The client certificate file used for mutual TLS authentication. Required when the database server requires client certificate authentication. Must be a PEM encoded X509v3 certificate
  <br/>
  * Type: password
  * Default: [hidden]
  * Importance: low

`ssl.clientkeyfile`
: The client private key file used for mutual TLS authentication. Required when the database server requires client certificate authentication. Must be in PKCS-8 DER format.
  <br/>
  * Type: password
  * Default: [hidden]
  * Importance: low

### Database details

`table.whitelist`
: (Deprecated) List of tables to include in copying. Use a comma-separated list to specify multiple tables (for example: “User, Address, Email”). This is deprecated, please use table.include.list.
  <br/>
  * Type: list
  * Importance: medium

`table.include.list`
: A comma-separated list of regular expressions that match the fully-qualified names of tables to be copied. Use a comma-separated list to specify multiple regular expressions. Table names are case-sensitive. For example, `table.include.list: schema1.customer.*,schema2.order.*`. If specified, `table.whitelist` cannot be set. For PostgreSQL, use `schema.table` format and do not include database name in the fully-qualified name (for example, `public.customers`).
  <br/>
  * Type: list
  * Importance: medium

`table.exclude.list`
: A comma-separated list of regular expressions that match the fully-qualified names of tables to be excluded from copying. Use a comma-separated list to specify multiple regular expressions. Table names are case-sensitive. For example, `table.exclude.list: schema1.customer.*,schema2.order.*`. If specified, `table.whitelist` cannot not be set. For PostgreSQL, use `schema.table` format and do not include database name in the fully-qualified name (for example, `public.customers`).
  <br/>
  * Type: list
  * Importance: medium

`query`
: If specified, the connector uses this custom SQL query to read source records, which allows for operations like joining tables or selecting subsets of data. Providing a query instructs the connector to read only the result set instead of performing a full table copy. This configuration supports different query modes with the incremental query properly constructed by appending a WHERE clause (For more information, Incremental Query Modes - <https://docs.confluent.io/kafka-connectors/jdbc/current/source-connector/overview.html#incremental-query-modes>). When specified with the different query modes, please do not add any or ORDER BY or GROUP BY clauses in the outer SELECT query as the connector adds them by default the incrementing or timestamp columns specified. Note that only SELECT statements are supported. Always adhere to security best practices, like enforcing strict authorization via <https://docs.confluent.io/cloud/current/connectors/managed-connector-rbac.html#managed-connector-rbac>, applying appropriate :ref: network access controls - <https://docs.confluent.io/cloud/current/security/access-control/ip-filtering/manage-ip-filters.html> for control plane APIs, and following the principle of least privilege when provisioning identities or credentials for any third-party systems.
  <br/>
  * Type: password
  * Default: [hidden]
  * Importance: medium

`table.types`
: By default, the JDBC connector will only detect tables with type TABLE from the source Database. This config allows a command separated list of table types to extract.
  <br/>
  * Type: list
  * Default: TABLE
  * Importance: medium

`schema.pattern`
: Schema pattern to fetch table metadata from the database.
  <br/>
  * Type: string
  * Importance: high

`db.timezone`
: Name of the JDBC timezone used in the connector when querying with time-based criteria. Defaults to UTC.
  <br/>
  * Type: string
  * Default: UTC
  * Importance: medium

`numeric.mapping`
: Map NUMERIC values by precision and optionally scale to integral or decimal types. Use `none` if all NUMERIC columns are to be represented by Connect’s DECIMAL logical type. Use `best_fit` if NUMERIC columns should be cast to Connect’s INT8, INT16, INT32, INT64, or FLOAT64 based upon the column’s precision and scale. Use `best_fit_eager_double` if, in addition to the properties of best_fit described above, it is desirable to always cast NUMERIC columns with scale to Connect FLOAT64 type, despite potential of loss in accuracy. Use `precision_only` to map NUMERIC columns based only on the column’s precision assuming that column’s scale is 0. The `none` option is the default, but may lead to serialization issues with Avro since Connect’s DECIMAL type is mapped to its binary representation, and `best_fit` will often be preferred since it maps to the most appropriate primitive type.
  <br/>
  * Type: string
  * Default: none
  * Importance: low

`timestamp.granularity`
: Define the granularity of the Timestamp column. CONNECT_LOGICAL (default): represents timestamp values using Kafka Connect built-in representations. MICROS_LONG: represents timestamp values as micros since epoch. MICROS_STRING: represents timestamp values as micros since epoch in string. MICROS_ISO_DATETIME_STRING: uses iso format for timestamps in micros. NANOS_LONG: represents timestamp values as nanos since epoch. NANOS_STRING: represents timestamp values as nanos since epoch in string. NANOS_ISO_DATETIME_STRING: uses iso format
  <br/>
  * Type: string
  * Default: CONNECT_LOGICAL
  * Importance: low

### Mode

`mode`
: The mode for updating a table each time it is polled. `BULK`: perform a bulk load of the entire table each time it is polled. `TIMESTAMP`: use a timestamp (or timestamp-like) column to detect new and modified rows. This assumes the column is updated with each write, and that values are monotonically incrementing, but not necessarily unique. `INCREMENTING`: use a strictly incrementing column on each table to detect only new rows. Note that this will not detect modifications or deletions of existing rows. `TIMESTAMP AND INCREMENTING`: use two columns, a timestamp column that detects new and modified rows and a strictly incrementing column which provides a globally unique ID for updates so each row can be assigned a unique stream offset.
  <br/>
  * Type: string
  * Default: “”
  * Importance: medium

`timestamp.columns.mapping`
: A comma-separated list of table regex to timestamp columns mappings. On specifying multiple timestamp columns, COALESCE SQL function would be used to find out the effective timestamp for a row. Expected format is `regex1:[col1|col2],regex2:[col3]`. Regexes would be matched against the fully-qualified table names. Identifier names are case sensitive. Every table included for capture should match exactly one of the provided mappings. An example for a valid input would be `.*\.customers.*:[updated_at|modified_at],.*\.orders.*:[changed_at]`.
  <br/>
  * Type: list
  * Importance: medium

`incrementing.column.mapping`
: A comma-separated list of table regex to incrementing column mappings. Expected format is `regex1:col1,regex2:col2`. Regexes would be matched against the fully-qualified table names. Identifier names are case sensitive. Every table included for capture should match exactly one of the provided mappings. An example for a valid input would be `.*\.customers.*:id,.*\.orders.*:order_id`.
  <br/>
  * Type: list
  * Importance: medium

`timestamp.column.name`
: (Deprecated legacy configuration. Use timestamp.columns.mapping for new implementations.) Comma separated list of one or more timestamp columns to detect new or modified rows using the COALESCE SQL function. Rows whose first non-null timestamp value is greater than the largest previous timestamp value seen will be discovered with each poll. At least one column should not be nullable.
  <br/>
  * Type: list
  * Importance: medium

`quote.sql.identifiers`
: When to quote table names, column names, and other identifiers in SQL statements. For backward compatibility, the default value is ALWAYS.
  <br/>
  * Type: string
  * Default: ALWAYS
  * Valid Values: ALWAYS, NEVER
  * Importance: medium

`incrementing.column.name`
: (Deprecated legacy configuration. Use incrementing.column.mapping for new implementations.) The name of the strictly incrementing column to use to detect new rows. Any empty value indicates the column should be autodetected by looking for an auto-incrementing column. This column may not be nullable.
  <br/>
  * Type: string
  * Default: “”
  * Importance: medium

`transaction.isolation.mode`
: Isolation level determines how transaction integrity is visible to other users and systems. `DEFAULT`: This is the default isolation level configured at the Database Server. `READ_UNCOMMITTED`: This is the lowest isolation level. At this level, one transaction may see dirty reads (that is, not-yet-committed changes made by other transactions). `READ_COMMITTED`: This level guarantees that any data read is already committed at the moment it is read. `REPEATABLE_READ`: In addition to the guarantees of the `READ_COMMITTED` level, this option also guarantees that any data read cannot change, if the transaction reads the same data again. However, phantom reads are possible. `SERIALIZABLE`: This is the highest isolation level. In addition to everything `REPEATABLE_READ` guarantees, it also eliminates phantom reads.
  <br/>
  * Type: string
  * Default: DEFAULT
  * Valid Values: DEFAULT, READ_COMMITTED, READ_UNCOMMITTED, REPEATABLE_READ, SERIALIZABLE
  * Importance: medium

`timestamp.initial`
: The epoch timestamp used for initial queries that use timestamp criteria. The value `-1` sets the initial timestamp to the current time. If not specified, the connector retrieves all data. Once the connector has managed to successfully record a source offset, this property has no effect even if changed to a different value later on.
  <br/>
  * Type: long
  * Valid Values: [-1,…]
  * Importance: medium

`date.calendar.system`
: The time elapsed from epoch populated in the end table topic for DATE or TIMESTAMP type columns can have two different values based upon the Calendar used to interpret it. If `LEGACY` is used, it will use the hybrid Gregorian/Julian calendar which was the default in the older java date time APIs. However, if `PROLEPTIC_GREGORIAN` is used, then it will use the proleptic gregorian calendar which extends the Gregorian rules backward indefinitely and does not apply the 1582 cutover. This matches the behavior of modern Java date/time APIs (java.time). This is defaulted to LEGACY for backward compatibility. Changing this configuration on an existing connector might lead to a drift in the kafka topic record values.
  <br/>
  * Type: string
  * Default: LEGACY
  * Importance: medium

### Connection details

`poll.interval.ms`
: Frequency in ms to poll for new data in each table.
  <br/>
  * Type: int
  * Default: 5000 (5 seconds)
  * Valid Values: [100,…]
  * Importance: high

`batch.max.rows`
: Maximum number of rows to include in a single batch when polling for new data. This setting can be used to limit the amount of data buffered internally in the connector.
  <br/>
  * Type: int
  * Default: 100
  * Valid Values: [1,…,5000]
  * Importance: low

`timestamp.delay.interval.ms`
: How long to wait after a row with a certain timestamp appears before we include it in the result. You may choose to add some delay to allow transactions with an earlier timestamp to complete. The first execution will fetch all available records (starting at timestamp 0) until current time minus the delay. Every following execution will get data from the last time we fetched until current time minus the delay.
  <br/>
  * Type: int
  * Default: 0
  * Valid Values: [0,…]
  * Importance: high

### Output messages

`output.data.format`
: Sets the output Kafka record value format. Valid entries are AVRO, JSON_SR, PROTOBUF, JSON, or STRING. Note that you need to have Confluent Cloud Schema Registry configured if using a schema-based message format like AVRO, JSON_SR, and PROTOBUF
  <br/>
  * Type: string
  * Default: JSON
  * Importance: high

### Number of tasks for this connector

`tasks.max`
: Maximum number of tasks for the connector.
  <br/>
  * Type: int
  * Valid Values: [1,…]
  * Importance: high

### Additional Configs

`header.converter`
: The converter class for the headers. This is used to serialize and deserialize the headers of the messages.
  <br/>
  * Type: string
  * Importance: low

`producer.override.compression.type`
: The compression type for all data generated by the producer. Valid values are none, gzip, snappy, lz4, and zstd.
  <br/>
  * Type: string
  * Importance: low

`producer.override.linger.ms`
: The producer groups together any records that arrive in between request transmissions into a single batched request. More details can be found in the documentation: [https://docs.confluent.io/platform/current/installation/configuration/producer-configs.html#linger-ms](https://docs.confluent.io/platform/current/installation/configuration/producer-configs.html#linger-ms).
  <br/>
  * Type: long
  * Valid Values: [100,…,1000]
  * Importance: low

`value.converter.allow.optional.map.keys`
: Allow optional string map key when converting from Connect Schema to Avro Schema. Applicable for Avro Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.auto.register.schemas`
: Specify if the Serializer should attempt to register the Schema.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.connect.meta.data`
: Allow the Connect converter to add its metadata to the output schema. Applicable for Avro Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.enhanced.avro.schema.support`
: Enable enhanced schema support to preserve package information and Enums. Applicable for Avro Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.enhanced.protobuf.schema.support`
: Enable enhanced schema support to preserve package information. Applicable for Protobuf Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.flatten.unions`
: Whether to flatten unions (oneofs). Applicable for Protobuf Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.generate.index.for.unions`
: Whether to generate an index suffix for unions. Applicable for Protobuf Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.generate.struct.for.nulls`
: Whether to generate a struct variable for null values. Applicable for Protobuf Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.int.for.enums`
: Whether to represent enums as integers. Applicable for Protobuf Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.latest.compatibility.strict`
: Verify latest subject version is backward compatible when use.latest.version is true.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.object.additional.properties`
: Whether to allow additional properties for object schemas. Applicable for JSON_SR Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.optional.for.nullables`
: Whether nullable fields should be specified with an optional label. Applicable for Protobuf Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.optional.for.proto2`
: Whether proto2 optionals are supported. Applicable for Protobuf Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.scrub.invalid.names`
: Whether to scrub invalid names by replacing invalid characters with valid characters. Applicable for Avro and Protobuf Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.use.latest.version`
: Use latest version of schema in subject for serialization when auto.register.schemas is false.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.use.optional.for.nonrequired`
: Whether to set non-required properties to be optional. Applicable for JSON_SR Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.wrapper.for.nullables`
: Whether nullable fields should use primitive wrapper messages. Applicable for Protobuf Converters.
  <br/>
  * Type: boolean
  * Importance: low

`value.converter.wrapper.for.raw.primitives`
: Whether a wrapper message should be interpreted as a raw primitive at root level. Applicable for Protobuf Converters.
  <br/>
  * Type: boolean
  * Importance: low

`errors.tolerance`
: Use this property if you would like to configure the connector’s error handling behavior. WARNING: This property should be used with CAUTION for SOURCE CONNECTORS as it may lead to dataloss. If you set this property to ‘all’, the connector will not fail on errant records, but will instead log them (and send to DLQ for Sink Connectors) and continue processing. If you set this property to ‘none’, the connector task will fail on errant records.
  <br/>
  * Type: string
  * Default: none
  * Importance: low

`key.converter.key.schema.id.serializer`
: The class name of the schema ID serializer for keys. This is used to serialize schema IDs in the message headers.
  <br/>
  * Type: string
  * Default: io.confluent.kafka.serializers.schema.id.PrefixSchemaIdSerializer
  * Importance: low

`key.converter.key.subject.name.strategy`
: How to construct the subject name for key schema registration.
  <br/>
  * Type: string
  * Default: TopicNameStrategy
  * Importance: low

`value.converter.decimal.format`
: Specify the JSON/JSON_SR serialization format for Connect DECIMAL logical type values with two allowed literals:
  <br/>
  BASE64 to serialize DECIMAL logical types as base64 encoded binary data and
  <br/>
  NUMERIC to serialize Connect DECIMAL logical type values in JSON/JSON_SR as a number representing the decimal value.
  <br/>
  * Type: string
  * Default: BASE64
  * Importance: low

`value.converter.flatten.singleton.unions`
: Whether to flatten singleton unions. Applicable for Avro and JSON_SR Converters.
  <br/>
  * Type: boolean
  * Default: false
  * Importance: low

`value.converter.ignore.default.for.nullables`
: When set to true, this property ensures that the corresponding record in Kafka is NULL, instead of showing the default column value. Applicable for AVRO,PROTOBUF and JSON_SR Converters.
  <br/>
  * Type: boolean
  * Default: false
  * Importance: low

`value.converter.reference.subject.name.strategy`
: Set the subject reference name strategy for value. Valid entries are DefaultReferenceSubjectNameStrategy or QualifiedReferenceSubjectNameStrategy. Note that the subject reference name strategy can be selected only for PROTOBUF format with the default strategy being DefaultReferenceSubjectNameStrategy.
  <br/>
  * Type: string
  * Default: DefaultReferenceSubjectNameStrategy
  * Importance: low

`value.converter.replace.null.with.default`
: Whether to replace fields that have a default value and that are null to the default value. When set to true, the default value is used, otherwise null is used. Applicable for JSON Converter.
  <br/>
  * Type: boolean
  * Default: true
  * Importance: low

`value.converter.schemas.enable`
: When true, the JsonConverter writes each record to Kafka as a {schema, payload} envelope so downstream consumers can interpret the value with its schema. When false, only the payload (plain JSON) is written. Applicable for JSON Converter.
  <br/>
  * Type: boolean
  * Default: false
  * Importance: low

`value.converter.value.schema.id.serializer`
: The class name of the schema ID serializer for values. This is used to serialize schema IDs in the message headers.
  <br/>
  * Type: string
  * Default: io.confluent.kafka.serializers.schema.id.PrefixSchemaIdSerializer
  * Importance: low

`value.converter.value.subject.name.strategy`
: Determines how to construct the subject name under which the value schema is registered with Schema Registry.
  <br/>
  * Type: string
  * Default: TopicNameStrategy
  * Importance: low

### Auto-restart policy

`auto.restart.on.user.error`
: Enable connector to automatically restart on user-actionable errors.
  <br/>
  * Type: boolean
  * Default: true
  * Importance: medium

## Frequently asked questions

Find answers to frequently asked questions about the fully managed PostgreSQL
Source connector for Confluent Cloud.

### Networking and connectivity

#### How do I troubleshoot connection timeouts or connectivity issues?

Connection issues can occur due to network configuration, firewall rules, or
database availability. Follow these troubleshooting steps to resolve
connectivity problems.

**Verify network configuration**:

* Ensure your PostgreSQL database is accessible from Confluent Cloud. The connector
  must be able to reach your database hostname and port.
* Do not include `jdbc:xxxx://` in the connection hostname property. Use only
  the hostname (for example,
  `mydatabase.abc123ecs2.us-west.rds.amazonaws.com`).
* For Amazon Web Services (AWS) RDS or other cloud databases, verify that security
  group rules allow inbound traffic from Confluent Cloud on the PostgreSQL port
  (default 5432).
* For Microsoft Azure (Azure) Virtual Networks, ensure that **Allow access to Azure
  Services** is enabled. Clients from Azure Virtual Networks are not allowed to
  access the server by default.
* See your specific cloud platform documentation for how to configure security
  rules for your VPC.

**Check connector configuration**:

* Verify that the `connection.host` and `connection.port` properties are
  correctly configured.
* Ensure that the `connection.user` has enough permissions to access the
  database and tables.
* Test database connectivity from a client outside Confluent Cloud to confirm the
  database is reachable.

**Private networking considerations**:

* If you are using PrivateLink or other private networking solutions, ensure
  your network configuration allows traffic from the connector to your database.
* Review [Manage Networking for Confluent Cloud Connectors](networking/internet-resource.md#clusters-connect-cloud) for networking details.
* Consider using [Public Egress IP Addresses for Confluent Cloud Connectors](static-egress-ip.md#cc-static-egress-ips) if you need to allowlist specific
  IP addresses.

For more information, see the [Prerequisites](#cc-postgresql-source-prereqs) section.

### SSL/TLS and security

<a id="cc-postgresql-source-ssl-tls-faq"></a>

#### How do I configure SSL/TLS certificates for secure PostgreSQL connections?

<!-- Shared mutual TLS guidance for the PostgreSQL Source and Sink (JDBC) connectors. -->
<!-- Included by cc-postgresql-source.rst and cc-postgresql-sink.rst. -->

The PostgreSQL connector supports several SSL modes for secure
connections. SSL/TLS configuration is handled through the JDBC driver using the
`ssl.mode` property.

**Available SSL modes**:

* `prefer` (default): Attempts to use an encrypted connection. Falls back to
  unencrypted if SSL is unavailable. This mode is enabled by default if
  `ssl.mode` is not added to the connector configuration.
* `require`: Uses a secure connection. The connector fails if a secure
  connection cannot be established. Does not perform Certificate Authority (CA)
  validation.
* `verify-ca`: Similar to `require`, but also verifies the server TLS
  certificate against configured CA certificates. Fails
  if no valid matching CA certificates are found.
* `verify-full`: Similar to `verify-ca`, but also verifies that the server
  certificate matches the host to which the connection is attempted.

**For \`\`verify-ca\`\` or \`\`verify-full\`\` modes**:

Use the `ssl.rootcertfile` property and provide the server root certificate
as a base64-encoded `data:` URL. Generate the value with:

```bash
echo "data:application/x-x509-ca-cert;base64,$(base64 -i server-ca.pem | tr -d '\n')"
```

Then set it in the connector configuration:

```none
"ssl.mode": "verify-ca",
"ssl.rootcertfile": "data:application/x-x509-ca-cert;base64,LS0tLS1CRUdJTiBDRVJUSUZJ..."
```

**Mutual TLS:**

With one-way SSL, only the database proves its identity to the connector. Use
mTLS when you also want the database to authenticate the connector. The
connector presents a client certificate that the database validates before
allowing the connection.

A TLS connection has two independent parts:

* **Encryption and server authentication**: whether the connection encrypts
  traffic and whether the connector verifies the database server’s identity.
  Controlled by `ssl.mode` and `ssl.rootcertfile`.
* **Client authentication**: whether the connector proves its own identity to
  the database. Controlled by `ssl.clientcertfile` and `ssl.clientkeyfile`.

These parts are independent. `ssl.mode` does not control whether the connector
presents a client certificate. The connector sends its client certificate in
any SSL mode (including `prefer` and `require`) whenever an SSL handshake
occurs and the database requests one. The database server (not `ssl.mode`)
decides whether to require a client certificate, so you can use mTLS with any
`ssl.mode`.

To use mTLS, provide these additional properties:

* `ssl.clientcertfile`: The client certificate the connector presents to the
  database. Must be a PEM-encoded X.509v3 certificate.
* `ssl.clientkeyfile`: The matching client private key. Must be in PKCS-8 DER
  format. If your key is PEM-encoded, convert it first:
  ```bash
  openssl pkcs8 -topk8 -inform PEM -outform DER -nocrypt -in client-key.pem -out client-key.der
  ```

In the Confluent Cloud Console, upload the client certificate and key files directly.
When you configure the connector with the Confluent CLI, REST API, or
Terraform, pass each certificate or key as a base64-encoded `data:` URL.
Generate the values with:

```bash
# Server CA certificate (ssl.rootcertfile)
echo "data:application/x-x509-ca-cert;base64,$(base64 -i server-ca.pem | tr -d '\n')"

# Client certificate (ssl.clientcertfile)
echo "data:application/x-x509-ca-cert;base64,$(base64 -i client-cert.pem | tr -d '\n')"

# Client private key (ssl.clientkeyfile)
echo "data:application/pkcs8;base64,$(base64 -i client-key.der | tr -d '\n')"
```

Then set the resulting strings in the connector configuration. The following
example uses `ssl.mode` `verify-ca`, which also validates the server with
`ssl.rootcertfile`:

```json
{
  "ssl.mode": "verify-ca",
  "ssl.rootcertfile": "data:application/x-x509-ca-cert;base64,LS0tLS1CRUdJTiBDRVJUSUZJ...",
  "ssl.clientcertfile": "data:application/x-x509-ca-cert;base64,LS0tLS1CRUdJTiBDRVJUSUZ...",
  "ssl.clientkeyfile": "data:application/pkcs8;base64,MIIEvQIBADANBgkqhkiG9w0B..."
}
```

Configure your PostgreSQL server to request and validate client
certificates for mTLS to take effect.

#### NOTE
The connector uses the PostgreSQL JDBC driver for SSL/TLS.
Ensure that your certificate format is compatible with the driver requirements.

### How do I configure AWS IAM authentication for RDS PostgreSQL?

The PostgreSQL Source connector supports Amazon IAM role-based
authentication for RDS and Aurora PostgreSQL using Confluent Provider
Integration. To use it, set the following connector properties:

* Set **Authentication method** to `IAM Roles`.
* Select the **Provider Integration** that has access to your database.
* Set **Database AWS region** to the region of your RDS or Aurora instance.

Do not set the database password when using IAM authentication.

For the database user, IAM policy, and Provider Integration setup steps, see
[AWS IAM Authentication Setup](#cc-postgresql-source-aws-iam-auth).

### Data synchronization and polling

#### Why isn’t my timestamp column detecting new or modified rows?

The connector uses timestamp columns to detect new and modified rows in
*timestamp* mode. If your connector is not detecting changes, review the
following configuration requirements.

**Requirements for timestamp columns**:

* The timestamp column must not be nullable. The connector cannot use nullable
  timestamp columns.
* The column must be updated automatically with each write operation.
* Values must be monotonically incrementing (though not necessarily unique).
* The column must contain timestamp or timestamp-like data.

**Insert modes**:

* **Timestamp mode**: Specify only a timestamp column when you configure the
  connector. This mode uses a timestamp (or timestamp-like) column to detect new
  and modified rows. This assumes the column is updated with each write, and
  that values are monotonically incrementing, but not necessarily unique.
* **Timestamp+incrementing mode**: Specify both a timestamp column and an
  incrementing column. This mode uses two columns, a timestamp column that
  detects new and modified rows, and a strictly incrementing column which
  provides a globally unique ID for updates so each row can be assigned a unique
  stream offset.

**Timestamp column mapping**:

Use the `timestamp.columns.mapping` property to specify which timestamp column
to use for each table. For example:

```none
"timestamp.columns.mapping": ".*passengers.*:[created_at]"
```

**For |az| PostgreSQL databases**:

You cannot use a basic database with Azure. You must use a general purpose or
memory-optimized PostgreSQL database. Additionally, verify that your database
timezone is correctly configured.

For more information, see the [Prerequisites](#cc-postgresql-source-prereqs) section.

#### How do I troubleshoot performance issues or slow polling?

Performance issues can occur when the connector processes large datasets or uses
inefficient polling intervals. Review the following configuration properties to
optimize connector performance.

**Adjust polling intervals**:

* `poll.interval.ms`: Controls how often the connector polls for new data. The
  default is 5,000 milliseconds. Increasing this value reduces the frequency of
  database queries, which can improve performance for databases with infrequent
  updates.
* `timestamp.delay.interval.ms`: Specifies the delay interval to wait before
  querying for new data. This can help ensure that all data is available before
  the connector attempts to read it.

**Optimize batch size**:

* `batch.max.rows`: Controls how many rows to include in a single batch when
  polling for new data. The default is 100 rows. Increasing this value can
  improve throughput for large datasets, but can also increase memory usage.

**Review database performance**:

* Ensure your database has appropriate indexes on timestamp and incrementing
  columns to optimize query performance.
* Monitor database query performance to identify slow queries or resource
  constraints.
* Consider whether your database instance has enough CPU, memory, and I/O
  capacity to handle the connector workload.

**Advanced configuration**:

If you continue to experience performance issues, you might need to adjust
advanced connector properties or contact [Confluent Support](https://support.confluent.io/) for assistance.

For more information about configuration properties, see
[Configuration Properties](#cc-postgresql-source-config-properties).

#### Why am I seeing duplicate records in my Kafka topics?

Duplicate records can occur due to connector restarts, offset management issues,
or improper timestamp or incrementing column configuration.

**Common causes**:

* **Connector restarts**: When the connector restarts, it might re-read some
  records if offsets are not properly committed. The connector provides
  at-least-once delivery semantics, which means some duplicate records are
  possible.
* **Timestamp column issues**: If your timestamp column is not monotonically
  increasing or if several rows have the same timestamp value, the connector
  might re-read records. Use *timestamp+incrementing* mode to ensure unique
  record identification.
* **Offset management**: If connector offsets are manually modified or reset,
  the connector might re-read data from an earlier time.

**Resolution**:

* Verify that your timestamp and incrementing columns are correctly configured.
  See “Why isn’t my timestamp column detecting new or modified rows?” for
  configuration requirements.
* Consider using *timestamp+incrementing* mode instead of *timestamp* mode to
  ensure unique record identification.
* If you need to manage offsets manually, review
  [Manage custom offsets](#cc-postgressql-source-custom-offsets) for guidance.
* If duplicates are acceptable for your use case, you might need to add
  deduplication logic in your downstream applications.

### Limitations and known issues

#### Why is my connector not detecting changes from partitioned tables?

The PostgreSQL Source connector does not currently support PostgreSQL
partitioned tables. The connector can only detect tables with the type
`TABLE`.

**Limitation**:

Partitioned tables in PostgreSQL have a different table type that is not
recognized by the connector. When the connector attempts to read metadata from
partitioned tables, it might fail to detect them or fail to ingest data.

**Workaround**:

As an alternative, consider:

* Using individual partition tables directly if they are exposed as regular
  tables
* Migrating to a non-partitioned table structure if feasible for your use case
* Using a different connector or approach for change data capture from
  partitioned tables

#### NOTE
This is a known limitation. Check the [Confluent Support Portal](https://support.confluent.io/) for updates on partitioned table support.

### Configuration and schema

#### How do I configure schema pattern detection?

If you define a schema pattern in your database, you need to configure the
`schema.pattern` property to fetch table metadata correctly.

**Schema pattern options**:

* `""` (empty string): Retrieves table metadata for tables not using a schema.
* `null` (default): The schema name is not used to narrow the search. All
  table metadata is fetched, regardless of the schema.
* `<pattern>`: A specific schema pattern to match (for example, `public` or
  `myschema.*`).

**Example configuration**:

To limit the connector to tables in the `public` schema:

```none
"schema.pattern": "public"
```

**Table type configuration**:

By default, the connector only detects `table.types` with type `TABLE` from
the source database. You can configure more table types:

* `VIEW`: Virtual tables created from joining one or more tables
* `ALIAS`: Tables with a shortened or temporary name

For more information about configuration properties, see
[Configuration Properties](#cc-postgresql-source-config-properties).

## Next Steps

For an example that shows fully managed Confluent Cloud connectors in action with
Confluent Cloud for Apache Flink, see the [Cloud ETL Demo](/platform/current/tutorials/examples/cloud-etl/docs/index.html).
This example also shows how to use Confluent CLI to manage your resources in
Confluent Cloud.

[![image](images/topology.png)](https://docs.confluent.io/platform/current/tutorials/examples/cloud-etl/docs/index.html)
