-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: sync regions between RegionServer and RegionAliveKeeper (#2417)
* feat: sync regions between RegionServer and RegionAliveKeeper * Apply suggestions from code review Co-authored-by: JeremyHi <[email protected]> * refactor: rename event name * chore: apply suggestions --------- Co-authored-by: JeremyHi <[email protected]>
- Loading branch information
1 parent
98a40ba
commit 5b08e03
Showing
6 changed files
with
149 additions
and
9 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,67 @@ | ||
// Copyright 2023 Greptime Team | ||
// | ||
// 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 common_telemetry::error; | ||
use store_api::storage::RegionId; | ||
use tokio::sync::mpsc::{self, UnboundedReceiver, UnboundedSender}; | ||
|
||
pub enum RegionServerEvent { | ||
Registered(RegionId), | ||
Deregistered(RegionId), | ||
} | ||
|
||
pub trait RegionServerEventListener: Sync + Send { | ||
/// Called *after* a new region was created/opened. | ||
fn on_region_registered(&self, _region_id: RegionId) {} | ||
|
||
/// Called *after* a region was closed. | ||
fn on_region_deregistered(&self, _region_id: RegionId) {} | ||
} | ||
|
||
pub type RegionServerEventListenerRef = Box<dyn RegionServerEventListener>; | ||
|
||
pub struct NoopRegionServerEventListener; | ||
|
||
impl RegionServerEventListener for NoopRegionServerEventListener {} | ||
|
||
#[derive(Debug, Clone)] | ||
pub struct RegionServerEventSender(pub(crate) UnboundedSender<RegionServerEvent>); | ||
|
||
impl RegionServerEventListener for RegionServerEventSender { | ||
fn on_region_registered(&self, region_id: RegionId) { | ||
if let Err(e) = self.0.send(RegionServerEvent::Registered(region_id)) { | ||
error!( | ||
"Failed to send registering region: {region_id} event, source: {}", | ||
e | ||
); | ||
} | ||
} | ||
|
||
fn on_region_deregistered(&self, region_id: RegionId) { | ||
if let Err(e) = self.0.send(RegionServerEvent::Deregistered(region_id)) { | ||
error!( | ||
"Failed to send deregistering region: {region_id} event, source: {}", | ||
e | ||
); | ||
} | ||
} | ||
} | ||
|
||
pub struct RegionServerEventReceiver(pub(crate) UnboundedReceiver<RegionServerEvent>); | ||
|
||
pub fn new_region_server_event_channel() -> (RegionServerEventSender, RegionServerEventReceiver) { | ||
let (tx, rx) = mpsc::unbounded_channel(); | ||
|
||
(RegionServerEventSender(tx), RegionServerEventReceiver(rx)) | ||
} |
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