-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Added replay aware tracing filter #30
Open
h7kanna
wants to merge
1
commit into
restatedev:main
Choose a base branch
from
h7kanna:replay-aware-logger
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
use restate_sdk::prelude::*; | ||
use std::convert::Infallible; | ||
use std::time::Duration; | ||
use tracing::info; | ||
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt, Layer}; | ||
|
||
#[restate_sdk::service] | ||
trait Greeter { | ||
async fn greet(name: String) -> Result<String, Infallible>; | ||
} | ||
|
||
struct GreeterImpl; | ||
|
||
impl Greeter for GreeterImpl { | ||
async fn greet(&self, ctx: Context<'_>, name: String) -> Result<String, Infallible> { | ||
let timeout = 60; // More than suspension timeout to trigger replay | ||
info!("This will be logged on replay"); | ||
_ = ctx.service_client::<DelayerClient>().delay(1).call().await; | ||
info!("This will not be logged on replay"); | ||
_ = ctx | ||
.service_client::<DelayerClient>() | ||
.delay(timeout) | ||
.call() | ||
.await; | ||
info!("This will be logged on processing after suspension"); | ||
Ok(format!("Greetings {name} after {timeout} seconds")) | ||
} | ||
} | ||
|
||
#[restate_sdk::service] | ||
trait Delayer { | ||
async fn delay(seconds: u64) -> Result<String, Infallible>; | ||
} | ||
|
||
struct DelayerImpl; | ||
|
||
impl Delayer for DelayerImpl { | ||
async fn delay(&self, ctx: Context<'_>, seconds: u64) -> Result<String, Infallible> { | ||
_ = ctx.sleep(Duration::from_secs(seconds)).await; | ||
info!("Delayed for {seconds} seconds"); | ||
Ok(format!("Delayed {seconds}")) | ||
} | ||
} | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
let env_filter = tracing_subscriber::EnvFilter::try_from_default_env() | ||
.unwrap_or_else(|_| "restate_sdk=info".into()); | ||
let replay_filter = restate_sdk::filter::ReplayAwareFilter; | ||
tracing_subscriber::registry() | ||
.with( | ||
tracing_subscriber::fmt::layer() | ||
.with_filter(env_filter) | ||
.with_filter(replay_filter), | ||
) | ||
.init(); | ||
HttpServer::new( | ||
Endpoint::builder() | ||
.bind(GreeterImpl.serve()) | ||
.bind(DelayerImpl.serve()) | ||
.build(), | ||
) | ||
.listen_and_serve("0.0.0.0:9080".parse().unwrap()) | ||
.await; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
//! Replay aware tracing filter | ||
//! | ||
//! Use this filter to skip tracing events in the service/workflow while replaying. | ||
//! | ||
//! Example: | ||
//! ```rust,no_run | ||
//! use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt, Layer}; | ||
//! let replay_filter = restate_sdk::filter::ReplayAwareFilter; | ||
//! tracing_subscriber::registry() | ||
//! .with(tracing_subscriber::fmt::layer().with_filter(replay_filter)) | ||
//! .init(); | ||
//! ``` | ||
use std::fmt::Debug; | ||
use tracing::{ | ||
field::{Field, Visit}, | ||
span::{Attributes, Record}, | ||
Event, Id, Metadata, Subscriber, | ||
}; | ||
use tracing_subscriber::{ | ||
layer::{Context, Filter}, | ||
registry::LookupSpan, | ||
Layer, | ||
}; | ||
|
||
#[derive(Debug)] | ||
struct ReplayField(bool); | ||
|
||
struct ReplayFieldVisitor(bool); | ||
|
||
impl Visit for ReplayFieldVisitor { | ||
fn record_bool(&mut self, field: &Field, value: bool) { | ||
if field.name().eq("replaying") { | ||
self.0 = value; | ||
} | ||
} | ||
|
||
fn record_debug(&mut self, _field: &Field, _value: &dyn Debug) {} | ||
} | ||
|
||
pub struct ReplayAwareFilter; | ||
|
||
impl<S: Subscriber + for<'lookup> LookupSpan<'lookup>> Filter<S> for ReplayAwareFilter { | ||
fn enabled(&self, _meta: &Metadata<'_>, _cx: &Context<'_, S>) -> bool { | ||
true | ||
} | ||
|
||
fn event_enabled(&self, event: &Event<'_>, cx: &Context<'_, S>) -> bool { | ||
if let Some(scope) = cx.event_scope(event) { | ||
if let Some(span) = scope.from_root().next() { | ||
let extensions = span.extensions(); | ||
if let Some(replay) = extensions.get::<ReplayField>() { | ||
return !replay.0; | ||
} | ||
} | ||
true | ||
} else { | ||
true | ||
} | ||
} | ||
|
||
fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>) { | ||
if let Some(span) = ctx.span(id) { | ||
let mut visitor = ReplayFieldVisitor(false); | ||
attrs.record(&mut visitor); | ||
let mut extensions = span.extensions_mut(); | ||
extensions.insert::<ReplayField>(ReplayField(visitor.0)); | ||
} | ||
} | ||
|
||
fn on_record(&self, id: &Id, values: &Record<'_>, ctx: Context<'_, S>) { | ||
if let Some(span) = ctx.span(id) { | ||
let mut visitor = ReplayFieldVisitor(false); | ||
values.record(&mut visitor); | ||
let mut extensions = span.extensions_mut(); | ||
extensions.replace::<ReplayField>(ReplayField(visitor.0)); | ||
} | ||
} | ||
} | ||
|
||
impl<S: Subscriber> Layer<S> for ReplayAwareFilter {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure how and if this works.
replaying
IMO should be an aspect of the individual events, not of the trace. Also what you did here https://github.com/restatedev/sdk-rust/pull/30/files#diff-6658812715089c8241f20814aaf257dbd94a5448e01cf0010a0a2da54406f844R70 i suspect it doesn't really work, because you make "replaying" a field of the whole invocation attempt.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is what I was looking for, But I did not realize restate-sdk-shared-core = "0.1.0" still in the SDK.
Yes, 'replaying' field is part of the events and it is injected on state changes. This is working in my SDK.
I will make necessary change and add a test. Not urgent. I am anyways using my fork.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For testing purposes, you can change the version to a git reference: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-git-repositories
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ya, there are other changes I need to do to update to the latest shared sdk
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's working now though
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs 'is_processing' method