
org.apache.flink.kubernetes.kubeclient.resources.AbstractKubernetesWatcher Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.flink.kubernetes.kubeclient.resources;
import org.apache.flink.kubernetes.kubeclient.FlinkKubeClient;
import io.fabric8.kubernetes.api.model.HasMetadata;
import io.fabric8.kubernetes.client.Watcher;
import io.fabric8.kubernetes.client.WatcherException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** Watcher for resources in Kubernetes. */
public abstract class AbstractKubernetesWatcher<
T extends HasMetadata, K extends KubernetesResource>
implements Watcher {
protected final Logger logger = LoggerFactory.getLogger(getClass());
protected final FlinkKubeClient.WatchCallbackHandler callbackHandler;
AbstractKubernetesWatcher(FlinkKubeClient.WatchCallbackHandler callbackHandler) {
this.callbackHandler = callbackHandler;
}
@Override
public void onClose(WatcherException cause) {
// null means the watcher is closed normally.
if (cause == null) {
logger.info("The watcher is closing.");
} else {
// Fabric8 Kubernetes client will directly close the watcher when received a HTTP_GONE
// status code, so this should be handled by the caller. Refer to
// https://github.com/fabric8io/kubernetes-client/blob/v4.9.2/kubernetes-client/src/main/java/io/fabric8/kubernetes/client/dsl/internal/WatchConnectionManager.java#L255
// for more information about the implementation.
if (cause.isHttpGone()) {
logger.debug(
"Got a http code 'HTTP_GONE' which means the Kubernetes client has the "
+ "too old resource version.",
cause);
callbackHandler.handleError(new KubernetesTooOldResourceVersionException(cause));
} else {
callbackHandler.handleError(cause);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy