Interface IScheduler
-
- All Known Implementing Classes:
ClusterScheduler,StandaloneScheduler
public interface IScheduler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidabortFragmentInstance(FragmentInstanceId instanceId, java.lang.Throwable failureCause)voidcancelFragment(PlanFragmentId planFragmentId)FragmentInfogetFragmentInfo()io.airlift.units.DurationgetTotalCpuTime()voidstart()voidstop()
-
-
-
Method Detail
-
start
void start()
-
stop
void stop()
-
getTotalCpuTime
io.airlift.units.Duration getTotalCpuTime()
-
getFragmentInfo
FragmentInfo getFragmentInfo()
-
abortFragmentInstance
void abortFragmentInstance(FragmentInstanceId instanceId, java.lang.Throwable failureCause)
-
cancelFragment
void cancelFragment(PlanFragmentId planFragmentId)
-
-