Member since
07-30-2020
219
Posts
45
Kudos Received
60
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
429 | 11-20-2024 11:11 PM | |
486 | 09-26-2024 05:30 AM | |
1081 | 10-26-2023 08:08 AM | |
1852 | 09-13-2023 06:56 AM | |
2126 | 08-25-2023 06:04 AM |
11-20-2024
11:11 PM
2 Kudos
@UrosCvijanovic The initializeSharedEdits will only try to format the journalnodes. Specifically, we expect /hdfs/journalNode to be empty for it to succeed. Once this is done, the Namenode will sync the edits with the 3 journalnodes. Note : Do take a backup of Namenode metadata before this to be on a safer side. Are you able to list the files present in HDFS on the single node machine?
... View more
11-20-2024
06:10 AM
1 Kudo
@UrosCvijanovic The Namenode holds the Metadata that maps the files to the blocks present in the Datanode. Without this metadata, the namenode won't be able to interpret which block belongs to which file even if we manage to report all the blocks to the Namenode. Though the chances are very slim, you can try to start a new single node cluster and then map this block data with the new cluster. Copy the old data/current directory containing the block files into the new cluster’s DataNode storage directories.
... View more
11-19-2024
02:45 AM
2 Kudos
@UrosCvijanovic When you reformatted the NameNode, its metadata (e.g., fsimage and edits files) was reset, and a new VERSION file was created. If you have a backup of the original NameNode directory before the format, then you can copy it to the current Namenode data dir. The clusterID and the blockPool ID should match in the Version file of both the Namenode and Datanode.
... View more
09-26-2024
05:30 AM
You can check the Hbase Master log and verify of the hbase:meta and hbase:namespace tables are online.
... View more
09-13-2024
04:59 AM
2 Kudos
See if you can raise a support ticket with Cloudera. The app log needs a detailed review to know what is causing the container to get fail.
... View more
09-02-2024
05:19 AM
1 Kudo
If you are still not able to run the command successfully from the Region server host, then its most likely an issue with YARN. Can you check if there are any other WARNs or ERRORs in the app log apart from log4j warnings.
... View more
09-02-2024
12:55 AM
1 Kudo
can you confirm if Zookeeper service is running on this host? Apart from the log4J errors, Do you see any others in the Application log?
... View more
09-01-2024
11:23 PM
1 Kudo
@Amandi Can you try to run the command from a Region server host. The connection is going to a localhost on port 2181. So if Zookeeper is not running on the host from where you are running the command, it will fail.
... View more
05-15-2024
05:29 AM
If the current stat in hbase:meta is OPEN, I won't suggest performing any other action to change the state in meta. I suspect there are some procedures running in the backend trying to assign the region again. Do you see any procedure as such in the "Procedure & locks" section under the Hbase Master Web UI?
... View more
05-10-2024
07:09 AM
If the Region server reports that the region is already OPEN, try to scan the hbase:meta table from the hbase shell and check what state that region is in. If its still in OPENING state in meta, try to change its state to OPEN. Do it for one of the region and see if that brings down the RIT count to 133.
... View more