Gerd Zellweger
Gerd Zellweger
It would be nice to support https://github.com/wolfpld/tracy with minitrace too, they already have support for the tracing crate https://github.com/nagisa/rust_tracy_client/tree/main
we already have int64, it would be nice to use `int32` for 4-byte integers 
From @zamazan4ik: The `Cargo.toml` file Link-Time Optimization (LTO) for the Rust part of the project is not enabled. I suggest switching it on since it will reduce the binary size...
First, this works as expected: Step 0: `fda start test` Step 1: `fda log test --watch` Step 2: `fda stop test` yields: ``` 2024-09-29 01:21:24 INFO [pipeline-019229e6-8e28-7ef1-880e-cfab04c94d6c] Started HTTP server...
each integration test in the pipeline manager currently sets up and compiles a program. I think we can get away with doing the setup/compilation just once and reusing the same...
It would be good to have a ?snapshot=true or similar attribute on the log endpoint that doesn't return a HTTP stream and instead just sends all log messages in the...
``` create table spreadsheet ( id int64 not null primary key, cell text not null, mentions int64 array ) with ('materialized' = 'true'); create materialized view spreadsheet_view as select s.id,...
- If I want to create an API key with a name that already exists nothing happens but the user also doesn't get any feedback in form of an error...
There is no need to print the config on every pipeline startup in the manager; e.g., maybe we can do it but then it should be debug! and not stdout....
Database CLIs usually allow executing a SQL script with many statements. I guess this can be used to achieve the same effect by executing commands one by one. We may...