-
Notifications
You must be signed in to change notification settings - Fork 590
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bugen Zhao <[email protected]>
- Loading branch information
Showing
5 changed files
with
120 additions
and
99 deletions.
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,50 @@ | ||
// Copyright 2024 RisingWave Labs | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
use serde::{Deserialize, Serialize}; | ||
|
||
/// The score of the error. | ||
/// | ||
/// Currently, it's used to identify the root cause of streaming pipeline failures, i.e., which actor | ||
/// led to the failure. | ||
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)] | ||
pub struct Score(pub i32); | ||
|
||
/// Extra fields in errors that can be passed through the gRPC boundary. | ||
/// | ||
/// - Field being set to `None` means it is not available. | ||
/// - To add a new field, also update the `provide` method. | ||
#[derive(Debug, Default, Clone, Serialize, Deserialize)] | ||
pub(super) struct Extra { | ||
pub score: Option<Score>, | ||
} | ||
|
||
impl Extra { | ||
/// Create a new [`Extra`] by [requesting](std::error::request_ref) each field from the given error. | ||
pub fn new<T>(error: &T) -> Self | ||
where | ||
T: ?Sized + std::error::Error, | ||
{ | ||
Self { | ||
score: std::error::request_value(error), | ||
} | ||
} | ||
|
||
/// Provide each field to the given [request](std::error::Request). | ||
pub fn provide<'a>(&'a self, request: &mut std::error::Request<'a>) { | ||
if let Some(score) = self.score { | ||
request.provide_value(score); | ||
} | ||
} | ||
} |
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