All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.runtime.query.KvStateClientProxy Maven / Gradle / Ivy

There is a newer version: 1.13.6
Show newest version
/*
 * 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.runtime.query;

import org.apache.flink.runtime.instance.ActorGateway;

import java.util.concurrent.CompletableFuture;

/**
 * An interface for the Queryable State Client Proxy running on each Task Manager in the cluster.
 *
 * 

This proxy is where the Queryable State Client (potentially running outside your Flink * cluster) connects to, and his responsibility is to forward the client's requests to the rest * of the entities participating in fetching the requested state, and running within the cluster. * *

These are: *

    *
  1. the {@link org.apache.flink.runtime.jobmanager.JobManager Job Manager}, * which is responsible for sending the * {@link org.apache.flink.runtime.taskmanager.TaskManager Task Manager} storing * the requested state, and
  2. *
  3. the Task Manager having the state itself.
  4. *
*/ public interface KvStateClientProxy extends KvStateServer { /** * Updates the active {@link org.apache.flink.runtime.jobmanager.JobManager Job Manager} * in case of change. * *

This is useful in settings where high-availability is enabled and * a failed Job Manager is replaced by a new one. * *

IMPORTANT: this method may be called by a different thread than the {@link #getJobManagerFuture()}. * * @param leadingJobManager the currently leading job manager. * */ void updateJobManager(CompletableFuture leadingJobManager) throws Exception; /** * Retrieves a future containing the currently leading Job Manager. * *

IMPORTANT: this method may be called by a different thread than the * {@link #updateJobManager(CompletableFuture)}. * * @return A {@link CompletableFuture} containing the currently active Job Manager. */ CompletableFuture getJobManagerFuture(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy