Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.apache.pulsar.client.admin.internal.FunctionsImpl 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.pulsar.client.admin.internal;
import static org.apache.pulsar.shade.org.asynchttpclient.Dsl.get;
import static org.apache.pulsar.shade.org.asynchttpclient.Dsl.post;
import static org.apache.pulsar.shade.org.asynchttpclient.Dsl.put;
import org.apache.pulsar.shade.com.google.gson.Gson;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.channels.FileChannel;
import java.util.List;
import java.util.Set;
import java.util.concurrent.CompletableFuture;
import java.util.stream.Collectors;
import org.apache.pulsar.shade.javax.ws.rs.client.Entity;
import org.apache.pulsar.shade.javax.ws.rs.client.InvocationCallback;
import org.apache.pulsar.shade.javax.ws.rs.client.WebTarget;
import org.apache.pulsar.shade.javax.ws.rs.core.GenericType;
import org.apache.pulsar.shade.javax.ws.rs.core.MediaType;
import org.apache.pulsar.shade.javax.ws.rs.core.Response;
import lombok.extern.slf4j.Slf4j;
import org.apache.pulsar.shade.org.apache.commons.lang3.StringUtils;
import org.apache.pulsar.client.admin.Functions;
import org.apache.pulsar.client.admin.PulsarAdminException;
import org.apache.pulsar.client.admin.internal.http.AsyncHttpRequestExecutor;
import org.apache.pulsar.client.api.Authentication;
import org.apache.pulsar.common.functions.FunctionConfig;
import org.apache.pulsar.common.functions.FunctionDefinition;
import org.apache.pulsar.common.functions.FunctionState;
import org.apache.pulsar.common.functions.UpdateOptions;
import org.apache.pulsar.common.functions.UpdateOptionsImpl;
import org.apache.pulsar.common.functions.WorkerInfo;
import org.apache.pulsar.common.io.ConnectorDefinition;
import org.apache.pulsar.common.policies.data.FunctionInstanceStatsData;
import org.apache.pulsar.common.policies.data.FunctionInstanceStatsDataImpl;
import org.apache.pulsar.common.policies.data.FunctionStats;
import org.apache.pulsar.common.policies.data.FunctionStatsImpl;
import org.apache.pulsar.common.policies.data.FunctionStatus;
import org.apache.pulsar.shade.org.asynchttpclient.AsyncCompletionHandlerBase;
import org.apache.pulsar.shade.org.asynchttpclient.HttpResponseBodyPart;
import org.apache.pulsar.shade.org.asynchttpclient.RequestBuilder;
import org.apache.pulsar.shade.org.asynchttpclient.request.body.multipart.ByteArrayPart;
import org.apache.pulsar.shade.org.asynchttpclient.request.body.multipart.FilePart;
import org.apache.pulsar.shade.org.asynchttpclient.request.body.multipart.StringPart;
import org.apache.pulsar.shade.org.glassfish.jersey.media.multipart.FormDataBodyPart;
import org.apache.pulsar.shade.org.glassfish.jersey.media.multipart.FormDataMultiPart;
import org.apache.pulsar.shade.org.glassfish.jersey.media.multipart.file.FileDataBodyPart;
@Slf4j
public class FunctionsImpl extends ComponentResource implements Functions {
private final WebTarget functions;
private final AsyncHttpRequestExecutor asyncHttpRequestExecutor;
public FunctionsImpl(WebTarget web, Authentication auth,
AsyncHttpRequestExecutor asyncHttpRequestExecutor,
long requestTimeoutMs) {
super(auth, requestTimeoutMs);
this.functions = web.path("/admin/v3/functions");
this.asyncHttpRequestExecutor = asyncHttpRequestExecutor;
}
@Override
public List getFunctions(String tenant, String namespace) throws PulsarAdminException {
return sync(() -> getFunctionsAsync(tenant, namespace));
}
@Override
public CompletableFuture> getFunctionsAsync(String tenant, String namespace) {
WebTarget path = functions.path(tenant).path(namespace);
return asyncGetRequest(path, new GenericType>() {});
}
@Override
public FunctionConfig getFunction(String tenant, String namespace, String function) throws PulsarAdminException {
return sync(() -> getFunctionAsync(tenant, namespace, function));
}
@Override
public CompletableFuture getFunctionAsync(String tenant, String namespace, String function) {
WebTarget path = functions.path(tenant).path(namespace).path(function);
return asyncGetRequest(path, FunctionConfig.class);
}
@Override
public FunctionStatus getFunctionStatus(
String tenant, String namespace, String function) throws PulsarAdminException {
return sync(() -> getFunctionStatusAsync(tenant, namespace, function));
}
@Override
public CompletableFuture getFunctionStatusAsync(String tenant, String namespace, String function) {
WebTarget path = functions.path(tenant).path(namespace).path(function).path("status");
return asyncGetRequest(path, FunctionStatus.class);
}
@Override
public FunctionStatus.FunctionInstanceStatus.FunctionInstanceStatusData getFunctionStatus(
String tenant, String namespace, String function, int id) throws PulsarAdminException {
return sync(() -> getFunctionStatusAsync(tenant, namespace, function, id));
}
@Override
public CompletableFuture getFunctionStatusAsync(
String tenant, String namespace, String function, int id) {
WebTarget path =
functions.path(tenant).path(namespace).path(function).path(Integer.toString(id)).path("status");
return asyncGetRequest(path, FunctionStatus.FunctionInstanceStatus.FunctionInstanceStatusData.class);
}
@Override
public FunctionInstanceStatsData getFunctionStats(
String tenant, String namespace, String function, int id) throws PulsarAdminException {
return sync(() -> getFunctionStatsAsync(tenant, namespace, function, id));
}
@Override
public CompletableFuture getFunctionStatsAsync(
String tenant, String namespace, String function, int id) {
WebTarget path = functions.path(tenant).path(namespace).path(function).path(Integer.toString(id)).path("stats");
return asyncGetRequest(path, FunctionInstanceStatsDataImpl.class);
}
@Override
public FunctionStats getFunctionStats(String tenant, String namespace, String function)
throws PulsarAdminException {
return sync(() -> getFunctionStatsAsync(tenant, namespace, function));
}
@Override
public CompletableFuture getFunctionStatsAsync(String tenant,
String namespace, String function) {
WebTarget path = functions.path(tenant).path(namespace).path(function).path("stats");
return asyncGetRequest(path, FunctionStatsImpl.class);
}
@Override
public void createFunction(FunctionConfig functionConfig, String fileName) throws PulsarAdminException {
sync(() -> createFunctionAsync(functionConfig, fileName));
}
@Override
public CompletableFuture createFunctionAsync(FunctionConfig functionConfig, String fileName) {
final CompletableFuture future = new CompletableFuture<>();
try {
RequestBuilder builder =
post(functions.path(functionConfig.getTenant()).path(functionConfig.getNamespace())
.path(functionConfig.getName()).getUri().toASCIIString())
.addBodyPart(new StringPart("functionConfig", objectWriter()
.writeValueAsString(functionConfig), MediaType.APPLICATION_JSON));
if (fileName != null && !fileName.startsWith("builtin://")) {
// If the function code is built in, we don't need to submit here
builder.addBodyPart(new FilePart("data", new File(fileName), MediaType.APPLICATION_OCTET_STREAM));
}
asyncHttpRequestExecutor.executeRequest(addAuthHeaders(functions, builder).build())
.thenAccept(response -> {
if (response.getStatusCode() < 200 || response.getStatusCode() >= 300) {
future.completeExceptionally(
getApiException(Response
.status(response.getStatusCode())
.entity(response.getResponseBody())
.build()));
} else {
future.complete(null);
}
})
.exceptionally(throwable -> {
future.completeExceptionally(getApiException(throwable));
return null;
});
} catch (Exception e) {
future.completeExceptionally(e);
}
return future;
}
@Override
public void createFunctionWithUrl(FunctionConfig functionConfig, String pkgUrl) throws PulsarAdminException {
sync(() -> createFunctionWithUrlAsync(functionConfig, pkgUrl));
}
@Override
public CompletableFuture createFunctionWithUrlAsync(FunctionConfig functionConfig, String pkgUrl) {
WebTarget path = functions.path(functionConfig.getTenant())
.path(functionConfig.getNamespace()).path(functionConfig.getName());
final FormDataMultiPart mp = new FormDataMultiPart();
mp.bodyPart(new FormDataBodyPart("url", pkgUrl, MediaType.TEXT_PLAIN_TYPE));
mp.bodyPart(new FormDataBodyPart(
"functionConfig", new Gson().toJson(functionConfig), MediaType.APPLICATION_JSON_TYPE));
return asyncPostRequest(path, Entity.entity(mp, MediaType.MULTIPART_FORM_DATA));
}
@Override
public void deleteFunction(String cluster, String namespace, String function) throws PulsarAdminException {
sync(() -> deleteFunctionAsync(cluster, namespace, function));
}
@Override
public CompletableFuture deleteFunctionAsync(String tenant, String namespace, String function) {
WebTarget path = functions.path(tenant).path(namespace).path(function);
return asyncDeleteRequest(path);
}
@Override
public void updateFunction(FunctionConfig functionConfig, String fileName) throws PulsarAdminException {
updateFunction(functionConfig, fileName, null);
}
@Override
public CompletableFuture updateFunctionAsync(FunctionConfig functionConfig, String fileName) {
return updateFunctionAsync(functionConfig, fileName, null);
}
@Override
public void updateFunction(FunctionConfig functionConfig, String fileName, UpdateOptions updateOptions)
throws PulsarAdminException {
sync(() -> updateFunctionAsync(functionConfig, fileName, updateOptions));
}
@Override
public CompletableFuture updateFunctionAsync(
FunctionConfig functionConfig, String fileName, UpdateOptions updateOptions) {
final CompletableFuture future = new CompletableFuture<>();
try {
RequestBuilder builder =
put(functions.path(functionConfig.getTenant())
.path(functionConfig.getNamespace())
.path(functionConfig.getName()).getUri().toASCIIString())
.addBodyPart(new StringPart("functionConfig", objectWriter()
.writeValueAsString(functionConfig), MediaType.APPLICATION_JSON));
UpdateOptionsImpl options = (UpdateOptionsImpl) updateOptions;
if (options != null) {
builder.addBodyPart(new StringPart("updateOptions", objectWriter()
.writeValueAsString(options), MediaType.APPLICATION_JSON));
}
if (fileName != null && !fileName.startsWith("builtin://")) {
// If the function code is built in, we don't need to submit here
builder.addBodyPart(new FilePart("data", new File(fileName), MediaType.APPLICATION_OCTET_STREAM));
}
asyncHttpRequestExecutor.executeRequest(addAuthHeaders(functions, builder).build())
.thenAccept(response -> {
if (response.getStatusCode() < 200 || response.getStatusCode() >= 300) {
future.completeExceptionally(
getApiException(Response
.status(response.getStatusCode())
.entity(response.getResponseBody())
.build()));
} else {
future.complete(null);
}
})
.exceptionally(throwable -> {
future.completeExceptionally(getApiException(throwable));
return null;
});
} catch (Exception e) {
future.completeExceptionally(getApiException(e));
}
return future;
}
@Override
public void updateFunctionWithUrl(FunctionConfig functionConfig, String pkgUrl,
UpdateOptions updateOptions)
throws PulsarAdminException {
sync(() -> updateFunctionWithUrlAsync(functionConfig, pkgUrl, updateOptions));
}
@Override
public CompletableFuture updateFunctionWithUrlAsync(
FunctionConfig functionConfig, String pkgUrl, UpdateOptions updateOptions) {
final CompletableFuture future = new CompletableFuture<>();
try {
final FormDataMultiPart mp = new FormDataMultiPart();
mp.bodyPart(new FormDataBodyPart("url", pkgUrl, MediaType.TEXT_PLAIN_TYPE));
mp.bodyPart(new FormDataBodyPart(
"functionConfig",
objectWriter().writeValueAsString(functionConfig),
MediaType.APPLICATION_JSON_TYPE));
UpdateOptionsImpl options = (UpdateOptionsImpl) updateOptions;
if (options != null) {
mp.bodyPart(new FormDataBodyPart(
"updateOptions",
objectWriter().writeValueAsString(options),
MediaType.APPLICATION_JSON_TYPE));
}
WebTarget path = functions.path(functionConfig.getTenant()).path(functionConfig.getNamespace())
.path(functionConfig.getName());
return asyncPutRequest(path, Entity.entity(mp, MediaType.MULTIPART_FORM_DATA));
} catch (Exception e) {
future.completeExceptionally(getApiException(e));
}
return future;
}
@Override
public void updateFunctionWithUrl(FunctionConfig functionConfig, String pkgUrl) throws PulsarAdminException {
updateFunctionWithUrl(functionConfig, pkgUrl, null);
}
@Override
public CompletableFuture updateFunctionWithUrlAsync(FunctionConfig functionConfig, String pkgUrl) {
return updateFunctionWithUrlAsync(functionConfig, pkgUrl, null);
}
@Override
public String triggerFunction(
String tenant, String namespace, String functionName,
String topic, String triggerValue, String triggerFile) throws PulsarAdminException {
return sync(() -> triggerFunctionAsync(tenant, namespace, functionName, topic, triggerValue, triggerFile));
}
@Override
public CompletableFuture triggerFunctionAsync(
String tenant, String namespace, String function,
String topic, String triggerValue, String triggerFile) {
final FormDataMultiPart mp = new FormDataMultiPart();
if (triggerFile != null) {
mp.bodyPart(new FileDataBodyPart("dataStream",
new File(triggerFile),
MediaType.APPLICATION_OCTET_STREAM_TYPE));
}
if (triggerValue != null) {
mp.bodyPart(new FormDataBodyPart("data", triggerValue, MediaType.TEXT_PLAIN_TYPE));
}
if (topic != null && !topic.isEmpty()) {
mp.bodyPart(new FormDataBodyPart("topic", topic, MediaType.TEXT_PLAIN_TYPE));
}
WebTarget path = functions.path(tenant).path(namespace).path(function).path("trigger");
final CompletableFuture future = new CompletableFuture<>();
try {
request(path).async().post(Entity.entity(mp, MediaType.MULTIPART_FORM_DATA),
new InvocationCallback() {
@Override
public void completed(String response) {
future.complete(response);
}
@Override
public void failed(Throwable throwable) {
log.warn("[{}] Failed to perform http post request: {}",
path.getUri(), throwable.getMessage());
future.completeExceptionally(getApiException(throwable.getCause()));
}
});
} catch (PulsarAdminException cae) {
future.completeExceptionally(cae);
}
return future;
}
@Override
public void restartFunction(String tenant, String namespace, String functionName, int instanceId)
throws PulsarAdminException {
sync(() -> restartFunctionAsync(tenant, namespace, functionName, instanceId));
}
@Override
public CompletableFuture restartFunctionAsync(
String tenant, String namespace, String function, int instanceId) {
WebTarget path = functions.path(tenant).path(namespace).path(function).path(Integer.toString(instanceId))
.path("restart");
return asyncPostRequest(path, Entity.entity("", MediaType.APPLICATION_JSON));
}
@Override
public void restartFunction(String tenant, String namespace, String functionName) throws PulsarAdminException {
sync(() -> restartFunctionAsync(tenant, namespace, functionName));
}
@Override
public CompletableFuture restartFunctionAsync(String tenant, String namespace, String function) {
WebTarget path = functions.path(tenant).path(namespace).path(function).path("restart");
return asyncPostRequest(path, Entity.entity("", MediaType.APPLICATION_JSON));
}
@Override
public void stopFunction(String tenant, String namespace, String functionName, int instanceId)
throws PulsarAdminException {
sync(() -> stopFunctionAsync(tenant, namespace, functionName, instanceId));
}
@Override
public CompletableFuture stopFunctionAsync(String tenant, String namespace, String function, int instanceId) {
WebTarget path = functions.path(tenant).path(namespace).path(function).path(Integer.toString(instanceId))
.path("stop");
return asyncPostRequest(path, Entity.entity("", MediaType.APPLICATION_JSON));
}
@Override
public void stopFunction(String tenant, String namespace, String functionName) throws PulsarAdminException {
sync(() -> stopFunctionAsync(tenant, namespace, functionName));
}
@Override
public CompletableFuture stopFunctionAsync(String tenant, String namespace, String function) {
WebTarget path = functions.path(tenant).path(namespace).path(function).path("stop");
return asyncPostRequest(path, Entity.entity("", MediaType.APPLICATION_JSON));
}
@Override
public void startFunction(String tenant, String namespace, String functionName, int instanceId)
throws PulsarAdminException {
sync(() -> startFunctionAsync(tenant, namespace, functionName, instanceId));
}
@Override
public CompletableFuture startFunctionAsync(
String tenant, String namespace, String function, int instanceId) {
WebTarget path = functions.path(tenant).path(namespace).path(function).path(Integer.toString(instanceId))
.path("start");
return asyncPostRequest(path, Entity.entity("", MediaType.APPLICATION_JSON));
}
@Override
public void startFunction(String tenant, String namespace, String functionName) throws PulsarAdminException {
sync(() -> startFunctionAsync(tenant, namespace, functionName));
}
@Override
public CompletableFuture startFunctionAsync(String tenant, String namespace, String function) {
WebTarget path = functions.path(tenant).path(namespace).path(function).path("start");
return asyncPostRequest(path, Entity.entity("", MediaType.APPLICATION_JSON));
}
@Override
public void uploadFunction(String sourceFile, String path) throws PulsarAdminException {
sync(() -> uploadFunctionAsync(sourceFile, path));
}
@Override
public CompletableFuture uploadFunctionAsync(String sourceFile, String path) {
final CompletableFuture future = new CompletableFuture<>();
try {
RequestBuilder builder = post(functions.path("upload").getUri().toASCIIString())
.addBodyPart(new FilePart("data", new File(sourceFile), MediaType.APPLICATION_OCTET_STREAM))
.addBodyPart(new StringPart("path", path, MediaType.TEXT_PLAIN));
asyncHttpRequestExecutor.executeRequest(addAuthHeaders(functions, builder).build())
.thenAccept(response -> {
if (response.getStatusCode() < 200 || response.getStatusCode() >= 300) {
future.completeExceptionally(
getApiException(Response
.status(response.getStatusCode())
.entity(response.getResponseBody())
.build()));
} else {
future.complete(null);
}
})
.exceptionally(throwable -> {
future.completeExceptionally(getApiException(throwable));
return null;
});
} catch (Exception e) {
future.completeExceptionally(getApiException(e));
}
return future;
}
@Override
public void downloadFunction(String destinationPath, String tenant, String namespace, String functionName)
throws PulsarAdminException {
downloadFile(destinationPath, functions.path(tenant).path(namespace).path(functionName).path("download"));
}
@Override
public CompletableFuture downloadFunctionAsync(
String destinationPath, String tenant, String namespace, String functionName) {
return downloadFileAsync(destinationPath,
functions.path(tenant).path(namespace).path(functionName).path("download"));
}
@Override
public void downloadFunction(String destinationPath, String tenant, String namespace, String functionName,
boolean transformFunction) throws PulsarAdminException {
downloadFile(destinationPath, functions.path(tenant).path(namespace).path(functionName).path("download")
.queryParam("transform-function", transformFunction));
}
@Override
public CompletableFuture downloadFunctionAsync(
String destinationPath, String tenant, String namespace, String functionName, boolean transformFunction) {
return downloadFileAsync(destinationPath,
functions.path(tenant).path(namespace).path(functionName).path("download")
.queryParam("transform-function", transformFunction));
}
@Override
public void downloadFunction(String destinationPath, String path) throws PulsarAdminException {
downloadFile(destinationPath, functions.path("download").queryParam("path", path));
}
@Override
public CompletableFuture downloadFunctionAsync(String destinationFile, String path) {
return downloadFileAsync(destinationFile, functions.path("download").queryParam("path", path));
}
private void downloadFile(String destinationPath, WebTarget target) throws PulsarAdminException {
sync(() -> downloadFileAsync(destinationPath, target));
}
private CompletableFuture downloadFileAsync(String destinationPath, WebTarget target) {
final CompletableFuture future = new CompletableFuture<>();
try {
File file = new File(destinationPath);
if (!file.exists()) {
if (file.getParentFile() != null && !file.getParentFile().exists()) {
file.getParentFile().mkdirs();
}
file.createNewFile();
}
FileChannel os = new FileOutputStream(new File(destinationPath)).getChannel();
RequestBuilder builder = get(target.getUri().toASCIIString());
CompletableFuture responseFuture =
asyncHttpRequestExecutor.executeRequest(addAuthHeaders(functions, builder).build(),
() -> new AsyncCompletionHandlerBase() {
@Override
public State onBodyPartReceived(HttpResponseBodyPart bodyPart) throws Exception {
os.write(bodyPart.getBodyByteBuffer());
return State.CONTINUE;
}
});
responseFuture
.whenComplete((response, throwable) -> {
try {
os.close();
} catch (IOException e) {
future.completeExceptionally(getApiException(e));
}
})
.thenAccept(response -> {
if (response.getStatusCode() < 200 || response.getStatusCode() >= 300) {
future.completeExceptionally(
getApiException(Response
.status(response.getStatusCode())
.entity(response.getStatusText())
.build()));
} else {
future.complete(null);
}
})
.exceptionally(throwable -> {
future.completeExceptionally(getApiException(throwable));
return null;
});
} catch (Exception e) {
future.completeExceptionally(getApiException(e));
}
return future;
}
@Override
public List getConnectorsList() throws PulsarAdminException {
try {
Response response = request(functions.path("connectors")).get();
if (response.getStatus() != Response.Status.OK.getStatusCode()) {
throw getApiException(response);
}
return response.readEntity(new GenericType>() {
});
} catch (Exception e) {
throw getApiException(e);
}
}
@Override
public Set getSources() throws PulsarAdminException {
return getConnectorsList().stream().filter(c -> !StringUtils.isEmpty(c.getSourceClass()))
.map(ConnectorDefinition::getName).collect(Collectors.toSet());
}
@Override
public Set getSinks() throws PulsarAdminException {
return getConnectorsList().stream().filter(c -> !StringUtils.isEmpty(c.getSinkClass()))
.map(ConnectorDefinition::getName).collect(Collectors.toSet());
}
@Override
public List getBuiltInFunctions() throws PulsarAdminException {
return sync(this::getBuiltInFunctionsAsync);
}
@Override
public CompletableFuture> getBuiltInFunctionsAsync() {
WebTarget path = functions.path("builtins");
final CompletableFuture> future = new CompletableFuture<>();
asyncGetRequest(path,
new InvocationCallback() {
@Override
public void completed(Response response) {
if (response.getStatus() != Response.Status.OK.getStatusCode()) {
future.completeExceptionally(getApiException(response));
} else {
future.complete(response.readEntity(
new GenericType>() {}));
}
}
@Override
public void failed(Throwable throwable) {
future.completeExceptionally(getApiException(throwable.getCause()));
}
});
return future;
}
public List getCluster() throws PulsarAdminException {
try {
return request(functions.path("cluster")).get(new GenericType>() {
});
} catch (Exception e) {
throw getApiException(e);
}
}
@Override
public FunctionState getFunctionState(String tenant, String namespace, String function, String key)
throws PulsarAdminException {
return sync(() -> getFunctionStateAsync(tenant, namespace, function, key));
}
@Override
public CompletableFuture getFunctionStateAsync(
String tenant, String namespace, String function, String key) {
WebTarget path = functions.path(tenant).path(namespace).path(function).path("state").path(key);
return asyncGetRequest(path, FunctionState.class);
}
@Override
public void putFunctionState(String tenant, String namespace, String function, FunctionState state)
throws PulsarAdminException {
sync(() -> putFunctionStateAsync(tenant, namespace, function, state));
}
@Override
public CompletableFuture putFunctionStateAsync(
String tenant, String namespace, String function, FunctionState state) {
final CompletableFuture future = new CompletableFuture<>();
try {
RequestBuilder builder =
post(functions.path(tenant).path(namespace).path(function)
.path("state").path(state.getKey()).getUri().toASCIIString());
builder.addBodyPart(new StringPart("state", objectWriter()
.writeValueAsString(state), MediaType.APPLICATION_JSON));
asyncHttpRequestExecutor.executeRequest(addAuthHeaders(functions, builder).build())
.toCompletableFuture()
.thenAccept(response -> {
if (response.getStatusCode() < 200 || response.getStatusCode() >= 300) {
future.completeExceptionally(getApiException(
Response.status(response.getStatusCode())
.entity(response.getResponseBody()).build()));
} else {
future.complete(null);
}
})
.exceptionally(throwable -> {
future.completeExceptionally(getApiException(throwable));
return null;
});
} catch (Exception e) {
future.completeExceptionally(e);
}
return future;
}
public void updateOnWorkerLeader(String tenant, String namespace,
String function, byte[] functionMetaData,
boolean delete) throws PulsarAdminException {
sync(() -> updateOnWorkerLeaderAsync(tenant, namespace, function,
functionMetaData, delete));
}
public CompletableFuture updateOnWorkerLeaderAsync(String tenant, String namespace,
String function, byte[] functionMetaData,
boolean delete) {
final CompletableFuture future = new CompletableFuture<>();
try {
RequestBuilder builder =
put(functions.path("leader").path(tenant).path(namespace)
.path(function).getUri().toASCIIString())
.addBodyPart(new ByteArrayPart("functionMetaData", functionMetaData))
.addBodyPart(new StringPart("delete", Boolean.toString(delete)));
asyncHttpRequestExecutor.executeRequest(addAuthHeaders(functions, builder).build())
.toCompletableFuture()
.thenAccept(response -> {
if (response.getStatusCode() < 200 || response.getStatusCode() >= 300) {
future.completeExceptionally(
getApiException(Response
.status(response.getStatusCode())
.entity(response.getResponseBody())
.build()));
} else {
future.complete(null);
}
})
.exceptionally(throwable -> {
future.completeExceptionally(getApiException(throwable));
return null;
});
} catch (Exception e) {
future.completeExceptionally(e);
}
return future;
}
@Override
public void reloadBuiltInFunctions() throws PulsarAdminException {
sync(this::reloadBuiltInFunctionsAsync);
}
@Override
public CompletableFuture reloadBuiltInFunctionsAsync() {
WebTarget path = functions.path("builtins/reload");
return asyncPostRequest(path, Entity.entity("", MediaType.APPLICATION_JSON));
}
}