【发布时间】:2021-11-12 02:01:21
【问题描述】:
我直接使用 Javadocs 中的 this code 删除了 VertexAI 训练管道
try (PipelineServiceClient pipelineServiceClient = PipelineServiceClient.create()) {
TrainingPipelineName name =
TrainingPipelineName.of("[PROJECT]", "[LOCATION]", "[TRAINING_PIPELINE]");
pipelineServiceClient.deleteTrainingPipelineAsync(name).get();
}
我收到此错误。据我所知,这意味着这个 API 虽然有官方文档,但根本没有实现。我们如何使用 Java 删除训练管道?
Error in deleting //aiplatform.googleapis.com/projects/746859988231/locations/us-central1/trainingPipelines/186468439399187392:
java.util.concurrent.ExecutionException:
com.google.api.gax.rpc.UnimplementedException: io.grpc.StatusRuntimeException:
UNIMPLEMENTED: HTTP status code 404
...
<!DOCTYPE html>
<html lang=en>
....
<p>The requested URL <code>/google.cloud.aiplatform.v1.PipelineService
/DeleteTrainingPipeline</code> was not found on this server.
<ins>That’s all we know.</ins>
【问题讨论】:
标签: java google-cloud-platform google-ai-platform google-cloud-vertex-ai