Member since
05-30-2018
1322
Posts
715
Kudos Received
148
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 4023 | 08-20-2018 08:26 PM | |
| 1929 | 08-15-2018 01:59 PM | |
| 2359 | 08-13-2018 02:20 PM | |
| 4072 | 07-23-2018 04:37 PM | |
| 4990 | 07-19-2018 12:52 PM |
04-28-2016
07:01 PM
Yes! 2.0.2, not 2.2 I misstyped. I will correct the original answer.
... View more
07-06-2016
12:45 AM
@Krzysztof Zarzycki I don't see it supported in the 2.4.2 release notes. I downloaded 2.5 sandbox. May be in that release.
... View more
04-21-2016
01:03 PM
This! Query server essentially is built on Apache Calcite and jas a JSON API interface. https://phoenix.apache.org/server.html http://calcite.apache.org/avatica/docs/json_reference.html I would think however that its way too much work to write a client using a REST API over this. If you want to create a web application, something like jquery with the jdbc client sounds much more appealing. ( Or go against HBase directly )
... View more
04-20-2016
06:44 PM
I believe in HDP sandbox Ranger audits are going to Mysql (not Solr). To change audits to go to Solr you would need to; 1. Start Solr and create the ranger_audits collection. The steps for this would differ whether you want Solr to run in standalone or cloud mode Standalone mode: https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.4.0/bk_Ranger_Install_Guide/content/solr_ranger_configure_standalone.html Cloud mode: https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.4.0/bk_Ranger_Install_Guide/content/solr_ranger_configure_solrcloud.html 2. change the ranger.audit.source.type to solr (from db) under Ambari > Ranger > Configs 3. Set appropriate property to point Ranger to Solr e.g. in Solr standalone mode, set ranger.audit.solr.urls = http://(your solr host fqdn):6083/solr/ranger_audits in Cloud mode, instead of providing url you would set ranger.audit.solr.zookeepers = Zk list e.g. ip-172-30-0-180.us-west-2.compute.internal:2181,ip-172-30-0-182.us-west-2.compute.internal:2181,ip-172-30-0-181.us-west-2.compute.internal:2181/ranger_audits 4. Restart Ranger service via Ambari
... View more
04-20-2016
01:41 PM
5 Kudos
Does ranger creates unix groups during AD/LDAP sync? No - the usersync just brings in the users and groups for you to see and to be able to create Ranger policy based on the known users and groups . It does not create them it just reads from your defined source be it unix , AD/LDAP . Curious if the unix
groups are used (based on sync) for authorization or native AD/LDAP
groups. You create policy and this will let you control access not authorization. The underlying linux filesystem still needs to have SSSD or winBind/samba setup to show the same groups on the filesystem and the group names need to be the same . Ranger User sync will not create these groups in linux or hdfs.
... View more
04-24-2016
07:15 AM
@Guilherme Braccialli Indeed, the hook is for not reusing initialised sessions. Thanks very much for sharing the REST calls. Look quite useful to have handy.
... View more
04-19-2016
04:11 AM
1 Kudo
When a batch of write-ahead log (WAL) edits are sent from the source cluster to the destination (active-active or otherwise), a response is sent to the source cluster from the destination. If the replication was successful, the response is essentially empty. Any errors encountered during the replay of those WAL edits would be returned to the source cluster.
... View more
04-19-2016
09:14 PM
For Hive and HBase, you can execute GRANT/REVOKE statements from a shell and it will automatically create policies in Ranger.
... View more
04-19-2016
12:24 AM
1 Kudo
@Predrag Minovic I have seen that link and it is helpful. I found more info here as well on log4j appender ranger hive.
... View more
09-07-2016
03:03 AM
Falcon uses hadoop distributed filesystem abstraction to do the replication -be it s3 or wasb. It essentially uses distcp, so whatever requirements are there for distcp in terms of accessing a filesystem applies to Falcon replication as well
... View more