<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: How to get the list of all un-tagged Hive column  in Atlas using Rest API command in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213108#M63267</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/40/apathan.html" nodeid="40"&gt;@Ayub Khan&lt;/A&gt;, Agreed this can be achieved by code. In Atlas 0.6, I have seen that the length (key value pairs) of tagged entity (hive_column) are 10. Un-tagged column generally used to have 9 key value pairs. We can achieve this using a loop and the process will become time consuming. I was looking for some DSL search query or gremlin query which can give me the list of all untagged columns. I hope this defines my requirement.&lt;/P&gt;</description>
    <pubDate>Tue, 20 Jun 2017 16:04:51 GMT</pubDate>
    <dc:creator>subash_sharma</dc:creator>
    <dc:date>2017-06-20T16:04:51Z</dc:date>
    <item>
      <title>How to get the list of all un-tagged Hive column  in Atlas using Rest API command</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213106#M63265</link>
      <description>&lt;P&gt;How to get the list of all un-tagged  hive column/attributes  in Atlas using Rest API command&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Subash&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 15:36:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213106#M63265</guid>
      <dc:creator>subash_sharma</dc:creator>
      <dc:date>2017-06-20T15:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the list of all un-tagged Hive column  in Atlas using Rest API command</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213107#M63266</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/14607/subashsharma.html" nodeid="14607"&gt;@subash sharma&lt;/A&gt;&lt;P&gt;AFAIK, there is no REST API to fetch untagged assets. You might want to consider writing small piece of code to filter untagged assets around REST API which returns all assets of specific type, in this case hive_column.  &lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 15:53:59 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213107#M63266</guid>
      <dc:creator>apathan</dc:creator>
      <dc:date>2017-06-20T15:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the list of all un-tagged Hive column  in Atlas using Rest API command</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213108#M63267</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/40/apathan.html" nodeid="40"&gt;@Ayub Khan&lt;/A&gt;, Agreed this can be achieved by code. In Atlas 0.6, I have seen that the length (key value pairs) of tagged entity (hive_column) are 10. Un-tagged column generally used to have 9 key value pairs. We can achieve this using a loop and the process will become time consuming. I was looking for some DSL search query or gremlin query which can give me the list of all untagged columns. I hope this defines my requirement.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 16:04:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213108#M63267</guid>
      <dc:creator>subash_sharma</dc:creator>
      <dc:date>2017-06-20T16:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the list of all un-tagged Hive column  in Atlas using Rest API command</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213109#M63268</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/14607/subashsharma.html" nodeid="14607"&gt;@subash sharma&lt;/A&gt;&lt;P&gt;Like &lt;A rel="user" href="https://community.cloudera.com/users/40/apathan.html" nodeid="40"&gt;@Ayub Khan&lt;/A&gt; mentioned currently there is no explicit REST end point to fetch all untagged entities, filtered by type (or by any other attributes). Alternatively you could use gremlin query to fetch untagged entities and add additional filters. But please note these queries may not be efficient for large number of entities and tags in the system. Also the result of gremlin query returns a list of vertices in its raw format and needs to be mapped to atlas structure.&lt;/P&gt;&lt;PRE&gt;http://localhost:21000/api/atlas/discovery/search/gremlin?query=g.V().has('__traitNames', T.notin, g.V().has('__type', 'typeSystem').filter{it.getProperty('__type.category').name() == 'TRAIT'}.'__type.name'.toSet()).has('__typeName', 'hive_column').toList()&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Jun 2017 22:38:36 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213109#M63268</guid>
      <dc:creator>ssubramanian</dc:creator>
      <dc:date>2017-06-20T22:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the list of all un-tagged Hive column  in Atlas using Rest API command</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213110#M63269</link>
      <description>&lt;P&gt;Hey &lt;A rel="user" href="https://community.cloudera.com/users/12092/ssubramanian.html" nodeid="12092"&gt;@Sarath Subramanian&lt;/A&gt;, Thank you, can you please let me know any link from where i can get these gremlin queries.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 22:45:18 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213110#M63269</guid>
      <dc:creator>subash_sharma</dc:creator>
      <dc:date>2017-06-20T22:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the list of all un-tagged Hive column  in Atlas using Rest API command</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213111#M63270</link>
      <description>&lt;P&gt;The below link have some gremlin queries (in TinkerPop2) we use in atlas&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/apache/incubator-atlas/blob/master/repository/src/main/java/org/apache/atlas/util/AtlasGremlin2QueryProvider.java"&gt;https://github.com/apache/incubator-atlas/blob/master/repository/src/main/java/org/apache/atlas/util/AtlasGremlin2QueryProvider.java&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Gremlin doc:&lt;/P&gt;&lt;P&gt;&lt;A href="http://gremlindocs.spmallette.documentup.com"&gt;http://gremlindocs.spmallette.documentup.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 22:50:30 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/213111#M63270</guid>
      <dc:creator>ssubramanian</dc:creator>
      <dc:date>2017-06-20T22:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the list of all un-tagged Hive column  in Atlas using Rest API command</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/337954#M63271</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Update&lt;/STRONG&gt; for more recent versions of the platform: unfortunately the `/gremlin` endpoint has been removed from modern Atlas APIs,&amp;nbsp;&lt;EM&gt;but&lt;/EM&gt; you can use the special `_NOT_CLASSIFIED` identifier in the search DSL to meet this requirement.&lt;/P&gt;&lt;P&gt;So the query would simply be something like:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;PRE&gt;hive_column isA  _NOT_CLASSIFIED&lt;/PRE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Tue, 08 Mar 2022 11:25:22 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-get-the-list-of-all-un-tagged-Hive-column-in-Atlas/m-p/337954#M63271</guid>
      <dc:creator>rjendoubi</dc:creator>
      <dc:date>2022-03-08T11:25:22Z</dc:date>
    </item>
  </channel>
</rss>

