[DEPRECATED] Marcos Marx
server
service will be deprecated on June 14.
You can access the new endpoints (airbyte-server
) now to update your applications and ensure seamless integration with future releases.
For detailed instructions and more information, please click here.Adam Bloom
05/03/2024, 3:38 PMAdam Bloom
05/03/2024, 3:39 PMMarcos Marx (Airbyte)
05/03/2024, 4:02 PMEmily Cogsdill
05/03/2024, 5:15 PMJon Tan (Airbyte)
05/03/2024, 5:31 PMJon Tan (Airbyte)
05/03/2024, 5:32 PMEmily Cogsdill
05/03/2024, 5:35 PMJon Tan (Airbyte)
05/03/2024, 5:37 PMairbyte-server
where the config API lives, and the airbyte-api-server
where the Airbyte API (public API) lives.
The airbyte-server
is remaining and the airbyte-api-server
is going away. If you were using the Airbyte API, you will have to update callers to point to airbyte-server/api/public
as the base URL. Anything already pointing to the airbyte-server
needs no change which seems to be what you’re describing with the Airflow operators.Matthew Martin
05/09/2024, 9:18 AM0.59.0
(which according to the doc seems like it should support the new way of using the api) but am not getting the results I expect
Deployed locally with run-ab-platform.sh
curl -v -u airbyte:password <http://127.0.0.1:8001/api/public/health>
* Trying 127.0.0.1:8001...
* Connected to 127.0.0.1 (127.0.0.1) port 8001
* Server auth using Basic with user 'airbyte'
> GET /api/public/health HTTP/1.1
> Host: 127.0.0.1:8001
> Authorization: Basic YWlyYnl0ZTpwYXNzd29yZA==
> User-Agent: curl/8.4.0
> Accept: */*
>
< HTTP/1.1 404 Not Found
< Server: nginx/1.25.3
< Date: Thu, 09 May 2024 09:15:37 GMT
< Content-Type: application/json
< Content-Length: 17
< Connection: keep-alive
<
* Connection #0 to host 127.0.0.1 left intact
Object not found.%
Running the old health checkpoint gives the expected 200:
curl -u airbyte:password -v <http://localhost:8006/health>
* Trying [::1]:8006...
* Connected to localhost (::1) port 8006
* Server auth using Basic with user 'airbyte'
> GET /health HTTP/1.1
> Host: localhost:8006
> Authorization: Basic YWlyYnl0ZTpwYXNzd29yZA==
> User-Agent: curl/8.4.0
> Accept: */*
>
< HTTP/1.1 200 OK
< Server: nginx/1.25.3
< Date: Thu, 09 May 2024 09:17:47 GMT
< Content-Type: application/json
< Content-Length: 20
< Connection: keep-alive
<
* Connection #0 to host localhost left intact
Successful operation%
Ohad
05/24/2024, 3:28 AMJon Tan (Airbyte)
05/29/2024, 11:24 PMJon Tan (Airbyte)
06/03/2024, 9:01 PMOhad
06/06/2024, 3:28 AMcurl -v -u airbyte:password <http://127.0.0.1:8000/api/public/health>
When you say
> I’ve updated the docs to reflect that the earliest version to switch is v0.59.1
Where is this change reflected? Is this here?Ohad
06/06/2024, 3:34 AMcurl -v -u airbyte:password <http://127.0.0.1:8000/api/public/v1/health>
[DEPRECATED] Marcos Marx
Suthira (Praer) Owlarn
07/10/2024, 4:21 AMJon Tan (Airbyte)
07/10/2024, 5:14 AMJon Tan (Airbyte)
07/10/2024, 5:35 AMSuthira (Praer) Owlarn
07/10/2024, 5:40 AM