3
3
from collections .abc import Iterator , Sequence , Awaitable
4
4
from dataclasses import dataclass
5
5
from datetime import datetime
6
+ from enum import IntEnum
6
7
from typing import TypeVar , Callable , Union
7
8
from collections .abc import AsyncIterable
8
9
from warnings import warn
14
15
Ms = TypeVar ("Ms" , bound = "Messages" )
15
16
16
17
18
+ class WindowOperation (IntEnum ):
19
+ """
20
+ Enumerate the type of Window operation received.
21
+ The operation can be one of the following:
22
+ - OPEN: A new window is opened.
23
+ - CLOSE: The window is closed.
24
+ - APPEND: The window is appended with new data.
25
+ """
26
+
27
+ OPEN = (0 ,)
28
+ CLOSE = (1 ,)
29
+ APPEND = (4 ,)
30
+
31
+
17
32
@dataclass (init = False )
18
33
class Message :
19
34
"""
@@ -190,6 +205,43 @@ def end(self):
190
205
return self ._end
191
206
192
207
208
+ @dataclass (init = False )
209
+ class ReduceWindow :
210
+ """
211
+ Defines the window for a reduce operation which includes the
212
+ interval window along with the slot.
213
+ """
214
+
215
+ __slots__ = ("_window" , "_slot" )
216
+
217
+ _window : IntervalWindow
218
+ _slot : str
219
+
220
+ def __init__ (self , start : datetime , end : datetime , slot : str = "" ):
221
+ self ._window = IntervalWindow (start = start , end = end )
222
+ self ._slot = slot
223
+
224
+ @property
225
+ def start (self ):
226
+ """Returns the start timestamp of the interval window."""
227
+ return self ._window .start
228
+
229
+ @property
230
+ def end (self ):
231
+ """Returns the end timestamp of the interval window."""
232
+ return self ._window .end
233
+
234
+ @property
235
+ def slot (self ):
236
+ """Returns the slot from the window"""
237
+ return self ._slot
238
+
239
+ @property
240
+ def window (self ):
241
+ """Return the interval window"""
242
+ return self ._window
243
+
244
+
193
245
@dataclass (init = False )
194
246
class Metadata :
195
247
"""Defines the metadata for the event."""
@@ -209,13 +261,21 @@ def interval_window(self):
209
261
210
262
@dataclass
211
263
class ReduceResult :
212
- """Defines the object to hold the result of reduce computation."""
264
+ """
265
+ Defines the object to hold the result of reduce computation.
266
+ It contains the following
267
+ 1. Future: The async awaitable result of computation
268
+ 2. Iterator: The handle to the input queue
269
+ 3. Key: The keys of the partition
270
+ 4. Window: The window of the reduce operation
271
+ """
213
272
214
- __slots__ = ("_future" , "_iterator" , "_key" )
273
+ __slots__ = ("_future" , "_iterator" , "_key" , "_window" )
215
274
216
275
_future : Task
217
276
_iterator : NonBlockingIterator
218
277
_key : list [str ]
278
+ _window : ReduceWindow
219
279
220
280
@property
221
281
def future (self ):
@@ -232,6 +292,52 @@ def keys(self) -> list[str]:
232
292
"""Returns the keys of the partition."""
233
293
return self ._key
234
294
295
+ @property
296
+ def window (self ) -> ReduceWindow :
297
+ """"""
298
+ return self ._window
299
+
300
+
301
+ @dataclass
302
+ class ReduceRequest :
303
+ """Defines the object to hold a request for the reduce operation."""
304
+
305
+ __slots__ = ("_operation" , "_windows" , "_payload" )
306
+
307
+ _operation : WindowOperation
308
+ _windows : list [ReduceWindow ]
309
+ _payload : Datum
310
+
311
+ def __init__ (self , operation : WindowOperation , windows : list [ReduceWindow ], payload : Datum ):
312
+ self ._operation = operation
313
+ self ._windows = windows
314
+ self ._payload = payload
315
+
316
+ @property
317
+ def operation (self ) -> WindowOperation :
318
+ """
319
+ Returns the operation of the reduce request.
320
+ The operation can be one of the following:
321
+ - OPEN: A new window is opened.
322
+ - CLOSE: The window is closed.
323
+ - APPEND: The window is appended with new data.
324
+ """
325
+ return self ._operation
326
+
327
+ @property
328
+ def windows (self ) -> list [ReduceWindow ]:
329
+ """
330
+ Returns the windows of the reduce request.
331
+ """
332
+ return self ._windows
333
+
334
+ @property
335
+ def payload (self ) -> Datum :
336
+ """
337
+ Returns the payload of the reduce request.
338
+ """
339
+ return self ._payload
340
+
235
341
236
342
ReduceAsyncCallable = Callable [[list [str ], AsyncIterable [Datum ], Metadata ], Awaitable [Messages ]]
237
343
0 commit comments