Sergii Mikhtoniuk

Results 56 comments of Sergii Mikhtoniuk

Thanks for your reply @thoren-d. Firstly I made this tiny app to reproduce the issue: Cargo.toml ```rust [package] name = "test-profile" version = "0.1.0" edition = "2021" [dependencies] tracing =...

Perhaps Perfetto is just not the right tool for this job of displaying flows of execution flows, and only suited for profiling what CPUs are actually doing ... but I...

After some experimentation I ended up writing a custom layer that: - on every span enter/exit writes a synchronous begin/end events (`ph: B/E`) - on every span new/close writes async...

@zaychenko-sergei pointed out that this is likely because `KAMU_PROTOCOL_SCHEME` env var is not set. This task is now to: - Support `extraEnv` in `kamu-api-server` helm chart (so we could patch...

@zaychenko-sergei FYI setting `KAMU_PROTOCOL_SCHEME` on the server does not solve the issue. `ws://` protocol is chosen on the client side: https://github.com/kamu-data/kamu-cli/blob/c1c183787d59da2eb428a0ae777c38f4d0f22214/src/adapter/http/src/smart_protocol/ws_tungstenite_client.rs#L481 Updated ticket description and my last comment.

I also hit this issue on latest chart `0.10.14`. If you go to `Settings / Database connections` and do `Test connection` on `examples` database you will see an SQLite-related error...

I think this is some regression in helm setup. The `superset load_examples` command that populates `examples.db` is executed in `superset_init.sh` script which is only run by init job. Init job...

This issue still exists. I created a new project with `forge init`, configured formatter the same way as described in the issue - everything was fine. After restarting VSCode formatter...

The last output is clearly not JSON... Have you re-built the master branch after switching to it from your dev branch? You can also install try this using a release...

Tested this on datafusion `37.1.0`. It doesn't crash any more but does return an error: ``` Error: Cannot write output, arrow error occurred : Invalid argument error: JSON Writer does...