influxdb/data_types
Marco Neumann c4a2641764 refactor: remove `time_closed`
The "time closed" is a leftover from an old lifecycle system, where
chunks moved through the system (open=>closed=>persisted) without being
merged. Now we have the compaction as well as the split query for
persistence that can merge chunks, so a single "time closed" doesn't
make sense any longer. So in fact it is `None` for many chunks and is
also not persisted. Also the current lifecycle policy doesn't use this
value. So let's just remove it.

Closes #1846.
2021-10-11 15:49:34 +02:00
..
src refactor: remove `time_closed` 2021-10-11 15:49:34 +02:00
Cargo.toml feat: remove serde from data types (#2652) 2021-10-07 08:58:06 +00:00
README.md refactor: Move some types (not yet exposed to clients) into internal_types (#1015) 2021-03-19 16:27:57 +00:00

README.md

Data Types

This crate contains types that are designed for external consumption (in influxdb_iox_client and other "client" facing uses).

Client facing in this case means exposed via management API or CLI and where changing the structs may require additional coordination / organization with clients.