Member since
10-28-2016
392
Posts
7
Kudos Received
20
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3385 | 03-12-2018 02:28 AM | |
5080 | 12-18-2017 11:41 PM | |
3561 | 07-17-2017 07:01 PM | |
2520 | 07-13-2017 07:20 PM | |
7999 | 07-12-2017 08:31 PM |
01-25-2017
11:05 PM
hive.exec.stagingdir was already set to - /encrypt/hive/tmp/
also, scrachdir to location in encryption zone -> /encrypt/hive/tmp & provided permission 777 There is an additional variable that was to be changed ->
hive.metastore.warehouse.dir - I changed this from existing value (/apps/hive/warehouse) to location in the encrypted zone -> /encrypt/hive, and this problem is fixed. ---------------------------------------------------------------------------------------------------------- INFO
: Moving data to: /encrypt/hive/testtable2 from
hdfs://sandbox.hortonworks.com:8020/encrypt/hive/.hive-staging_hive_2017-01-25_22-54-41_396_5265658181234256688-1/-ext-10001
INFO : Table default.testtable2 stats: [numFiles=1, numRows=5, totalSize=211, rawDataSize=206]
No rows affected (47.001 seconds)
... View more
01-27-2017
01:07 AM
@mqureshi -
i had a to do a - su hbase, and then launch hbase shell .. else the user root was trying to access the hbase table. i'm able to create & access the table now. Thnx.
... View more
07-28-2017
09:32 AM
there is a property in ranger kms configuration which blacklist hdfs user.Either remove the hdfs user from that property or try to do the following: 1. create another user 2. give that user permission to decrypt and encrypt key in ranger KMS policy 3. fire the command with the user Check if it works
... View more
01-21-2017
12:24 AM
manually create user - nn, provided access to users 'nn' & 'hdfs' to to fix the issue, reference - https://community.hortonworks.com/questions/41938/creating-encryption-zone-fails-on-a-kerberized-sin.html
... View more
01-26-2017
06:37 AM
@stevel, @Pierre Villard - agreed.. i'll be using kerberos as first step, but still wanted to confirm if this was mandatory for hdfs encryption at rest.
... View more
01-20-2017
01:33 AM
@Karan Alang Yes, you can do that.
... View more
01-16-2017
04:45 PM
The gateway/knox_sample assumes a topology named knox_sample.xml in your {GATEWAY_HOME}/conf/topologies directory. If that doesn't exist then you will get a 404. As mentioned by others, if you are using Ambari to make the changes then you are using the default.xml topology since that is the only topology that Ambari is aware.
... View more
01-10-2017
07:49 PM
HADOOP_CLASSPATH=$(ls -1 /usr/hdp/current/hbase-client/lib/*.jar | tr '\n',
':') hadoop jar mr.jar hbase.labfiles.Exercise5.ProductAnalyzer -libjars
$(ls -1 /usr/hdp/current/hbase-client/lib/*.jar | tr '\n', ',') This worked finally (changes highlighted) !
... View more