From 36e8110c4cf772bb99a9a39bc76b5ed3c2280beb Mon Sep 17 00:00:00 2001 From: Sergii Zhevzhyk Date: Fri, 26 Jun 2020 02:02:08 +0200 Subject: [PATCH] [Issue 7313] Update information about the JDBC connectors for the download page (#7363) ### Motivation After dividing the old JDBC connector into multiple connectors for different databases, I forgot to modify the connectors.js file. ### Modifications The connectors.js file was extended with the info about new JDBC connectors. --- site2/website/data/connectors.js | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/site2/website/data/connectors.js b/site2/website/data/connectors.js index 6a290112332c9..bf46778dabefe 100644 --- a/site2/website/data/connectors.js +++ b/site2/website/data/connectors.js @@ -90,10 +90,28 @@ module.exports = [ link: 'https://www.influxdata.com/' }, { - name: 'jdbc', - longName: 'JDBC sink', + name: 'jdbc-clickhouse', + longName: 'JDBC ClickHouse sink', type: 'Sink', - link: 'https://github.com/apache/pulsar/tree/master/pulsar-io/jdbc' + link: 'https://clickhouse.tech/' + }, + { + name: 'jdbc-mariadb', + longName: 'JDBC MariaDB sink', + type: 'Sink', + link: 'https://mariadb.org/' + }, + { + name: 'jdbc-postgres', + longName: 'JDBC PostgresSQL sink', + type: 'Sink', + link: 'https://www.postgresql.org/' + }, + { + name: 'jdbc-sqlite', + longName: 'JDBC SQLite sink', + type: 'Sink', + link: 'https://www.sqlite.org/' }, { name: 'kafka-connect-adaptor',