From 2e2f3cf66a2e1218fb285de0981b679e9cc30878 Mon Sep 17 00:00:00 2001 From: Victoria Lim Date: Mon, 16 Sep 2024 15:52:37 -0700 Subject: [PATCH] docs: Refresh docs for SQL input source (#17031) Co-authored-by: Charles Smith --- .../extensions-core/druid-lookups.md | 4 +- docs/development/extensions-core/mysql.md | 73 +++++++++++------- .../development/extensions-core/postgresql.md | 13 ++-- docs/ingestion/input-sources.md | 74 +++++++++---------- docs/querying/lookups-cached-global.md | 2 +- 5 files changed, 95 insertions(+), 71 deletions(-) diff --git a/docs/development/extensions-core/druid-lookups.md b/docs/development/extensions-core/druid-lookups.md index d6219b8c7428..06283ec4d722 100644 --- a/docs/development/extensions-core/druid-lookups.md +++ b/docs/development/extensions-core/druid-lookups.md @@ -31,9 +31,9 @@ This module can be used side to side with other lookup module like the global ca To use this Apache Druid extension, [include](../../configuration/extensions.md#loading-extensions) `druid-lookups-cached-single` in the extensions load list. :::info - If using JDBC, you will need to add your database's client JAR files to the extension's directory. +To use JDBC, you must add your database client JAR files to the extension's directory. For Postgres, the connector JAR is already included. - See the MySQL extension documentation for instructions to obtain [MySQL](./mysql.md#installing-the-mysql-connector-library) or [MariaDB](./mysql.md#alternative-installing-the-mariadb-connector-library) connector libraries. + See the MySQL extension documentation for instructions to obtain [MySQL](./mysql.md#install-mysql-connectorj) or [MariaDB](./mysql.md#install-mariadb-connectorj) connector libraries. Copy or symlink the downloaded file to `extensions/druid-lookups-cached-single` under the distribution root directory. ::: diff --git a/docs/development/extensions-core/mysql.md b/docs/development/extensions-core/mysql.md index bc6012dbb5a3..a3678f65056f 100644 --- a/docs/development/extensions-core/mysql.md +++ b/docs/development/extensions-core/mysql.md @@ -1,6 +1,6 @@ --- id: mysql -title: "MySQL Metadata Store" +title: "MySQL metadata store" ---