Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site2/docs/functions-runtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ You can create a secret in the namespace where your functions are deployed. For
tenant: "mytenant"
namespace: "mynamespace"
name: "myfunction"
topicName: "persistent://mytenant/mynamespace/myfuncinput"
inputs: [ "persistent://mytenant/mynamespace/myfuncinput" ]
className: "com.company.pulsar.myfunction"

secrets:
Expand Down
6 changes: 3 additions & 3 deletions site2/docs/io-cdc-debezium.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ You can use one of the following methods to create a configuration file.
tenant: "public"
namespace: "default"
name: "debezium-mysql-source"
topicName: "debezium-mysql-topic"
inputs: [ "debezium-mysql-topic" ]
archive: "connectors/pulsar-io-debezium-mysql-{{pulsar:version}}.nar"
parallelism: 1

Expand Down Expand Up @@ -210,7 +210,7 @@ You can use one of the following methods to create a configuration file.
tenant: "public"
namespace: "default"
name: "debezium-postgres-source"
topicName: "debezium-postgres-topic"
inputs: [ "debezium-postgres-topic" ]
archive: "connectors/pulsar-io-debezium-postgres-{{pulsar:version}}.nar"
parallelism: 1

Expand Down Expand Up @@ -344,7 +344,7 @@ You need to create a configuration file before using the Pulsar Debezium connect
tenant: "public"
namespace: "default"
name: "debezium-mongodb-source"
topicName: "debezium-mongodb-topic"
inputs: [ "debezium-mongodb-topic" ]
archive: "connectors/pulsar-io-debezium-mongodb-{{pulsar:version}}.nar"
parallelism: 1

Expand Down
10 changes: 5 additions & 5 deletions site2/docs/io-debezium-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ You can use one of the following methods to create a configuration file.
tenant: "public"
namespace: "default"
name: "debezium-mysql-source"
topicName: "debezium-mysql-topic"
inputs: [ "debezium-mysql-topic" ]
archive: "connectors/pulsar-io-debezium-mysql-{{pulsar:version}}.nar"
parallelism: 1

Expand Down Expand Up @@ -226,7 +226,7 @@ You can use one of the following methods to create a configuration file.
tenant: "public"
namespace: "default"
name: "debezium-postgres-source"
topicName: "debezium-postgres-topic"
inputs: [ "debezium-postgres-topic" ]
archive: "connectors/pulsar-io-debezium-postgres-{{pulsar:version}}.nar"
parallelism: 1

Expand Down Expand Up @@ -370,7 +370,7 @@ You need to create a configuration file before using the Pulsar Debezium connect
tenant: "public"
namespace: "default"
name: "debezium-mongodb-source"
topicName: "debezium-mongodb-topic"
inputs: [ "debezium-mongodb-topic" ]
archive: "connectors/pulsar-io-debezium-mongodb-{{pulsar:version}}.nar"
parallelism: 1

Expand Down Expand Up @@ -508,7 +508,7 @@ Using yaml as an example, you can create a debezium-oracle-source-config.yaml fi
tenant: "public"
namespace: "default"
name: "debezium-oracle-source"
topicName: "debezium-oracle-topic"
inputs: [ "debezium-oracle-topic" ]
parallelism: 1

className: "org.apache.pulsar.io.debezium.oracle.DebeziumOracleSource"
Expand Down Expand Up @@ -576,7 +576,7 @@ Similarly to other connectors, you can use JSON or YAMl to configure the connect
tenant: "public"
namespace: "default"
name: "debezium-mssql-source"
topicName: "debezium-mssql-topic"
inputs: [ "debezium-mssql-topic" ]
parallelism: 1

className: "org.apache.pulsar.io.debezium.mssql.DebeziumMsSqlSource"
Expand Down
10 changes: 5 additions & 5 deletions site2/docs/io-jdbc-sink.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The configuration of all JDBC sink connectors has the following properties.
tenant: "public"
namespace: "default"
name: "jdbc-clickhouse-sink"
topicName: "persistent://public/default/jdbc-clickhouse-topic"
inputs: [ "persistent://public/default/jdbc-clickhouse-topic" ]
sinkType: "jdbc-clickhouse"
configs:
userName: "clickhouse"
Expand Down Expand Up @@ -77,7 +77,7 @@ The configuration of all JDBC sink connectors has the following properties.
tenant: "public"
namespace: "default"
name: "jdbc-mariadb-sink"
topicName: "persistent://public/default/jdbc-mariadb-topic"
inputs: [ "persistent://public/default/jdbc-mariadb-topic" ]
sinkType: "jdbc-mariadb"
configs:
userName: "mariadb"
Expand Down Expand Up @@ -105,7 +105,7 @@ The configuration of all JDBC sink connectors has the following properties.
tenant: "public"
namespace: "default"
name: "jdbc-openmldb-sink"
topicName: "persistent://public/default/jdbc-openmldb-topic"
inputs: [ "persistent://public/default/jdbc-openmldb-topic" ]
sinkType: "jdbc-openmldb"
configs:
jdbcUrl: "jdbc:openmldb:///pulsar_openmldb_db?zk=localhost:6181&zkPath=/openmldb"
Expand Down Expand Up @@ -135,7 +135,7 @@ Before using the JDBC PostgreSQL sink connector, you need to create a configurat
tenant: "public"
namespace: "default"
name: "jdbc-postgres-sink"
topicName: "persistent://public/default/jdbc-postgres-topic"
inputs: [ "persistent://public/default/jdbc-postgres-topic" ]
sinkType: "jdbc-postgres"
configs:
userName: "postgres"
Expand Down Expand Up @@ -165,7 +165,7 @@ For more information on **how to use this JDBC sink connector**, see [connect Pu
tenant: "public"
namespace: "default"
name: "jdbc-sqlite-sink"
topicName: "persistent://public/default/jdbc-sqlite-topic"
inputs: [ "persistent://public/default/jdbc-sqlite-topic" ]
sinkType: "jdbc-sqlite"
configs:
jdbcUrl: "jdbc:sqlite:db.sqlite"
Expand Down