Apache Atlas Rest Api
Я пытаюсь прочитать Атлас с помощью Rest API, я попробовал эту команду:
curl -v -i -s -X GET user:pwd@something.confidential.here:21000/v1/entities/branch_intersect
Хотя я могу видеть таблицу в интерфейсе Apache, но он говорит, что не найден:
<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 и следую этому документу
1 ответ
Решение
Остальные URL должны быть такими:
curl -v -i -s -X GET user:pwd@something.confidential.here:21000/api/atlas/
Ссылка здесь