From 415b50cc4cb778525fa1bd2bf68b904bdc7734c8 Mon Sep 17 00:00:00 2001 From: Lionel GUILLAUD <69637673+lguillaud@users.noreply.github.com> Date: Wed, 13 Jul 2022 22:07:04 +0200 Subject: [PATCH] Update elasticsearch.mdx (#20695) Configuration to get rid of "urllib3.exceptions.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:1131)" --- docs/docs/databases/elasticsearch.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/docs/databases/elasticsearch.mdx b/docs/docs/databases/elasticsearch.mdx index 70b7f8f685e2b..6fb922815ca0f 100644 --- a/docs/docs/databases/elasticsearch.mdx +++ b/docs/docs/databases/elasticsearch.mdx @@ -66,3 +66,11 @@ you need to use the `CAST` function,but this function does not support our `time After elasticsearch7.8, you can use the `DATETIME_PARSE` function to solve this problem. The DATETIME_PARSE function is to support our `time_zone` setting, and here you need to fill in your elasticsearch version number in the Other > VERSION setting. the superset will use the `DATETIME_PARSE` function for conversion. + +**Disable SSL Verification** + +To disable SSL verification, add the following to the **SQLALCHEMY URI** field: + +``` +elasticsearch+https://{user}:{password}@{host}:9200/?verify_certs=False +```