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

fix: Introduces back the initial_waiting_seconds option for MSSQL source. #21348

Merged
merged 26 commits into from
Jan 23, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
888ab7c
Introduces back the `initial_waiting_seconds` option for MSSQL source.
Jan 12, 2023
7a2d9dc
Adds version to documentation
Jan 12, 2023
9ecba26
Fix copy-paste issue
sergio-ropero Jan 16, 2023
d3cdc0c
Fix expected spec file to match expectations in the integration test.
Jan 16, 2023
3651748
Merge remote-tracking branch 'origin/sergio-ropero/fix/mssql-initial-…
Jan 16, 2023
ce9db1e
Add back deleted options
Jan 16, 2023
a6e0ed1
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 16, 2023
b9e0cf7
Add initial_waiting_seconds to strict encrypt expected_spec.json
Jan 17, 2023
f5321fc
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 17, 2023
f8f0353
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 18, 2023
e630f20
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 18, 2023
26ee714
fix error with non-matching versioning between `source-mssql` and `so…
Jan 18, 2023
8a0f539
Rollback to version 0.4.28
Jan 18, 2023
83fa091
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
Jan 18, 2023
4e439bc
Bump to version 0.4.28
Jan 18, 2023
770af7c
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
Jan 19, 2023
fb88a52
auto-bump connector version
octavia-squidington-iii Jan 19, 2023
a84f39e
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 19, 2023
abb0f07
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 19, 2023
87da189
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 19, 2023
b982842
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 19, 2023
3bf6c17
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 20, 2023
2a6708c
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 20, 2023
9baf53e
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 20, 2023
e0e3049
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 20, 2023
7400fd6
Merge branch 'master' into sergio-ropero/fix/mssql-initial-waiting-se…
sergio-ropero Jan 23, 2023
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 source-mssql-strict-encrypt

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.4.26
LABEL io.airbyte.version=0.4.27
LABEL io.airbyte.name=airbyte/source-mssql-strict-encrypt
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-mssql/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION source-mssql

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.4.26
LABEL io.airbyte.version=0.4.27
LABEL io.airbyte.name=airbyte/source-mssql
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,15 @@
"enum": ["Snapshot", "Read Committed"],
"description": "Existing data in the database are synced through an initial snapshot. This parameter controls the isolation level that will be used during the initial snapshotting. If you choose the \"Snapshot\" level, you must enable the <a href=\"https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/sql/snapshot-isolation-in-sql-server\">snapshot isolation mode</a> on the database.",
"order": 2
},
"initial_waiting_seconds": {
"type": "integer",
"title": "Initial Waiting Time in Seconds (Advanced)",
"description": "The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. Read about <a href=\"https://docs.airbyte.com/integrations/sources/mysql/#change-data-capture-cdc\">initial waiting time</a>.",
"default": 300,
"min": 120,
"max": 1200,
"order": 3
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,15 @@
"enum": ["Snapshot", "Read Committed"],
"description": "Existing data in the database are synced through an initial snapshot. This parameter controls the isolation level that will be used during the initial snapshotting. If you choose the \"Snapshot\" level, you must enable the <a href=\"https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/sql/snapshot-isolation-in-sql-server\">snapshot isolation mode</a> on the database.",
"order": 2
},
"initial_waiting_seconds": {
"type" : "integer",
"title" : "Initial Waiting Time in Seconds (Advanced)",
"description" : "The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. Read about <a href=\"https://docs.airbyte.com/integrations/sources/mysql/#change-data-capture-cdc\">initial waiting time</a>.",
"default" : 300,
"min" : 120,
"max" : 1200,
"order" : 3
}
}
}
Expand Down