|
|
|
@ -4,7 +4,7 @@ import logging
|
|
|
|
|
import pandas as pd |
|
|
|
|
from typing import Optional, Union |
|
|
|
|
from models import ModelCache |
|
|
|
|
from concurrent.futures import Executor, CancelledError |
|
|
|
|
from concurrent.futures import Executor, CancelledError, TimeoutError |
|
|
|
|
import asyncio |
|
|
|
|
|
|
|
|
|
logger = logging.getLogger('AnalyticUnitWorker') |
|
|
|
@ -16,26 +16,28 @@ class AnalyticUnitWorker:
|
|
|
|
|
self.analytic_unit_id = analytic_unit_id |
|
|
|
|
self._detector = detector |
|
|
|
|
self._executor: Executor = executor |
|
|
|
|
self._training_feature: asyncio.Future = None |
|
|
|
|
self._training_future: asyncio.Future = None |
|
|
|
|
|
|
|
|
|
async def do_train( |
|
|
|
|
self, payload: Union[list, dict], data: pd.DataFrame, cache: Optional[ModelCache] |
|
|
|
|
) -> ModelCache: |
|
|
|
|
self._training_feature = asyncio.get_event_loop().run_in_executor( |
|
|
|
|
self._executor, self._detector.train, data, payload, cache |
|
|
|
|
self._training_future = self._executor.submit( |
|
|
|
|
self._detector.train, data, payload, cache |
|
|
|
|
) |
|
|
|
|
try: |
|
|
|
|
new_cache: ModelCache = await self._training_feature |
|
|
|
|
new_cache: ModelCache = self._training_future.result(timeout = config.LEARNING_TIMEOUT) |
|
|
|
|
return new_cache |
|
|
|
|
except CancelledError as e: |
|
|
|
|
return cache |
|
|
|
|
except TimeoutError: |
|
|
|
|
raise Exception('Timeout ({}s) exceeded while learning'.format(config.LEARNING_TIMEOUT)) |
|
|
|
|
|
|
|
|
|
async def do_detect(self, data: pd.DataFrame, cache: Optional[ModelCache]) -> dict: |
|
|
|
|
return self._detector.detect(data, cache) |
|
|
|
|
|
|
|
|
|
def cancel(self): |
|
|
|
|
if self._training_feature is not None: |
|
|
|
|
self._training_feature.cancel() |
|
|
|
|
if self._training_future is not None: |
|
|
|
|
self._training_future.cancel() |
|
|
|
|
|
|
|
|
|
async def recieve_data(self, data: pd.DataFrame, cache: Optional[ModelCache]): |
|
|
|
|
return self._detector.recieve_data(data, cache) |
|
|
|
|