Member since
10-14-2016
36
Posts
3
Kudos Received
0
Solutions
06-16-2017
06:25 AM
@Graham Martin Thanks for your reply, I thihk I haved already define the Tag Service and add it to the hive policy In the tag service I give user "admin" the permission to select all the tables/columns under the tag "Hive", and in Hive Policy I disable the user "admin" 's permission to select of all tables, so if the tag service works, "admin" should have the permission to visit all tables under the tag "Hive", but currently it is not working. Am I missing something here?
... View more
06-15-2017
10:10 AM
3 Kudos
Hi, I am working with the ranger-atlas tag based policy, I think after I turned on the tag sync in Ranger, the tag in atlas is sync with ranger, coz I checked the ranger db and found the x_tag table has some records in it. But I think in ranger, the tags are syncd but resource lookup not working for tags, coz when I search for some tag in tag-based policy, the tags in atlas cannot be searched. the above pic shows the tags in atlas, while the below pic shows the tag sync in ranger, I am trying to search for the tag HBase, and it's not working Furthermore, I added the tag based policy to hive, but the table under the HBase tag still cannot be accessed for the "admin" user
... View more
Labels:
- Labels:
-
Apache Atlas
-
Apache Ranger
06-15-2017
01:32 AM
Sure, thanks for the answer, Garelnabi ^^
... View more
06-14-2017
01:22 PM
Did not find much documentation on atlas Lineage and Impact, according to this ppt Apache Atlas: Governance for your Data, seems Lineage is the source of the process, while impact is the destination of the process, am I understanding the concepts right ?
... View more
Labels:
- Labels:
-
Apache Atlas
06-04-2017
06:43 AM
Hi, guys: I checked the latest Atlas 0.9, there are HBase types defined already, but there is no HBase bridge and HDFS bridge done yet, since we have developed our own HBase bridge and HDFS bridge, is it possible for us to submit our HBase bridge and HDFS bridge code into the latest Atlas code? Qinglin
... View more
Labels:
- Labels:
-
Apache Atlas
05-23-2017
09:14 AM
Hi, Guys: I am trying to using atlas to capture a lineage between the hive external table and hive ordinary table so as to make a lineage between the hive table and hbase table. Here is the code I run in hive: create table dddd(key string ,id bigint ,aname string ,bname string ,cname string)STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'WITH SERDEPROPERTIES("hbase.columns.mapping" = ":key,info:id,info:aname,info:bname,info:cname")TBLPROPERTIES("hbase.table.name" = "dddd");
insert into table datalake_demo.dddd select a.id as key, a.id, a.aname ,b.bname,c.cname from datalake_demo.a,datalake_demo.b,datalake_demo.c where d = b.id and b.id = c.id; But the hive hook did not create a lineage between hive ordinary tables a, b and c with the hive external table d, I check the code and found there is no "insert into" option in hive hook to generate lineage So my question is do you guys know how can I generate a lineage between hive external table and ordinary tables? I am using atlas 0.7-incubating Thanks so much for your help~ Qinglin
... View more
Labels:
- Labels:
-
Apache Atlas
-
Apache Hive
03-29-2017
06:19 AM
Finally got it, the delete op in hdfs should correspond to the rename event, coz hdfs would move the removed files/dirs to the trash file first
... View more
03-29-2017
06:06 AM
Thanks I found those examples and run them already, but still not quite understand what unlink event do, also how the inotify works? Do you know any documentations explaining the inotify api?
... View more
03-29-2017
02:49 AM
Hi guys, I am working on writing a hdfs hook, yet I am not quite understand what does unlink event do, I found on this presentation that the delete log would be captured as a unlink event, but when I run a hadoop fs -rm /h.txt command, the unlink event is not captured? So what kind of hdfs commands would capture this unlink event ?
... View more
Labels:
- Labels:
-
Apache Atlas
-
Apache Hadoop
03-29-2017
02:39 AM
Thanks for your reply, I just realize this is a stupid question lol
... View more