common_procedure/store/
poison_store.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// 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 std::sync::Arc;

use async_trait::async_trait;

use crate::error::Result;

pub type PoisonStoreRef = Arc<dyn PoisonStore>;

/// Poison store.
///
/// This trait is used to manage the state of operations on resources, particularly
/// when an operation encounters an unrecoverable error, potentially leading to
/// metadata inconsistency. In such cases, manual intervention is required to
/// resolve the issue before any further operations can be performed on the resource.
///
/// ## Behavior:
/// - **Insertion**: When an operation begins on a resource, a "poison" key is inserted
///   into the state store to indicate the operation is in progress.
/// - **Deletion**: If the operation completes successfully or
///   other cases can ensure the resource is in a consistent state, the poison key is removed
///   from the state store, indicating the resource is in a consistent state.
/// - **Failure Handling**:
///   - If the operation fails or other cases may lead to metadata inconsistency,
///     the poison key remains in the state store.
///   - The presence of this key indicates that the resource has encountered an
///     unrecoverable error and the metadata may be inconsistent.
///   - New operations on the same resource are rejected until the resource is
///     manually recovered and the poison key is removed.
#[async_trait]
pub trait PoisonStore: Send + Sync {
    /// Try to put the poison key.
    ///
    /// If the poison key already exists with a different value, the operation will fail.
    async fn try_put_poison(&self, key: String, token: String) -> Result<()>;

    /// Delete the poison key.
    ///
    /// If the poison key exists with a different value, the operation will fail.
    async fn delete_poison(&self, key: String, token: String) -> Result<()>;

    /// Get the poison key.
    ///
    /// If the poison key does not exist, the operation will return `None`.
    async fn get_poison(&self, key: &str) -> Result<Option<String>>;
}