Fork me on GitHub
#onyx
<
2017-01-14
>
isaac03:01:37

Hom many extents trigger/fire-all-extents? will holds? @michaeldrogalis

lucasbradstreet03:01:58

@isaac it depends on how many windows have been built

lucasbradstreet03:01:09

and the data / triggers that you’re using

isaac04:01:38

I have set a window with range [1 :second], and trigger with period [1 :second], I alse set trigger/fire-all-extents?. I just want to trigger/sync last 60 window agg results when trigger/fired.

lucasbradstreet04:01:22

And you're seeing the sync fn called on all of the windows, rather than the last 60 that were modified?

isaac04:01:07

Yeah, all windows synced

lucasbradstreet04:01:39

you might need to add a flag to your windows to track when they were last modified, so that when the trigger is fired, it knows whether the windows were modified, then it can set the flag off with a refinement

isaac04:01:07

How to set this, I use the version 0.9.15.

lucasbradstreet04:01:50

You will need to write your own aggregation, and refinement. There isn’t a flag you can set unfortunately. I have to go for a bit, so I can’t really help you right now