-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kube: Better Port Abstraction. (#4829)
Introduce a better port abstraction whose primary purpose is to confirm that ports are released when the Kube Pod Process is closed. This prevents issues like #4660 I'm also opening more ports so we can run at least 10 syncs in parallel.
- Loading branch information
Showing
17 changed files
with
327 additions
and
680 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 34 additions & 35 deletions
69
airbyte-integrations/connectors/source-jira/integration_tests/labels_catalog.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,38 @@ | ||
{ | ||
"streams": [ | ||
{ | ||
"stream": { | ||
"name": "labels", | ||
"json_schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": ["object", "null"], | ||
"properties": { | ||
"id": { | ||
"type": ["string", "null"] | ||
}, | ||
"key": { | ||
"type": ["string", "null"] | ||
}, | ||
"value": { | ||
"type": ["string", "null"] | ||
}, | ||
"name": { | ||
"type": ["string", "null"] | ||
}, | ||
"desc": { | ||
"type": ["string", "null"] | ||
}, | ||
"type": { | ||
"type": ["string", "null"] | ||
} | ||
"streams": [ | ||
{ | ||
"stream": { | ||
"name": "labels", | ||
"json_schema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": ["object", "null"], | ||
"properties": { | ||
"id": { | ||
"type": ["string", "null"] | ||
}, | ||
"additionalProperties": true | ||
"key": { | ||
"type": ["string", "null"] | ||
}, | ||
"value": { | ||
"type": ["string", "null"] | ||
}, | ||
"name": { | ||
"type": ["string", "null"] | ||
}, | ||
"desc": { | ||
"type": ["string", "null"] | ||
}, | ||
"type": { | ||
"type": ["string", "null"] | ||
} | ||
}, | ||
"supported_sync_modes": ["full_refresh"], | ||
"source_defined_cursor": false | ||
"additionalProperties": true | ||
}, | ||
"sync_mode": "full_refresh", | ||
"destination_sync_mode": "overwrite" | ||
} | ||
] | ||
} | ||
|
||
"supported_sync_modes": ["full_refresh"], | ||
"source_defined_cursor": false | ||
}, | ||
"sync_mode": "full_refresh", | ||
"destination_sync_mode": "overwrite" | ||
} | ||
] | ||
} |
Oops, something went wrong.