influxdb/generated_types/Cargo.toml

36 lines
996 B
TOML
Raw Normal View History

[package]
name = "generated_types"
version = "0.1.0"
authors = ["Paul Dix <paul@pauldix.net>"]
2021-10-25 08:45:44 +00:00
edition = "2021"
[dependencies] # In alphabetical order
base64 = "0.13"
bytes = "1.2"
2022-05-05 19:29:24 +00:00
data_types = { path = "../data_types", optional = true }
datafusion = { path = "../datafusion", optional = true }
observability_deps = { path = "../observability_deps" }
pbjson = "0.5"
pbjson-types = "0.5"
predicate = { path = "../predicate", optional = true }
prost = "0.11"
query_functions = { path = "../query_functions" }
feat: Derive serde for protos Rationale --------- Our CLI needs to be able to accept configuration as JSON and render configuration as JSON. Protobufs technically have an official JSON encoding rule called 'jsonpb` but prost doesn't offer native supprot for it. `prost` allows us to specify arbitrary derive metadata to be added to generated code. We emit the `serde` derive directives in the two packages that generate prost code (`generated_types` and `google_types`). We use the `serde(rename_all = "camelCase")` to approximate `jsonpb`. We instruct `prost` to use `bytes::Bytes` for some types, hence we must turn on the `serde` feature on the `bytes` dependency. We also use json to serialize the output of the `database get` command, to showcase the feature and get rid of a TODO. In a subsequent PR I'll teach `database create` (and the yet to be done `database update`) to accept an option JSON configuration body so we can configure partitioning, lifecycle, sharding etc rules etc. Caveats ------- This is not technically `jsonpb`. Main issues: 1. default values not omitted 2. no special rendering of special types like `google.protobuf.Any` Future work ----------- Figure out if we can get fully compliant `jsonpb`, or at least a decent approximation. Effect ------ ```console $ cargo run -- database get foobar_weather { "name": "foobar_weather", "partitionTemplate": { "parts": [ { "part": { "time": "%Y-%m-%d %H:00:00" } } ] }, "lifecycleRules": { "mutableLingerSeconds": 0, "mutableMinimumAgeSeconds": 0, "mutableSizeThreshold": 0, "bufferSizeSoft": 0, "bufferSizeHard": 0, "sortOrder": { "order": 2, "sort": { "createdAtTime": {} } }, "dropNonPersisted": false, "immutable": false }, "walBufferConfig": null, "shardConfig": { "specificTargets": null, "hashRing": null, "ignoreErrors": false } } ```
2021-03-30 02:29:47 +00:00
serde = { version = "1.0", features = ["derive"] }
snafu = "0.7"
tonic = "0.8"
workspace-hack = { path = "../workspace-hack"}
[build-dependencies] # In alphabetical order
tonic-build = "0.8"
prost-build = "0.11"
pbjson-build = "0.5"
[dev-dependencies]
data_types = { path = "../data_types" }
datafusion = { path = "../datafusion" }
predicate = { path = "../predicate" }
[features]
default = ["data_types_conversions"]
2022-05-05 19:29:24 +00:00
data_types_conversions = ["data_types", "datafusion", "predicate"]