Apache Atlas Rest Api

问题描述 投票:1回答:1

我试图通过rest api读取Atlas实体,我尝试了这个命令:

curl -v -i -s -X GET user:[email protected]:21000/v1/entities/branch_intersect

虽然我可以在Apache UI中看到该表,但它说没有找到:

<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>

我使用Atlas v 0.7并遵循此doc

rest hadoop hortonworks-data-platform apache-atlas
1个回答
1
投票

其余的网址应该是这样的:

curl -v -i -s -X GET user:[email protected]:21000/api/atlas/

参考here

© www.soinside.com 2019 - 2024. All rights reserved.