postgres-source-connector.properties 314 B

1234567891011
  1. name=source-postgresql
  2. connector.class=io.confluent.connect.jdbc.JdbcSourceConnector
  3. tasks.max=1
  4. connection.url=jdbc:postgresql://localhost:5432/eventdata
  5. connection.user=foo
  6. connection.password=bar
  7. schema.pattern=public
  8. table.whitelist=users
  9. mode=incrementing
  10. incrementing.column.name=id
  11. topic.prefix=event-data-