Tom Montgomery
08/28/2024, 2:17 PMChristopher Daniel
08/28/2024, 2:37 PMMatheus Dantas
08/28/2024, 3:02 PMautoImportSchema
with the Low-code connector implementation.Rabea Yousef
08/28/2024, 4:02 PMAditya Gupta
08/28/2024, 4:14 PMAbhra Gupta
08/28/2024, 4:40 PMAbhra Gupta
08/28/2024, 5:00 PMKeegan Haukaas
08/28/2024, 5:08 PMguifesquet
08/28/2024, 5:35 PMKarl Jose Buena
08/28/2024, 5:35 PMChristopher Greene
08/28/2024, 5:57 PMTiago Protta Gigli
08/28/2024, 6:05 PMAditya Gupta
08/28/2024, 7:09 PMBrian Bolt
08/28/2024, 9:57 PMFlush Worker (9cbc1) -- Worker finished flushing. Current queue size: 52
Herbert Sousa
08/28/2024, 10:13 PMBrian Kasen
08/28/2024, 11:15 PMAndrea Burazor
08/29/2024, 1:29 AMpremsurawut
08/29/2024, 4:33 AMAndrew Nada
08/29/2024, 4:39 AMRitika Naidu
08/29/2024, 5:15 AMSlackbot
08/29/2024, 6:24 AMJulie Choong
08/29/2024, 8:25 AMYannick Sacherer
08/29/2024, 11:19 AMdata "airbyte_workspace" "apt" {
workspace_id = var.workspace_id
}
resource "airbyte_destination_snowflake" "snowflake" {
depends_on = [ data.airbyte_workspace.apt ]
definition_id = "14c2362c-b605-49e0-a92d-78b3c38906e8"
workspace_id = data.airbyte_workspace.apt.workspace_id
name = "Snowflake APT"
configuration = {
host = "<http://this.snowflakecomputing.com|this.snowflakecomputing.com>"
role = var.role
warehouse = var.warehouse
database = var.database
schema = "AIRBYTE"
username = var.username
credentials = {
key_pair_authentication = {
private_key = file(var.snowflake_pkey_path)
}
}
}
}
This code fails with this error message:
│ Error: unexpected response from API. Got an unexpected response code 400
│
│ with airbyte_destination_snowflake.snowflake,
│ on <http://destination.tf|destination.tf> line 5, in resource "airbyte_destination_snowflake" "snowflake":
│ 5: resource "airbyte_destination_snowflake" "snowflake" {
│
│ **Request**:
│ POST /api/public/v1/destinations HTTP/1.1
│ Host: datenkrake-airbyte-dev-gcp-01.paas-dev.local
│ Accept: application/json
│ Authorization: (sensitive)
│ Content-Type: application/json
│ User-Agent: speakeasy-sdk/go 0.0.1 2.372.3 1.0.0
│ <http://github.com/airbytehq/terraform-provider-airbyte/internal/sdk|github.com/airbytehq/terraform-provider-airbyte/internal/sdk>
│
│
│ **Response**:
│ HTTP/2.0 400 Bad Request
│ Content-Length: 185
│ Content-Type: application/json
│ Date: Thu, 29 Aug 2024 11:11:11 GMT
│ Strict-Transport-Security: max-age=15768000; includeSubDomains
│
│ {"title":"resource-not-found","message":"Could not find a resource for:
│ 13044fa7-7877-4aa9-8fe8-8654b4049399","type":"<https://reference.airbyte.com/reference/errors#resource-not-found>"}
but this error message is misleading because for other resources my workspace_id is working as expectedJulie Choong
08/29/2024, 1:21 PMLuke
08/29/2024, 1:39 PM024-08-28 21:17:51 platform > Retry State: RetryManager(completeFailureBackoffPolicy=BackoffPolicy(minInterval=PT10S, maxInterval=PT30M, base=3), partialFailureBackoffPolicy=null, successiveCompleteFailureLimit=5, totalCompleteFailureLimit=10, successivePartialFailureLimit=1000, totalPartialFailureLimit=20, successiveCompleteFailures=4, totalCompleteFailures=4, successivePartialFailures=0, totalPartialFailures=0)
Backoff before next attempt: 4 minutes 30 seconds
2024-08-28 21:21:23 ERROR i.a.w.l.p.h.FailureHandler(apply):39 - Pipeline Error
io.airbyte.workload.launcher.pipeline.stages.model.StageError: io.airbyte.workload.launcher.pods.KubeClientException: Destination pod failed to start within allotted timeout of 1145 seconds. (Timed out waiting for [1140000] milliseconds for [Pod] with name:[null] in namespace [airbyte-abctl].)
at io.airbyte.workload.launcher.pipeline.stages.model.Stage.apply(Stage.kt:46) ~[io.airbyte-airbyte-workload-launcher-0.64.0.jar:?]
at io.airbyte.workload.launcher.pipeline.stages.LaunchPodStage.apply(LaunchPodStage.kt:38) ~[io.airbyte-airbyte-workload-launcher-0.64.0.jar:?]
at io.airbyte.workload.launcher.pipeline.stages.$LaunchPodStage$Definition$Intercepted.$$access$$apply(Unknown Source) ~[io.airbyte-airbyte-workload-launcher-0.64.0.jar:?]
at io.airbyte.workload.launcher.pipeline.stages.$LaunchPodStage$Definition$Exec.dispatch(Unknown Source) ~[io.airbyte-airbyte-workload-launcher-0.64.0.jar:?]
at io.micronaut.context.AbstractExecutableMethodsDefinition$DispatchedExecutableMethod.invoke(AbstractExecutableMethodsDefinition.java:456) ~[micronaut-inject-4.5.4.jar:4.5.4]
Daniel Antwi
08/29/2024, 2:22 PMAbhinav Pandey
08/29/2024, 3:48 PMRohit Chatterjee
08/29/2024, 4:00 PMGlen Aultman-Bettridge
08/29/2024, 5:21 PMairbyte_connection
resource that sets a primary_key in the streams configuration?