From 3ed0739bbe62184859c6b3ed99776102d7859d65 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 30 Sep 2021 10:46:44 -0400 Subject: [PATCH] Do fsp sync-to-source in sample step task --- piker/fsp/_engine.py | 39 ++++++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/piker/fsp/_engine.py b/piker/fsp/_engine.py index 84d8fcf2..a11ddda7 100644 --- a/piker/fsp/_engine.py +++ b/piker/fsp/_engine.py @@ -124,20 +124,11 @@ async def fsp_compute( # is `index` aware such that historical data can be indexed # relative to the true first datum? Not sure if this is sane # for incremental compuations. - dst._first.value = src._first.value - dst._last.value = src._first.value - - # compare with source signal and time align - # check for data length mis-allignment and fill missing values - diff = len(src.array) - len(history) - if diff > 0: - log.warning(f"WTF DIFF fsp to ohlc history {diff}") - for _ in range(diff): - dst.push(history[:1]) + first = dst._first.value = src._first.value # TODO: can we use this `start` flag instead of the manual # setting above? - index = dst.push(history) #, start=src._first.value) + index = dst.push(history, start=first) profiler(f'{func_name} pushed history') profiler.finish() @@ -147,8 +138,8 @@ async def fsp_compute( task_status.started((cs, index)) profiler(f'{func_name} yield last index') - import time - last = time.time() + # import time + # last = time.time() # rt stream async for processed in out_stream: @@ -255,12 +246,12 @@ async def cascade( async for msg in stream: + # respawn the compute task if the source + # array has been updated such that we compute + # new history from the (prepended) source. new_len = len(src.array) - if new_len > last_len + 1: - # respawn the signal compute task if the source - # signal has been updated - log.warning(f'Re-spawning fsp {func_name}') + log.warning(f're-syncing fsp {func_name} to source') cs.cancel() cs, index = await n.start(fsp_target) @@ -269,8 +260,22 @@ async def cascade( # read out last shm row, copy and write new row array = dst.array + # TODO: some signals, like vlm should be reset to # zero every step. last = array[-1:].copy() dst.push(last) last_len = new_len + + # compare again with source and make sure + # histories are index aligned. + diff = src.index - dst.index + if diff: + if abs(diff) < 10: + log.warning( + f'syncing fsp to source by offset: {diff}') + history = dst.array + dst.push(history[:-1], start=src._first.value) + else: + log.warning( + f'large offset {diff} re-spawn ongoing?..')