hi all,
I try to find the deleteComponents and deleteHosts feature ,but that is not
supported.
Docs any plan for these feature
and** implementation guideline?
from
ambari/ambari-server/src/main/java/org/apache/ambari/server/controller/
AmbariManagementControllerImpl.java
@Override
public RequestStatusResponse deleteComponents(
Set<ServiceComponentRequest> request) throws AmbariException {
throw new AmbariException("Delete components not supported");
}
@Override
public void deleteHosts(Set<HostRequest> request)
throws AmbariException {
throw new AmbariException("Delete hosts not supported");
}
|