以前,相同的api工作正常,但现在它显示502坏网关。下面是我的api调用:
def hit_dataprep_job(receipe_id):
print(receipe_id)
url = "https://api.clouddataprep.com/v4/jobGroups"
body = json.dumps({"wrangledDataset": {"id": receipe_id}})
headers = {"Content-Type": "application/json","Authorization": "Bearer "+str(key)}
response = requests.post(url, data=body, headers=headers)
print(response)
print(response.json())
if response.json()['reason'] == 'JobStarted':
print('started job successfully')
输出: {'code':13,'message':'BAD_GATEWAY','details':[{'@type':'type.googleapis.com/google.rpc.DebugInfo','stackEntries':[],'detail':‘应用程序’}]}
发布于 2021-04-14 11:25:55
此事件现已解决。您可以订阅https://status.trifacta.com/以获取最新更新。
加入我们社区https://community.trifacta.com/s/中与Dataprep用户的讨论和协作。
https://stackoverflow.com/questions/67089431
复制相似问题