You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need the ability to convert the data in a System's time series storage object to a different type. We currently have InMemoryTimeSeriesStorage and ArrowTimeSeriesStorage. We will soon have ChronifyTimeSeriesStorage, which will have these options:
DuckDB in-memory database
DuckDB file database
SQLite in-memory database
SQLite file database
We will need simple conversion between all types. One idea is an interface like this:
If replace is false, how do we connect the storage to a system later?
The reason that this example signature uses kwargs is that users do not currently interact directly with the time series storage classes. Should we do something different in light of support for chronify?
The text was updated successfully, but these errors were encountered:
We need the ability to convert the data in a System's time series storage object to a different type. We currently have
InMemoryTimeSeriesStorage
andArrowTimeSeriesStorage
. We will soon haveChronifyTimeSeriesStorage
, which will have these options:We will need simple conversion between all types. One idea is an interface like this:
Suppose there is an existing system with in-memory time series storage. This example would serialize all time arrays to a directory with Arrow files.
Questions:
The text was updated successfully, but these errors were encountered: