materialize
materialize copied to clipboard
The Cloud Operational Data Store: use SQL to transform, deliver, and act on fast-changing data.
### Tips for reviewer The comments should explain it all, but please yell at me if they don't. Also: I should probably downgrade the logging to `trace!` before merging, but...
This commit prevents defining a Kafka connection inline when creating a Kafka source. Instead a Kafka connection object must be created first, and then referenced in the Kafka source creation....
### Motivation In #14825, @philip-stoev encountered a very bad error message; it refers to a record field name as a key, which is especially confusing in the context of Kafka...
If the upper and shard-global since are both the empty antichain, then no further writes can ever commit and no further reads can be served. Optimize the shard into a...
It'd be very helpful to be able to toggle our log levels dynamically when debugging actively-running applications, so we can selectively dig deeper into app behavior without needing a deploy...
## What's wrong? According to @benesch, `mz_materializations` currently has an unclear purpose. ## What should we do? Potentially ditch `mz_materializations` (delete it entirely!) in favor of `mz_indexes`. @ggnall - can...
Instead of manually deleting created Kubernetes resources, we can use `ownerReference` on the top-level resource (currently the `StatefulSet`) and let Kubernetes garbage collect the child resources (e.g. `Service`). Per Paul's...
We create a Kubernetes service and stateful set, but never delete the service on drop. I added the service delete call to the orchestrator and updated the existing smoketests to...
For running CI.
### Motivation This is one of the issues that @philip-stoev discovered when trying to run CI with `workers > 1` (see #14273) ### Notes for reviewers It's very important to...