Skip to content

Commit

Permalink
✨ [source-firebolt] update sdk (#38190)
Browse files Browse the repository at this point in the history
Co-authored-by: ptiurin <petro.tiurin@firebolt.io>
Co-authored-by: Petro Tiurin <93913847+ptiurin@users.noreply.github.com>
  • Loading branch information
3 people authored May 14, 2024
1 parent d00209c commit 04a75f9
Show file tree
Hide file tree
Showing 16 changed files with 1,601 additions and 182 deletions.
6 changes: 0 additions & 6 deletions airbyte-integrations/connectors/source-firebolt/.dockerignore

This file was deleted.

39 changes: 0 additions & 39 deletions airbyte-integrations/connectors/source-firebolt/Dockerfile

This file was deleted.

2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-firebolt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ For information about how to use this connector within Airbyte, see [the documen

**To iterate on this connector, make sure to complete this prerequisites section.**

#### Minimum Python version required `= 3.7.0`
#### Minimum Python version required `= 3.8.0`

#### Build & Activate Virtual Environment and install dependencies

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference)
# for more information about how to configure these tests
connector_image: airbyte/source-firebolt:dev
test_strictness_level: low
acceptance_tests:
spec:
tests:
Expand All @@ -24,9 +25,7 @@ acceptance_tests:
empty_streams: []
timeout_seconds: 120
expect_trace_message_on_failure: false
expect_records:
path: "integration_tests/expected_records.jsonl"
exact_order: yes
validate_state_messages: false
full_refresh:
tests:
- config_path: "secrets/config.json"
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,17 @@
"json_schema": {
"type": "object",
"properties": {
"column1": {
"type": "string"
},
"column2": {
"type": "number"
},
"column1": { "type": ["null", "string"] },
"column2": { "type": ["null", "integer"] },
"column3": {
"type": "string",
"type": ["null", "string"],
"format": "date-time",
"airbyte_type": "timestamp_without_timezone"
},
"column4": {
"type": "number"
},
"column4": { "type": ["null", "number"] },
"column5": {
"type": "array",
"items": {
"type": "integer"
}
"items": { "type": ["null", "integer"] }
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ data:
connectorSubtype: database
connectorType: source
definitionId: 6f2ac653-8623-43c4-8950-19218c7caf3d
dockerImageTag: 1.0.0
dockerImageTag: 2.0.0
dockerRepository: airbyte/source-firebolt
githubIssueLabel: source-firebolt
connectorBuildOptions:
baseImage: docker.io/airbyte/python-connector-base:1.2.0@sha256:c22a9d97464b69d6ef01898edf3f8612dc11614f05a84984451dde195f337db9
icon: firebolt.svg
license: MIT
name: Firebolt
Expand All @@ -31,4 +33,7 @@ data:
1.0.0:
message: "Add new data type columns."
upgradeDeadline: "2023-08-23"
2.0.0:
message: "Use new firebolt-sdk version."
upgradeDeadline: "2024-06-01"
metadataSpecVersion: "1.0"
Loading

0 comments on commit 04a75f9

Please sign in to comment.