Fork me on GitHub
#onyx
<
2017-12-11
>
eelke16:12:23

We are looking at optionally joining events in windows. Any idea what would be the upper bound of data size may be held in a single window?

michaeldrogalis16:12:04

@eelke Depends on the memory limit of the boxes running Onyx. You can use the different windowing strategies to get pretty good performance by only writing out the deltas between checkpoints, even when the checkpoints are large.

michaeldrogalis16:12:52

@eelke Particularly, you'd want to set :window/storage-strategy to :order-log

lucasbradstreet17:12:46

^ that doesn’t help keep the checkpoints small. It does help only writing the deltas out to a state store if you use the disk backed store.

lucasbradstreet17:12:00

Incremental checkpoints is still a feature for the future.

michaeldrogalis17:12:46

Right, thanks for the clarification.