hdfs-native 0.9.1

Native HDFS client implementation in Rust
Documentation
1
2
3
4
5
6
7
use std::sync::Mutex;

pub static EC_FAULT_INJECTOR: Mutex<Option<EcFaultInjection>> = Mutex::new(None);

pub struct EcFaultInjection {
    pub fail_blocks: Vec<usize>,
}