-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathconcurrent_source.py
More file actions
165 lines (152 loc) · 7.56 KB
/
concurrent_source.py
File metadata and controls
165 lines (152 loc) · 7.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
import concurrent
import logging
from queue import Queue
from typing import Iterable, Iterator, List
from airbyte_cdk.models import AirbyteMessage
from airbyte_cdk.sources.concurrent_source.concurrent_read_processor import ConcurrentReadProcessor
from airbyte_cdk.sources.concurrent_source.partition_generation_completed_sentinel import (
PartitionGenerationCompletedSentinel,
)
from airbyte_cdk.sources.concurrent_source.stream_thread_exception import StreamThreadException
from airbyte_cdk.sources.concurrent_source.thread_pool_manager import ThreadPoolManager
from airbyte_cdk.sources.message import InMemoryMessageRepository, MessageRepository
from airbyte_cdk.sources.streams.concurrent.abstract_stream import AbstractStream
from airbyte_cdk.sources.streams.concurrent.partition_enqueuer import PartitionEnqueuer
from airbyte_cdk.sources.streams.concurrent.partition_reader import PartitionReader
from airbyte_cdk.sources.streams.concurrent.partitions.partition import Partition
from airbyte_cdk.sources.streams.concurrent.partitions.types import (
PartitionCompleteSentinel,
QueueItem,
)
from airbyte_cdk.sources.types import Record
from airbyte_cdk.sources.utils.slice_logger import DebugSliceLogger, SliceLogger
class ConcurrentSource:
"""
A Source that reads data from multiple AbstractStreams concurrently.
It does so by submitting partition generation, and partition read tasks to a thread pool.
The tasks asynchronously add their output to a shared queue.
The read is done when all partitions for all streams w ere generated and read.
"""
DEFAULT_TIMEOUT_SECONDS = 900
@staticmethod
def create(
num_workers: int,
initial_number_of_partitions_to_generate: int,
logger: logging.Logger,
slice_logger: SliceLogger,
message_repository: MessageRepository,
timeout_seconds: int = DEFAULT_TIMEOUT_SECONDS,
) -> "ConcurrentSource":
is_single_threaded = initial_number_of_partitions_to_generate == 1 and num_workers == 1
too_many_generator = (
not is_single_threaded and initial_number_of_partitions_to_generate >= num_workers
)
assert not too_many_generator, (
"It is required to have more workers than threads generating partitions"
)
threadpool = ThreadPoolManager(
concurrent.futures.ThreadPoolExecutor(
max_workers=num_workers, thread_name_prefix="workerpool"
),
logger,
)
return ConcurrentSource(
threadpool,
logger,
slice_logger,
message_repository,
initial_number_of_partitions_to_generate,
timeout_seconds,
)
def __init__(
self,
threadpool: ThreadPoolManager,
logger: logging.Logger,
slice_logger: SliceLogger = DebugSliceLogger(),
message_repository: MessageRepository = InMemoryMessageRepository(),
initial_number_partitions_to_generate: int = 1,
timeout_seconds: int = DEFAULT_TIMEOUT_SECONDS,
) -> None:
"""
:param threadpool: The threadpool to submit tasks to
:param logger: The logger to log to
:param slice_logger: The slice logger used to create messages on new slices
:param message_repository: The repository to emit messages to
:param initial_number_partitions_to_generate: The initial number of concurrent partition generation tasks. Limiting this number ensures will limit the latency of the first records emitted. While the latency is not critical, emitting the records early allows the platform and the destination to process them as early as possible.
:param timeout_seconds: The maximum number of seconds to wait for a record to be read from the queue. If no record is read within this time, the source will stop reading and return.
"""
self._threadpool = threadpool
self._logger = logger
self._slice_logger = slice_logger
self._message_repository = message_repository
self._initial_number_partitions_to_generate = initial_number_partitions_to_generate
self._timeout_seconds = timeout_seconds
def read(
self,
streams: List[AbstractStream],
) -> Iterator[AirbyteMessage]:
self._logger.info("Starting syncing")
# We set a maxsize to for the main thread to process record items when the queue size grows. This assumes that there are less
# threads generating partitions that than are max number of workers. If it weren't the case, we could have threads only generating
# partitions which would fill the queue. This number is arbitrarily set to 10_000 but will probably need to be changed given more
# information and might even need to be configurable depending on the source
queue: Queue[QueueItem] = Queue(maxsize=10_000)
concurrent_stream_processor = ConcurrentReadProcessor(
streams,
PartitionEnqueuer(queue, self._threadpool),
self._threadpool,
self._logger,
self._slice_logger,
self._message_repository,
PartitionReader(queue),
)
# Enqueue initial partition generation tasks
yield from self._submit_initial_partition_generators(concurrent_stream_processor)
# Read from the queue until all partitions were generated and read
yield from self._consume_from_queue(
queue,
concurrent_stream_processor,
)
self._threadpool.check_for_errors_and_shutdown()
self._logger.info("Finished syncing")
def _submit_initial_partition_generators(
self, concurrent_stream_processor: ConcurrentReadProcessor
) -> Iterable[AirbyteMessage]:
for _ in range(self._initial_number_partitions_to_generate):
status_message = concurrent_stream_processor.start_next_partition_generator()
if status_message:
yield status_message
def _consume_from_queue(
self,
queue: Queue[QueueItem],
concurrent_stream_processor: ConcurrentReadProcessor,
) -> Iterable[AirbyteMessage]:
while airbyte_message_or_record_or_exception := queue.get():
yield from self._handle_item(
airbyte_message_or_record_or_exception,
concurrent_stream_processor,
)
if concurrent_stream_processor.is_done() and queue.empty():
# all partitions were generated and processed. we're done here
break
def _handle_item(
self,
queue_item: QueueItem,
concurrent_stream_processor: ConcurrentReadProcessor,
) -> Iterable[AirbyteMessage]:
# handle queue item and call the appropriate handler depending on the type of the queue item
if isinstance(queue_item, StreamThreadException):
yield from concurrent_stream_processor.on_exception(queue_item)
elif isinstance(queue_item, PartitionGenerationCompletedSentinel):
yield from concurrent_stream_processor.on_partition_generation_completed(queue_item)
elif isinstance(queue_item, Partition):
concurrent_stream_processor.on_partition(queue_item)
elif isinstance(queue_item, PartitionCompleteSentinel):
yield from concurrent_stream_processor.on_partition_complete_sentinel(queue_item)
elif isinstance(queue_item, Record):
yield from concurrent_stream_processor.on_record(queue_item)
else:
raise ValueError(f"Unknown queue item type: {type(queue_item)}")