Skip to content

Commit

Permalink
Fix (destination-duckdb): Declare min mem constraints in manifest (#3…
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Apr 23, 2024
1 parent 6ca1a76 commit 5f29e8f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 11 additions & 1 deletion airbyte-integrations/connectors/destination-duckdb/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ data:
connectorSubtype: database
connectorType: destination
definitionId: 94bd199c-2ff0-4aa2-b98e-17f0acb72610
dockerImageTag: 0.3.4
dockerImageTag: 0.3.5
dockerRepository: airbyte/destination-duckdb
githubIssueLabel: destination-duckdb
icon: duckdb.svg
Expand All @@ -21,6 +21,16 @@ data:
0.3.0:
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."
upgradeDeadline: "2023-10-31"
resourceRequirements:
jobSpecific:
- jobType: check_connection
resourceRequirements:
memory_limit: 2Gi
memory_request: 2Gi
- jobType: sync
resourceRequirements:
memory_limit: 2Gi
memory_request: 2Gi
documentationUrl: https://docs.airbyte.com/integrations/destinations/duckdb
tags:
- language:python
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "destination-duckdb"
version = "0.3.4"
version = "0.3.5"
description = "Destination implementation for Duckdb."
authors = ["Simon Späti, Airbyte"]
license = "MIT"
Expand Down
2 changes: 2 additions & 0 deletions docs/integrations/destinations/duckdb.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ Note: If you are running Airbyte on Windows with Docker backed by WSL2, you have

| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :--------------------- |
| 0.3.5 | 2024-04-23 | [#37515](https://github.com/airbytehq/airbyte/pull/37515) | Add resource requirements declaration to `metatadat.yml`. |
| :------ | :--------- | :------------------------------------------------------- | :--------------------- |
| 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. |
| 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. |
| 0.3.2 | 2024-03-20 | [#32635](https://github.com/airbytehq/airbyte/pull/32635) | Instrument custom_user_agent to identify Airbyte-Motherduck connector usage. |
Expand Down

0 comments on commit 5f29e8f

Please sign in to comment.