Uses of Interface
org.apache.pinot.broker.failuredetector.FailureDetector
-
Packages that use FailureDetector Package Description org.apache.pinot.broker.failuredetector org.apache.pinot.broker.requesthandler -
-
Uses of FailureDetector in org.apache.pinot.broker.failuredetector
Classes in org.apache.pinot.broker.failuredetector that implement FailureDetector Modifier and Type Class Description classBaseExponentialBackoffRetryFailureDetectorTheBaseExponentialBackoffRetryFailureDetectoris a base failure detector implementation that retries the unhealthy servers with exponential increasing delays.classConnectionFailureDetectorTheConnectionFailureDetectormarks failed server (connection failure) from query response as unhealthy, and retries the unhealthy servers with exponential increasing delays.classNoOpFailureDetectorMethods in org.apache.pinot.broker.failuredetector that return FailureDetector Modifier and Type Method Description static FailureDetectorFailureDetectorFactory. getFailureDetector(org.apache.pinot.spi.env.PinotConfiguration config, org.apache.pinot.common.metrics.BrokerMetrics brokerMetrics)Methods in org.apache.pinot.broker.failuredetector with parameters of type FailureDetector Modifier and Type Method Description voidFailureDetector.Listener. notifyHealthyServer(String instanceId, FailureDetector failureDetector)Notifies the listener of a previous unhealthy server turning healthy.voidFailureDetector.Listener. notifyUnhealthyServer(String instanceId, FailureDetector failureDetector)Notifies the listener of an unhealthy server.voidFailureDetector.Listener. retryUnhealthyServer(String instanceId, FailureDetector failureDetector)Notifies the listener to retry a previous unhealthy server. -
Uses of FailureDetector in org.apache.pinot.broker.requesthandler
Methods in org.apache.pinot.broker.requesthandler with parameters of type FailureDetector Modifier and Type Method Description voidSingleConnectionBrokerRequestHandler. notifyHealthyServer(String instanceId, FailureDetector failureDetector)voidSingleConnectionBrokerRequestHandler. notifyUnhealthyServer(String instanceId, FailureDetector failureDetector)voidSingleConnectionBrokerRequestHandler. retryUnhealthyServer(String instanceId, FailureDetector failureDetector)
-