Skip to content

Commit 5f29e8f

Browse files
authored
Fix (destination-duckdb): Declare min mem constraints in manifest (#37515)
1 parent 6ca1a76 commit 5f29e8f

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

airbyte-integrations/connectors/destination-duckdb/metadata.yaml

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ data:
44
connectorSubtype: database
55
connectorType: destination
66
definitionId: 94bd199c-2ff0-4aa2-b98e-17f0acb72610
7-
dockerImageTag: 0.3.4
7+
dockerImageTag: 0.3.5
88
dockerRepository: airbyte/destination-duckdb
99
githubIssueLabel: destination-duckdb
1010
icon: duckdb.svg
@@ -21,6 +21,16 @@ data:
2121
0.3.0:
2222
message: "This version uses the DuckDB 0.9.1 database driver, which is not backwards compatible with prior versions. MotherDuck users can upgrade their database by visiting https://app.motherduck.com/ and accepting the upgrade. For more information, see the connector migration guide."
2323
upgradeDeadline: "2023-10-31"
24+
resourceRequirements:
25+
jobSpecific:
26+
- jobType: check_connection
27+
resourceRequirements:
28+
memory_limit: 2Gi
29+
memory_request: 2Gi
30+
- jobType: sync
31+
resourceRequirements:
32+
memory_limit: 2Gi
33+
memory_request: 2Gi
2434
documentationUrl: https://docs.airbyte.com/integrations/destinations/duckdb
2535
tags:
2636
- language:python

airbyte-integrations/connectors/destination-duckdb/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "destination-duckdb"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
description = "Destination implementation for Duckdb."
55
authors = ["Simon Späti, Airbyte"]
66
license = "MIT"

docs/integrations/destinations/duckdb.md

+2
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ Note: If you are running Airbyte on Windows with Docker backed by WSL2, you have
106106

107107
| Version | Date | Pull Request | Subject |
108108
| :------ | :--------- | :------------------------------------------------------- | :--------------------- |
109+
| 0.3.5 | 2024-04-23 | [#37515](https://github.com/airbytehq/airbyte/pull/37515) | Add resource requirements declaration to `metatadat.yml`. |
110+
| :------ | :--------- | :------------------------------------------------------- | :--------------------- |
109111
| 0.3.4 | 2024-04-16 | [#36715](https://github.com/airbytehq/airbyte/pull/36715) | Improve ingestion performance using pyarrow inmem view for writing to DuckDB. |
110112
| 0.3.3 | 2024-04-07 | [#36884](https://github.com/airbytehq/airbyte/pull/36884) | Fix stale dependency versions in lock file, add CLI for internal testing. |
111113
| 0.3.2 | 2024-03-20 | [#32635](https://github.com/airbytehq/airbyte/pull/32635) | Instrument custom_user_agent to identify Airbyte-Motherduck connector usage. |

0 commit comments

Comments
 (0)