See: Description
Interface | Description |
---|---|
DataServer |
Defines how to interact with a server running the data protocol.
|
JobWorkerProcess |
A job worker in the Alluxio system.
|
SessionCleanable |
Interface for classes which track sessions and provide a method to clean any expired sessions.
|
Worker |
Interface of an Alluxio worker.
|
WorkerFactory |
Interface for factory of
Worker . |
WorkerProcess |
A worker in the Alluxio system.
|
Class | Description |
---|---|
AbstractWorker |
This is the base class for all workers, and contains common functionality.
|
AlluxioJobWorker |
Entry point for the Alluxio worker.
|
AlluxioJobWorkerProcess |
This class is responsible for initializing the different workers that are configured to run.
|
AlluxioJobWorkerRestServiceHandler |
This class is a REST handler for requesting general job worker information.
|
AlluxioWorker |
Entry point for the Alluxio worker.
|
AlluxioWorkerMonitor |
Alluxio worker monitor for inquiring AlluxioWorker service availability.
|
AlluxioWorkerProcess |
This class encapsulates the different worker services that are configured to run.
|
AlluxioWorkerRestServiceHandler |
This class is a REST handler for requesting general worker information.
|
BlockUtils |
Block related utils methods.
|
JobWorker |
A job worker that manages all the worker-related activities.
|
JobWorkerIdRegistry |
The single place to get, set, and update job worker id.
|
JobWorkerProcess.Factory |
Factory for creating
JobWorkerProcess . |
SessionCleaner |
SessionCleaner periodically checks if any session have become zombies, removes the zombie session
and associated data when necessary.
|
WorkerHealthCheckClient |
WorkerHealthCheckClient check if worker is serving RPC.
|
WorkerProcess.Factory |
Factory for creating
WorkerProcess . |
WorkerRegistry |
A worker registry.
|
AlluxioWorker.main(java.lang.String[])
which gets started by the alluxio start scripts. The WorkerProcess
spins up the different RPC services (gRPC, data) which are mostly wrappers around
BlockWorker
.
DataServer
interface defines how to start/stop, and get port
details; to start, object init is used. The implementation of this interface is in
GrpcDataServer
. It creates an DataServer
instance based on gRPC which is a high performance universal remote procedure call framework.
Data server handles the following types of block requests:
Protocol
.
All the requests are generated by Protobuf to keep the protocol extensible but also
backward-compatible.Copyright © 2023. All Rights Reserved.