lvyanquan commented on code in PR #3968:
URL: https://github.com/apache/flink-cdc/pull/3968#discussion_r2241899366


##########
docs/content/docs/connectors/pipeline-connectors/postgres.md:
##########
@@ -0,0 +1,398 @@
+---
+title: "Postgres"
+weight: 2
+type: docs
+aliases:
+- /connectors/pipeline-connectors/Postgres
+---
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+# Postgres Connector
+
+Postgres connector allows reading snapshot data and incremental data from 
Postgres database and provides end-to-end full-database data synchronization 
capabilities.
+This document describes how to setup the Postgres connector.
+Note: Since the Postgres WAL log cannot parse table structure change records, 
Postgres CDC Pipeline Source does not support synchronizing table structure 
changes currently.
+
+## Example
+
+An example of the pipeline for reading data from Postgres and sink to Doris 
can be defined as follows:
+
+```yaml
+source:
+   type: posgtres
+   name: Postgres Source
+   hostname: 127.0.0.1
+   port: 5432
+   username: admin
+   password: pass
+   tables: adb.\.*.\.*, bdb.user_schema_[0-9].user_table_[0-9]+, 
[app|web].schema_\.*.order_\.*
+   decoding.plugin.name:  pgoutput

Review Comment:
   This config was not added in Connector Options.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to