Skip to content

Commit

Permalink
Update elasticsearch.mdx (#20695)
Browse files Browse the repository at this point in the history
Configuration to get rid of "urllib3.exceptions.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:1131)"
  • Loading branch information
lguillaud committed Jul 13, 2022
1 parent 5510af3 commit 415b50c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/docs/databases/elasticsearch.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit 415b50c

Please sign in to comment.