[feature] include end_ts to indicate the time range a file contains
Closed this issue · 1 comments
digizeph commented
When a user request data from a specific timestamp T1, the broker should return all files that contains data that includes T1. Specifically, we can simply add 15 minutes to RouteViews updates data and 5 minutes to RIS updates data.
We could do some rounding at the reqeuester side, but this would end up splitting requests for RV and RIS into separate ones as they will likely round to different timestamps. Adding a new column to the database is the simpliest solution and allow simple SQL queries.
This involves a db schema change, which could be bundled with fixing #2 as well.
digizeph commented
V2 release added this feature