每当我尝试使用vertex-ai管理的Jupiter笔记本运行管道作业时,都会出现下面的错误。
在这里,我确保每次都通过在管道名称中添加一个时间戳来创建唯一的管道名称。例如,我的显示名称将类似于AutoML-Pipeline-DS-v4-1637251623,但我仍然收到类似于Please check if pipelines with the same name were previously submitted to a different endpoint.的错误
在这里,我使用google-cloud-aiplatform==1.4.3来运行管道作业。另外,我正在关注GCP中的这个example。
com.google.cloud.ai.platform.common.errors.AiPlatformException: code=INVALID_ARGUMENT, message=User-specified resource ID must match the regular expression '[a-z0-9][a-z0-9-]{0,127}', cause=null; Failed to update context (id = projects/xxxx/locations/us-central1/metadataStores/default/contexts/AutoML-Pipeline-DS-v4-1637251623). Please check if pipelines with the same name were previously submitted to a different endpoint. If so, one may submit the current pipeline with a different name to avoid reusing the existing MLMD Context from the other endpoint.; Failed to update pipeline and run contexts: project_number=xxxx, job_id=xxxx.; Failed to handle the job: {project_number = xxxx, job_id = xxxx}发布于 2021-11-25 06:23:37

请检查正则表达式,单词应该是这样的automlipelinedsv41637251623
https://stackoverflow.com/questions/70023418
复制相似问题