You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pulsar.apache.org by GitBox <gi...@apache.org> on 2022/09/20 10:47:53 UTC

[GitHub] [pulsar] gvolpe added a comment to the discussion: [Pulsar 2.10.1] - Unable to get Debezium PostgreSQL working

GitHub user gvolpe added a comment to the discussion: [Pulsar 2.10.1] - Unable to get Debezium PostgreSQL working

Ok, managed to get this working with the following configuration:

```yaml
tenant: "public"
namespace: "default"
name: "debezium-postgres-source"
topicName: "debezium-postgres-topic"
archive: "connectors/debezium-2.10.1.nar"
parallelism: 1

configs:
    database.hostname: "postgres"
    database.port: "5432"
    database.user: "postgres"
    database.password: "postgres"
    database.dbname: "trading"
    database.server.name: "dbserver"
    plugin.name: "pgoutput"
    schema.whitelist: "public"
    table.whitelist: "public.authors"
    pulsar.service.url: "pulsar://pulsar:6650"
    database.history.pulsar.service.url: "pulsar://pulsar:6650"
```

So it doesn't matter if one sets `database.whitelist: "my-db"`, it seems the `schema.whitelist` is mandatory. 

GitHub link: https://github.com/apache/pulsar/discussions/17735#discussioncomment-3689166

----
This is an automatically sent email for dev@pulsar.apache.org.
To unsubscribe, please send an email to: dev-unsubscribe@pulsar.apache.org