Thomas LETELLIER
04/10/2025, 1:52 PMdownload_target_extractor
parameter with urls_extractor
(otherwise, I wasn't able to test my code in the Connector Builder).
When I run the test, the first part works fine—I can see the generated file on the backend—but after the file is created, I get an error. I'm not sure if it occurs during the polling or the data retrieval phase.
Internal Server Error: java.io.IOException: unexpected end of stream on <http://data-airbyte-airbyte-connector-builder-server-svc/>...
My yaml is below in this thread.
Does anyone have an idea of what might be causing this issue?
thank you for your helpAyushman Dutta
04/14/2025, 5:30 PMPaul
04/15/2025, 7:53 AMTim Mock
04/15/2025, 4:13 PMPaul
04/16/2025, 1:04 AM[
[
"2019-09-02T18:00:00.000000Z",
"15100",
"15200",
"15100",
"15199",
"4.11970335"
],
[
"2019-09-02T17:00:00.000000Z",
"14879.75",
"15115",
"14861.99",
"15115",
"10.01840031"
]
]
Parthiv Makwana
04/16/2025, 1:20 PMHana Oshima
04/16/2025, 4:35 PMNachiket Karguppikar
04/17/2025, 11:26 AMScott Richardson
04/18/2025, 7:20 PMMathieson
04/20/2025, 12:22 PMAlex Semichin
04/22/2025, 4:53 PMAnas El Mhamdi
04/23/2025, 12:38 PMgenerate.sh
to scaffold a connector, i’ve just seen that the script has been removed from the codebase. What’s the proper way to get going now ?Michal Krawczyk
04/24/2025, 11:46 AMrangga aldo
04/24/2025, 2:30 PMJillian Moore
04/24/2025, 5:50 PMアスガル ウマル
04/25/2025, 10:34 AM│ pod "q-destination-spec-c10a8ab7-a413-4b99-a7f2-1a96b9a70f67-0-xxxdw" is waiting to start: image can't be pulled for airbyte/q-destination-spec-c10a8 │
Ed
04/25/2025, 3:31 PMDan Klosterman
04/25/2025, 6:00 PMKurt Colemonts
04/29/2025, 6:29 AMrafalbballer
04/30/2025, 3:15 PMКирилл Неруш
04/30/2025, 5:28 PMCarolina Buckler
04/30/2025, 6:02 PMOmotola Awofolu
04/30/2025, 8:24 PMGarrett McClintock
04/30/2025, 8:24 PMClara Buenconsejo
05/01/2025, 12:54 PMEvan Caracciolo
05/01/2025, 3:51 PMアスガル ウマル
05/02/2025, 8:29 AM1.1.0
and bigquer-destination image version is 2.9.0
Failure in destination: You must upgrade your platform version to use this connector version. Either downgrade your connector or upgrade platform to 0.63.7
Pankaj Lal
05/05/2025, 7:28 AM<https://cxone.niceincontact.com/auth/authorize?{{client_id_key}}={{client_id_value}}&{{redirect_uri_key}}={{{{redirect_uri_value}}%7CurlEncoder}}&{{state_key}}={{state_value}}&scope=openid&response_type=code>
I see this error in the console when I test the connection when airbyte calls
get_oauth_consent_url
{
"message": "Internal Server Error: Error parsing '{{redirect_uri_value': syntax error at position 129, encountered '}', expected ':'",
"exceptionClassName": "com.hubspot.jinjava.interpret.FatalTemplateErrorsException",
"exceptionStack": [],
"rootCauseExceptionStack": []
}
Max Werner
05/05/2025, 3:04 PM{
"filters": [
{
"$gt": {
"audit.modifiedDateTime": "2025-05-05T12:34:56Z"
}
}
]
}
but when I have a Incremental Sync section of the YAML like
type: DatetimeBasedCursor
cursor_field: audit.modifiedDateTime
cursor_datetime_formats:
- '%Y-%m-%dT%H:%M:%SZ'
datetime_format: '%Y-%m-%dT%H:%M:%SZ'
start_datetime:
type: MinMaxDatetime
datetime: '{{ config["start_date"] }}'
datetime_format: '%Y-%m-%dT%H:%M:%SZ'
start_time_option:
type: RequestOption
inject_into: body_json
field_path:
- filters
- '0'
- $gt
- audit.modifiedDateTime
The filters
part of the request does not become an array but a KV pair like
"filters": {
"0": {
"$gt": {
"audit.modifiedDateTime": "2005-05-01T00:00:00Z"
}
}
}
How can I tell Airbyte that filters
in the request JSON body is supposed to be an array?Robert Kolb
05/06/2025, 1:54 PM