Member since 
    
	
		
		
		05-12-2024
	
	
	
	
	
	
	
	
	
	
	
	
	
	
			
      
                6
            
            
                Posts
            
        
                3
            
            
                Kudos Received
            
        
                0
            
            
                Solutions
            
        
			
    
	
		
		
		03-05-2025
	
		
		05:24 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		1 Kudo
		
	
				
		
	
		
					
							 Hello  I had a similar problem in the past:  i had snapshots policies that did hourly snapshots and retain the last hours + 3 days + 4 weeks . the disk space was released after i deleted snapshots as the deletion of files doesn't delete the snapshoted hdfs data's blocs  i also emptied my HDFS Trash and checked that all users HDFS Trash DIRs where empty or small.  maybe tha could help   Regards 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		07-17-2024
	
		
		09:08 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		1 Kudo
		
	
				
		
	
		
					
							 When the local NameNode is healthy, the ZKFC holds a session open in ZooKeeper. If the local NameNode is active, it also holds a special “lock” znode. This lock uses ZooKeeper’s support for “ephemeral” nodes; if the session expires, the lock node will be automatically deleted.  Ephemeral znodes - These znodes exists as long as the session that created the znode is active. When the session ends the znode is deleted. Zookeeper has a concept of Watches which can be set on znodes to track them for any changes.  Check the link how Watches work in zookeeper -  https://zookeeper.apache.org/doc/current/zookeeperProgrammers.html#ch_zkWatches 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		05-24-2024
	
		
		02:34 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Hi @NaveenBlaze ,  You can get more info from https://github.com/c9n/hadoop/blob/master/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ha/EditLogTailer.java#L196 .  Notice these two lines in this method doTailEdits  FSImage image = namesystem.getFSImage();  streams = editLog.selectInputStreams(lastTxnId + 1, 0, null, false);  editsLoaded = image.loadEdits(streams, namesystem); 
						
					
					... View more