Status Update: 2022-05-25 #26
Replies: 7 comments 3 replies
-
Refactoring of Pylot
|
Beta Was this translation helpful? Give feedback.
-
Adding Opentelemetry Metrics with System Metrics
|
Beta Was this translation helpful? Give feedback.
-
Opening an Opentelemetry-rust-system-metrics repoSee: https://github.com/haixuanTao/opentelemetry-rust-system-metrics Opentelemetry-rust-system-metrics allow process-level system metrics export into opentelemetry. Observed metrics are:
It is based on I'm currently pushing the addition of network usage monitoring within This is will monitor the cost/gain of serialization/deserialization, shared-memory, zenoh, ... But it might not be easy, and to make it efficient a novel approach using ebpf and aya might be interesting. |
Beta Was this translation helpful? Give feedback.
-
Monitoring Otel metrics via InfluxDB
|
Beta Was this translation helpful? Give feedback.
-
Rust RuntimeWe created an initial prototype version of a dora runtime, which is able to run "light-weight" operators. It currently supports the following:
extern "C" fn dora_on_input(
id_start: *const u8,
id_len: usize,
data_start: *const u8,
data_len: usize,
output_fn_raw: OutputFnRaw,
output_context: *const c_void,
) -> isize
type OutputFnRaw = unsafe extern "C" fn(
id_start: *const u8,
id_len: usize,
data_start: *const u8,
data_len: usize,
output_context: *const c_void,
) -> isize;
Next StepsThere are still some things missing:
|
Beta Was this translation helpful? Give feedback.
-
Meeting: Do Dora follow the Dynamic deadline design? |
Beta Was this translation helpful? Give feedback.
-
This discussion about tokio async performance might be relevant to us in future, when we deal with performance issues. |
Beta Was this translation helpful? Give feedback.
-
In this discussion, we describe our recent progress and the main topics that we would like to discuss in today's meeting. We use a separate post for each topic to keep the discussion focused. Feel free to create new posts for topics that are not mentioned yet.
Beta Was this translation helpful? Give feedback.
All reactions