influxdb/task/backend
Mark Rushakoff 2e81dd31b4 refactor(task): enable high-frequency WithTicker option
Previously, the WithTicker option would call TickScheduler.Tick every
time the underlying time.Ticker sent a time on its channel. This meant
we used a 1s period, which meant that in the worst case, we would see a
tick at about 999ms after the second rollover.

This change increases the underlying time.Ticker frequency, but only
calls TickScheduler.Tick after a second rolls over. Since we now use a
tick frequency of 100ms, during normal operation, TickScheduler.Tick
will be called within 0.1s after the second rolls over.
2018-12-07 08:38:59 -08:00
..
bolt fix(task): align task every with whole units 2018-11-30 16:26:27 -08:00
coordinator
executor Integrate scanned values statistics tracking. 2018-11-28 15:32:06 -07:00
storetest Change delay to offset in tasks to match the flux spec 2018-12-06 11:00:07 -06:00
Makefile
error_test.go
inmem_logreaderwriter.go
inmem_store.go fix(task): align task every with whole units 2018-11-30 16:26:27 -08:00
inmem_store_test.go
logreaderwriter_test.go
meta.go Change delay to offset in tasks to match the flux spec 2018-12-06 11:00:07 -06:00
meta.pb.go Change delay to offset in tasks to match the flux spec 2018-12-06 11:00:07 -06:00
meta.proto Change delay to offset in tasks to match the flux spec 2018-12-06 11:00:07 -06:00
meta_test.go Change delay to offset in tasks to match the flux spec 2018-12-06 11:00:07 -06:00
point_logwriter.go
query_logreader.go refactor(query): update transpiler to reflect signature change to `group()` (#1689) 2018-12-04 09:32:37 -08:00
scheduler.go refactor(task): enable high-frequency WithTicker option 2018-12-07 08:38:59 -08:00
scheduler_metrics.go
scheduler_test.go refactor(task): enable high-frequency WithTicker option 2018-12-07 08:38:59 -08:00
store.go