Member since
06-09-2016
529
Posts
129
Kudos Received
104
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1737 | 09-11-2019 10:19 AM | |
| 9343 | 11-26-2018 07:04 PM | |
| 2492 | 11-14-2018 12:10 PM | |
| 5341 | 11-14-2018 12:09 PM | |
| 3156 | 11-12-2018 01:19 PM |
05-31-2018
09:04 PM
@Anpan K If you need the value just for "Host/host_status/UNHEALTHY" you can use this one: jq '.items[0].Clusters.health_report."Host/host_status/UNHEALTHY"'
... View more
05-31-2018
09:01 PM
@Anpan K What about this: jq '.items[0].Clusters.health_report' HTH *** If you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer.
... View more
05-31-2018
04:47 PM
@Eric Richardson {OWNER} is not supported by Hive yet. Please mark the answer if you feel the information provided has helped address your question.
... View more
05-31-2018
04:30 PM
FYI starting hdp 2.6 you we have the import/export functionality directly on the ranger admin ui. 1. Is it required to have present all the users who are belonging to cluster A ranager policy for hdfs ? Yes, otherwise the policies for missing users wont be added. 2. what could lead to failure of the policies while importing like If policy id or name is same ? There is an overwrite checkbox you can select. If checked the policies with same name will be overwritten. HTH *** If you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer.
... View more
05-31-2018
01:55 PM
@Victor I think 3.6 is fine as per https://issues.apache.org/jira/browse/SPARK-19019 they fixed 3.6 issues and this got merged to 2.1.1, 2.2 and is part of 2.3 already.
... View more
05-31-2018
01:49 PM
@Victor To kill it you can issue command: yarn application -kill <Application ID>
... View more
05-31-2018
01:31 PM
1 Kudo
@Victor Usually a restart of the interpreter also kills the yarn application. Check on RM UI, there should be a yarn application running for the interpreter. If you kill the yarn application then you will probably stop this. I see code is pretty simple. To debug you should check the spark2 interpreter log and yarn application log to find out what is happening.
... View more
05-31-2018
12:57 PM
1 Kudo
@Victor I've created an article on this: https://community.hortonworks.com/content/kbentry/194077/how-to-configure-zeppelin-pyspark-interpreter-to-u.html
... View more
05-31-2018
01:50 AM
1 Kudo
@Eric Richardson By using {USER} instead of {OWNER} you could come up with the following solution: With the above policy users will be able to: 1. Use database testdb; 2. Users will be able to create tables. With the condition that table names must end in underscore username _{USER}. 2. Show tables that finish with their username only. For example: show tables;
+---------------+--+
| tab_name |
+---------------+--+
| t2_falbani |
| test_falbani |
+---------------+--+
## Users wont see any other tables unless another policy grants them permissions 3. Users will have full control over the tables ending in underscore username _{USER} - And won't be able to perform any operations in any other tables unless there is another policy that grants them permissions. Hopefully this will help you address your requirement. Please let me know if this helps. Also if you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer. HTH
... View more
05-30-2018
06:03 PM
1 Kudo
@Prachi Sharma I think you should try something like this: ${anyDelineatedValue("${IncludeSchemaList}", ","):equals("${db.table.schema}"):and(anyDelineatedValue("${ExcludeTableList}", ","):equals("${db.table.schema}"):not())} while having IncludeSchemaList=dbo,hilton,archive,audit,util
ExcludeTableList=couponcodes,batch_job_execution_context,batch_step_execution
HTH *** If you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer.
... View more