-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Support timeout after waiting RPC response for a maximum time. #47 * timeout key by define const Co-authored-by: qunwei <[email protected]>
- Loading branch information
1 parent
aa21f11
commit b3fce7f
Showing
4 changed files
with
148 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 std::time::{SystemTime, UNIX_EPOCH}; | ||
|
||
use serde_json::Value; | ||
|
||
use crate::{ | ||
codegen::Request, | ||
context::{Context, RpcContext}, | ||
filter::{TIMEOUT_COUNTDOWN, TIMEOUT_DEFAULT, TRI_TIMEOUT_DEADLINE_IN_NANOS}, | ||
status::Status, | ||
}; | ||
|
||
use super::Filter; | ||
|
||
#[derive(Clone)] | ||
pub struct ContextFilter {} | ||
|
||
impl Filter for ContextFilter { | ||
fn call(&mut self, req: Request<()>) -> Result<Request<()>, Status> { | ||
let headers = &mut req.metadata.into_headers(); | ||
|
||
let timeout = headers.get(TIMEOUT_COUNTDOWN); | ||
|
||
let time = SystemTime::now() | ||
.duration_since(UNIX_EPOCH) | ||
.unwrap() | ||
.as_nanos(); | ||
|
||
let mut dead_line_in_nanos = 0_u128; | ||
|
||
if let Some(t) = timeout { | ||
let timeout: u128 = t.to_str().unwrap().parse().unwrap(); | ||
if timeout > 0_u128 { | ||
dead_line_in_nanos = time + timeout * 1000000; | ||
} | ||
} else { | ||
let timeout: u128 = TIMEOUT_DEFAULT * 1000000; | ||
dead_line_in_nanos = time + timeout; | ||
} | ||
|
||
tracing::debug!( | ||
"ContextFilter tri-timeout-deadline-in-nanos : {}", | ||
dead_line_in_nanos | ||
); | ||
if let Some(at) = RpcContext::get_attachments() { | ||
let mut attachments = at.lock().unwrap(); | ||
attachments.insert( | ||
String::from(TRI_TIMEOUT_DEADLINE_IN_NANOS), | ||
Value::from(dead_line_in_nanos.to_string()), | ||
); | ||
} | ||
|
||
Ok(req) | ||
} | ||
} |
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 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 std::time::{SystemTime, UNIX_EPOCH}; | ||
|
||
use crate::{ | ||
codegen::Request, | ||
context::{Context, RpcContext}, | ||
filter::TRI_TIMEOUT_DEADLINE_IN_NANOS, | ||
status::{Code, Status}, | ||
}; | ||
|
||
use super::Filter; | ||
|
||
#[derive(Clone)] | ||
pub struct TimeoutFilter {} | ||
|
||
/// timeout count | ||
/// 1. ContextFilter 初始化 timeout 时间,初始化后将 tri-timeout-deadline-in-nanos 放入 context 中 | ||
/// 2. TimeoutFilter read context tri-timeout-deadline-in-nanos | ||
/// 3. 响应时计算 tri-timeout-deadline-in-nanos - current_nanos <= 0 | ||
/// | ||
impl Filter for TimeoutFilter { | ||
fn call(&mut self, req: Request<()>) -> Result<Request<()>, Status> { | ||
if let Some(attachments) = RpcContext::get_attachments() { | ||
let current_nanos = SystemTime::now() | ||
.duration_since(UNIX_EPOCH) | ||
.unwrap() | ||
.as_nanos(); | ||
|
||
let attachments = attachments.lock().unwrap(); | ||
let tri_timeout_deadline_in_nanos = | ||
attachments.get(TRI_TIMEOUT_DEADLINE_IN_NANOS).unwrap(); | ||
let tri_timeout_deadline_in_nanos: u128 = tri_timeout_deadline_in_nanos | ||
.as_str() | ||
.unwrap() | ||
.parse() | ||
.unwrap(); | ||
|
||
tracing::debug!( | ||
"TimeoutFilter tri-timeout-deadline-in-nanos : {}, current-nanos:{}", | ||
tri_timeout_deadline_in_nanos, | ||
current_nanos | ||
); | ||
if tri_timeout_deadline_in_nanos - current_nanos <= 0 { | ||
return Err(Status::new(Code::DeadlineExceeded, String::from("Timeout"))); | ||
} | ||
} | ||
|
||
Ok(req) | ||
} | ||
} |
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