Struct tikv::server::server::Server[][src]

pub struct Server<T: RaftStoreRouter<RocksEngine> + 'static, S: StoreAddrResolver + 'static> {
    env: Arc<Environment>,
    builder_or_server: Option<Either<ServerBuilder, GrpcServer>>,
    local_addr: SocketAddr,
    trans: ServerTransport<T, S, RocksEngine>,
    raft_router: T,
    snap_mgr: SnapManager,
    snap_worker: LazyWorker<SnapTask>,
    stats_pool: Option<Runtime>,
    grpc_thread_load: Arc<ThreadLoad>,
    yatp_read_pool: Option<ReadPool>,
    debug_thread_pool: Arc<Runtime>,
    health_service: HealthService,
    timer: Handle,
}

The TiKV server

It hosts various internal components, including gRPC, the raftstore router and a snapshot worker.

Fields

env: Arc<Environment>builder_or_server: Option<Either<ServerBuilder, GrpcServer>>

A GrpcServer builder or a GrpcServer.

If the listening port is configured, the server will be started lazily.

local_addr: SocketAddrtrans: ServerTransport<T, S, RocksEngine>raft_router: Tsnap_mgr: SnapManagersnap_worker: LazyWorker<SnapTask>stats_pool: Option<Runtime>grpc_thread_load: Arc<ThreadLoad>yatp_read_pool: Option<ReadPool>debug_thread_pool: Arc<Runtime>health_service: HealthServicetimer: Handle

Implementations

impl<T: RaftStoreRouter<RocksEngine> + Unpin, S: StoreAddrResolver + 'static> Server<T, S>[src]

pub fn new<E: Engine, L: LockManager>(
    store_id: u64,
    cfg: &Arc<VersionTrack<Config>>,
    security_mgr: &Arc<SecurityManager>,
    storage: Storage<E, L>,
    copr: Endpoint<E>,
    copr_v2: Endpoint,
    raft_router: T,
    resolver: S,
    snap_mgr: SnapManager,
    gc_worker: GcWorker<E, T>,
    env: Arc<Environment>,
    yatp_read_pool: Option<ReadPool>,
    debug_thread_pool: Arc<Runtime>
) -> Result<Self>
[src]

pub fn get_debug_thread_pool(&self) -> &RuntimeHandle[src]

pub fn get_snap_worker_scheduler(&self) -> Scheduler<SnapTask>[src]

pub fn transport(&self) -> ServerTransport<T, S, RocksEngine>[src]

pub fn env(&self) -> Arc<Environment>[src]

pub fn register_service(&mut self, svc: Service) -> Option<Service>[src]

Register a gRPC service. Register after starting, it fails and returns the service.

pub fn build_and_bind(&mut self) -> Result<SocketAddr>[src]

Build gRPC server and bind to address.

pub fn start(
    &mut self,
    cfg: Arc<VersionTrack<Config>>,
    security_mgr: Arc<SecurityManager>
) -> Result<()>
[src]

Starts the TiKV server. Notice: Make sure call build_and_bind first.

pub fn stop(&mut self) -> Result<()>[src]

Stops the TiKV server.

pub fn listening_addr(&self) -> SocketAddr[src]

Auto Trait Implementations

impl<T, S> !RefUnwindSafe for Server<T, S>

impl<T, S> !Send for Server<T, S>

impl<T, S> !Sync for Server<T, S>

impl<T, S> Unpin for Server<T, S> where
    S: Unpin,
    T: Unpin

impl<T, S> !UnwindSafe for Server<T, S>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<V, W> ConvertFrom<W> for V where
    W: ConvertTo<V>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]