Member since
02-07-2019
2746
Posts
241
Kudos Received
31
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2332 | 08-21-2025 10:43 PM | |
| 2689 | 04-15-2025 10:34 PM | |
| 6971 | 10-28-2024 12:37 AM | |
| 2423 | 09-04-2024 07:38 AM | |
| 4416 | 06-10-2024 10:24 PM |
09-16-2021
10:06 AM
1 Kudo
@Sayed016 This error occurs if the HDFS files are under replicated. Did you see HDFS is under replicated when the issue occurred? Wait for the HDFS to gets replicated and you can query
... View more
09-15-2021
03:40 AM
1 Kudo
Often this happens as there is a "hidden" character at the end of the file or folder name. For example a line break (\n, \r, etc). If you list the files you can get a clue that is the case as usually the output will look strange with an extra line or something there. You can try running a few commands like the following to see if it matches a file: hdfs dfs -ls $'/path/to/folder\r' hdfs dfs -ls $'/path/to/folder\n' hdfs dfs -ls $'/path/to/folder\r\n' If any of those match, then you can delete the incorrect one with a similar command. If you get no luck with that, then pipe the ls output into "od -c" and it will show the special characters hdfs dfs -ls /path/to/folder | od -c
... View more
09-14-2021
11:38 PM
1 Kudo
Hi @Seaport As you know, resource managers like yarn, standalone, kubernets will create containers. Internally RMs will use shell script to create containers. Based on resources, it will create one or more containers in the same node.
... View more
09-13-2021
11:23 PM
@rachida_el-hamm, did @Shelton's response help you resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more
09-13-2021
07:53 AM
Sure, will wait for your response. Thanks @wjsandman.
... View more
09-12-2021
10:58 PM
@npr20202, Have you resolved your issue? If so, can you please provide the solution here? It will help others who are seeking answers to similar queries. If you are still experiencing the issue, can you provide the information @willx has requested?
... View more
09-01-2021
11:44 PM
@Eric_B Yes, your understanding is correct.
... View more
08-30-2021
06:13 AM
Hi Atahar, Yes, all the permissions are given to storageadmin role. Thanks
... View more
08-30-2021
01:01 AM
Thanks for the confirmation @syedshakir. Much appreciated.
... View more
08-25-2021
09:34 PM
@Amn_468 Has any of the replies helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more