apache atlas rest api

vom3gejh  于 2021-05-29  发布在  Hadoop
关注(0)|答案(1)|浏览(411)

我试图通过rest api读取atlas实体,我尝试了以下命令:

curl -v -i -s -X GET user:pwd@something.confidential.here:21000/v1/entities/branch_intersect

虽然我可以在ApacheUI中看到表,但它说找不到:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Error 404 Not Found</title>
</head>
<body><h2>HTTP ERROR 404</h2>
<p>Problem accessing /v1/entities/branch_intersect. Reason:
<pre>    Not Found</pre></p><hr><i><small>Powered by Jetty://</small></i><hr/>

</body>
</html>

我使用atlasv0.7并遵循这个文档

p4rjhz4m

p4rjhz4m1#

其余url应如下所示:

curl -v -i -s -X GET user:pwd@something.confidential.here:21000/api/atlas/

此处引用

相关问题