-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhancing and standardizing Clickhouse documentation #604
base: trunk
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
| `clickhouse_user` | The username to connect with. | | ||
| `clickhouse_pass` | The password to connect with. | | ||
| `clickhouse_secure` | Optional. Specifies the SSL/TLS behavior for the connection, supported values:<br /> <ul><li>`true`: (default) This mode requires an SSL connection. If a secure connection cannot be established, server will not connect.</li><li>`false`: This mode will not attempt to use an SSL connection, even if the server supports it.</li></ul> | | ||
| `connection_timeout` | Optional. Specifies the connection timeout in milliseconds. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should support specifying the timeout in the same format as our other timeout parameters, in a human readable format like 10s
or 1m
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we need to do this now, but we should at least create an issue to track it, since its inconsistent with our other connectors.
Co-authored-by: Phillip LeBlanc <[email protected]>
🗣 Description
Standardizing the connector documentation as outlined in #580
🔨 Related Issues
🤔 Concerns