Skip to content
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

🎉 Destination databricks: update fields specifications #9153

Merged
merged 5 commits into from
Jan 7, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION destination-databricks

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.1.2
LABEL io.airbyte.version=0.1.3
LABEL io.airbyte.name=airbyte/destination-databricks
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,28 @@
"default": false
},
"databricks_server_hostname": {
"title": "Databricks Cluster Server Hostname",
"title": "Server Hostname",
"type": "string",
"description": "",
"description": "Databricks Cluster Server Hostname.",
"examples": ["abc-12345678-wxyz.cloud.databricks.com"]
},
"databricks_http_path": {
"title": "Databricks Cluster HTTP Path",
"title": "HTTP Path",
"type": "string",
"description": "",
"description": "Databricks Cluster HTTP Path.",
"examples": ["sql/protocolvx/o/1234567489/0000-1111111-abcd90"]
},
"databricks_port": {
"title": "Databricks Cluster Port",
"title": "Port",
"type": "string",
"description": "",
"description": "Databricks Cluster Port.",
"default": "443",
"examples": ["443"]
},
"databricks_personal_access_token": {
"title": "Databricks Personal Access Token",
"title": "Access Token",
"type": "string",
"description": "",
"description": "Databricks Personal Access Token for making authenticated requests.",
"examples": ["dapi0123456789abcdefghij0123456789AB"],
"airbyte_secret": true
},
Expand All @@ -59,7 +59,7 @@
"data_source": {
"title": "Data Source",
"type": "object",
"description": "Storage on which the delta lake is built",
"description": "Storage on which the delta lake is built.",
"oneOf": [
{
"title": "Amazon S3",
Expand Down Expand Up @@ -126,12 +126,12 @@
"s3_access_key_id": {
"type": "string",
"description": "The Access Key Id granting allow one to access the above S3 staging bucket. Airbyte requires Read and Write permissions to the given bucket.",
"title": "S3 Key Id",
"title": "S3 Access Key ID",
"examples": ["A012345678910EXAMPLE"],
"airbyte_secret": true
},
"s3_secret_access_key": {
"title": "S3 Access Key",
"title": "S3 Secret Access Key",
"type": "string",
"description": "The corresponding secret to the above access key id.",
"examples": ["a012345678910ABCDEFGH/AbCdEfGhEXAMPLEKEY"],
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/destinations/databricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ Under the hood, an Airbyte data stream in Json schema is first converted to an A

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.3 | 2021-12-28 | [\#9153](https://github.com/airbytehq/airbyte/issues/9153) | Update connector fields title/description |
tuliren marked this conversation as resolved.
Show resolved Hide resolved
| 0.1.2 | 2021-11-03 | [\#7288](https://github.com/airbytehq/airbyte/issues/7288) | Support Json `additionalProperties`. |
| 0.1.1 | 2021-10-05 | [\#6792](https://github.com/airbytehq/airbyte/pull/6792) | Require users to accept Databricks JDBC Driver [Terms & Conditions](https://databricks.com/jdbc-odbc-driver-license). |
| 0.1.0 | 2021-09-14 | [\#5998](https://github.com/airbytehq/airbyte/pull/5998) | Initial private release. |