Member since
09-28-2015
51
Posts
32
Kudos Received
17
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1423 | 04-13-2018 11:36 PM | |
3933 | 04-13-2018 11:03 PM | |
1188 | 04-13-2018 10:56 PM | |
3684 | 04-10-2018 03:12 PM | |
4694 | 02-13-2018 07:23 PM |
01-02-2018
06:13 PM
1 Kudo
@Prateek Behera The disk quota in your case works fine as expected. HDFS by default has a replication factor of 3 as you can see in the 3rd column of your CLI output. 500MB *3 (replication factor) = 1.5 GB > 1GB (quota).
... View more
11-28-2017
12:16 AM
1 Kudo
@szetszwo, you can do this with haodop impersonation by setting the env variable $HADOOP_PROXY_USER=foo
... View more
11-20-2017
11:34 PM
1 Kudo
There is only one namenode per HFDS cluster assuming you don't have federation. The Format namenode command you mentioned will clear all the HDFS namespace info and affect all the other works no matter where the command is being executed.
... View more
11-02-2017
06:15 PM
4 Kudos
hdfs debug recoverLease command should be used to close the file. The complete syntax is like below: hdfs debug recoverLease -path <path-of-the-file>[-retries <retry-times>]
... View more
09-28-2017
08:06 PM
Apache Hadoop has an official wiki page that summarized major changes across 1.x, 2.x. Hope that helps. https://wiki.apache.org/hadoop/Roadmap
... View more
09-19-2017
07:28 PM
1 Kudo
You will need to add auth_to_local rule in core-site.xml to map dgiri@mytestdomain.com to dgiri RULE:[2:$1](.*@mytestdomain.com)s/@.*// More defailt of how to write auth_to_local rules can be found here: https://hortonworks.com/blog/fine-tune-your-apache-hadoop-security-settings/
... View more
09-08-2017
07:55 PM
bq. From what I understood every files use a minimum of 1 block in HDFS. No. It is not true. You can have file of size 0, they are likely to be created on NN but no block being allocated and/or streamed to DNs yet. Check your files and you will have 4 files (8694-8690=4) of size 0.
... View more
07-20-2017
06:54 PM
decrypt operation needs POST instead of GET. Check the samples form KMS doc below. Decrypt Encrypted Key REQUEST: POST http://HOST:PORT/kms/v1/keyversion/<version-name>/_eek?ee_op=decrypt
Content-Type: application/json
{
"name" : "<key-name>",
"iv" : "<iv>", //base64
"material" : "<material>", //base64
}
RESPONSE: 200 OK
Content-Type: application/json
{
"name" : "EK",
"material" : "<material>", //base64
}
... View more
06-23-2017
06:48 AM
2 Kudos
Please check hadoop wiki at https://wiki.apache.org/hadoop though some of the info maybe outdated.
... View more
06-06-2017
07:57 PM
1 Kudo
@Xiong Duan - fully reload configuration files like hdfs-site.xml/core-site.xml without a restart is not supported. However, you can change certain configuration keys without a restart using hdfs dfsadmin [-reconfig <namenode|datanode> <host:ipc_port> <start|status|properties>]
... View more