risingwave_common_secret

Struct LocalSecretManager

source
pub struct LocalSecretManager {
    secrets: RwLock<HashMap<u32, Vec<u8>>>,
    secret_file_dir: PathBuf,
}

Fields§

§secrets: RwLock<HashMap<u32, Vec<u8>>>§secret_file_dir: PathBuf

The local directory used to write secrets into file, so that it can be passed into some libararies

Implementations§

source§

impl LocalSecretManager

source

pub fn init(temp_file_dir: String, cluster_id: String, worker_id: u32)

Initialize the secret manager with the given temp file path, cluster id, and encryption key.

§Panics

Panics if fail to create the secret file directory.

source

pub fn global() -> &'static LocalSecretManager

Get the global secret manager instance.

§Panics

Panics if the secret manager is not initialized.

source

pub fn add_secret(&self, secret_id: u32, secret: Vec<u8>)

source

pub fn init_secrets(&self, secrets: Vec<PbSecret>)

source

pub fn get_secret(&self, secret_id: u32) -> Option<Vec<u8>>

source

pub fn remove_secret(&self, secret_id: u32)

source

pub fn fill_secrets( &self, options: BTreeMap<String, String>, secret_refs: BTreeMap<String, PbSecretRef>, ) -> SecretResult<BTreeMap<String, String>>

source

fn get_or_init_secret_file( &self, secret_id: u32, secret_bytes: Vec<u8>, ) -> SecretResult<String>

Get the secret file for the given secret id and return the path string. If the file does not exist, create it. WARNING: This method should be called only when the secret manager is locked.

source

fn remove_secret_file_if_exist(&self, secret_id: &u32)

WARNING: This method should be called only when the secret manager is locked.

source

fn get_secret_value(pb_secret_bytes: &[u8]) -> SecretResult<Vec<u8>>

Trait Implementations§

source§

impl Debug for LocalSecretManager

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more