1
1
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
2
2
from __future__ import annotations
3
3
4
- import tempfile
5
4
from pathlib import Path
6
5
from typing import TYPE_CHECKING , Literal , cast
7
6
11
10
12
11
from airbyte import exceptions as exc
13
12
from airbyte ._executors .declarative import DeclarativeExecutor
14
- from airbyte ._executors .docker import DEFAULT_AIRBYTE_CONTAINER_TEMP_DIR , DockerExecutor
13
+ from airbyte ._executors .docker import DockerExecutor
15
14
from airbyte ._executors .local import PathExecutor
16
15
from airbyte ._executors .python import VenvExecutor
17
16
from airbyte ._util .meta import which
18
17
from airbyte ._util .telemetry import EventState , log_install_state # Non-public API
19
- from airbyte .constants import AIRBYTE_OFFLINE_MODE , TEMP_DIR_OVERRIDE
18
+ from airbyte .constants import AIRBYTE_OFFLINE_MODE
20
19
from airbyte .sources .registry import ConnectorMetadata , InstallType , get_connector_metadata
21
20
from airbyte .version import get_version
22
21
23
22
24
23
if TYPE_CHECKING :
25
24
from airbyte ._executors .base import Executor
25
+ from airbyte .http_caching .cache import AirbyteConnectorCache
26
26
27
27
28
28
VERSION_LATEST = "latest"
@@ -124,7 +124,7 @@ def _get_local_executor(
124
124
)
125
125
126
126
127
- def get_connector_executor ( # noqa: PLR0912, PLR0913, PLR0915 # Too many branches/arguments/statements
127
+ def get_connector_executor ( # noqa: PLR0912, PLR0913 # Too many branches/arguments
128
128
name : str ,
129
129
* ,
130
130
version : str | None = None ,
@@ -135,6 +135,7 @@ def get_connector_executor( # noqa: PLR0912, PLR0913, PLR0915 # Too many branch
135
135
source_manifest : bool | dict | Path | str | None = None ,
136
136
install_if_missing : bool = True ,
137
137
install_root : Path | None = None ,
138
+ http_cache : AirbyteConnectorCache | None = None ,
138
139
) -> Executor :
139
140
"""This factory function creates an executor for a connector.
140
141
@@ -226,41 +227,19 @@ def get_connector_executor( # noqa: PLR0912, PLR0913, PLR0915 # Too many branch
226
227
if ":" not in docker_image :
227
228
docker_image = f"{ docker_image } :{ version or 'latest' } "
228
229
229
- host_temp_dir = TEMP_DIR_OVERRIDE or Path (tempfile .gettempdir ())
230
- container_temp_dir = DEFAULT_AIRBYTE_CONTAINER_TEMP_DIR
231
-
232
- local_mount_dir = Path ().absolute () / name
233
- local_mount_dir .mkdir (exist_ok = True )
234
-
235
- volumes = {
236
- local_mount_dir : "/local" ,
237
- host_temp_dir : container_temp_dir ,
238
- }
239
- docker_cmd = [
240
- "docker" ,
241
- "run" ,
242
- "--rm" ,
243
- "-i" ,
244
- ]
245
- for local_dir , container_dir in volumes .items ():
246
- docker_cmd .extend (["--volume" , f"{ local_dir } :{ container_dir } " ])
247
-
248
- if use_host_network is True :
249
- docker_cmd .extend (["--network" , "host" ])
250
-
251
- docker_cmd .extend ([docker_image ])
252
-
253
230
return DockerExecutor (
254
231
name = name ,
255
- executable = docker_cmd ,
256
- volumes = volumes ,
232
+ docker_image = docker_image ,
233
+ use_host_network = use_host_network ,
234
+ http_cache = http_cache ,
257
235
)
258
236
259
237
if source_manifest :
260
238
if isinstance (source_manifest , dict | Path ):
261
239
return DeclarativeExecutor (
262
240
name = name ,
263
241
manifest = source_manifest ,
242
+ http_cache = http_cache ,
264
243
)
265
244
266
245
if isinstance (source_manifest , str | bool ):
@@ -273,6 +252,7 @@ def get_connector_executor( # noqa: PLR0912, PLR0913, PLR0915 # Too many branch
273
252
return DeclarativeExecutor (
274
253
name = name ,
275
254
manifest = source_manifest ,
255
+ http_cache = http_cache ,
276
256
)
277
257
278
258
# else: we are installing a connector in a Python virtual environment:
@@ -284,6 +264,7 @@ def get_connector_executor( # noqa: PLR0912, PLR0913, PLR0915 # Too many branch
284
264
target_version = version ,
285
265
pip_url = pip_url ,
286
266
install_root = install_root ,
267
+ http_cache = http_cache ,
287
268
)
288
269
if install_if_missing :
289
270
executor .ensure_installation ()
0 commit comments