Member since 
    
	
		
		
		11-11-2019
	
	
	
	
	
	
	
	
	
	
	
	
	
	
			
      
                634
            
            
                Posts
            
        
                33
            
            
                Kudos Received
            
        
                27
            
            
                Solutions
            
        My Accepted Solutions
| Title | Views | Posted | 
|---|---|---|
| 247 | 10-09-2025 12:29 AM | |
| 4727 | 02-19-2025 09:43 PM | |
| 2117 | 02-28-2023 09:32 PM | |
| 3982 | 02-27-2023 03:33 AM | |
| 26001 | 12-24-2022 05:56 AM | 
			
    
	
		
		
		10-09-2025
	
		
		12:29 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 @AEAT COuld you please check orcdump of the file?    hive --orcfiledump -d <path to the file> 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		03-10-2025
	
		
		09:49 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		2 Kudos
		
	
				
		
	
		
					
							 Sorry for my late response.   I did try with the JDK version as mentioned in the driver documentation. It didn't work. However, I am now using keytab method for connecting and I am fine with it.   @asish thanks a ton for all the support. 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		12-17-2024
	
		
		10:31 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 @denysobukhov   If this issue hasn't been resolved I am suspecting the HS2 idle Timeout and Thread pool size. Can you please do the below and share the out come.  1. Address Server-Side Resource or Timeout Issues  Increase HiveServer2 Idle Timeout  By default, HiveServer2 may close idle connections after a certain period. Increase this timeout:   Update the HiveServer2 config:  hive.server2.idle.session.timeout (default: 600000 ms / 10 minutes).  Set it to a larger value, e.g., 3600000 (1 hour).    hive.server2.idle.operation.timeout (default: 5 minutes for operations).  Increase to match your app's use case.  SET hive.server2.idle.session.timeout=3600000;  SET hive.server2.idle.operation.timeout=3600000;  Adjust Thread Pool Size   If HiveServer2 runs out of threads to handle requests, it can drop connections:  Increase hive.server2.threads to a higher value in HiveServer2 configurations.  Restart HiveServer2 after changes.    First check the default hive.server2.thrift.max.worker.threads     jstack -l <HiveServere2_ProccessId> | grep  ".Thread.Stat" | wc -l  Happy hadooping                                                        
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		09-26-2024
	
		
		11:55 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		1 Kudo
		
	
				
		
	
		
					
							 Any there from cloudera to help me on this issue..... 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		07-30-2024
	
		
		08:19 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 @Maicat You can not typecast array to the string. There are 2 ways you can use   1. Select the nth object of the array.      SELECT level5[0] AS first_genre FROM my_table;      WHere 0 is the first object  2. You can flatten it  SELECT column1 FROM my_table LATERAL VIEW explode(level5) genre_table AS level5;            
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-23-2024
	
		
		07:48 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 f you deacivate and reactivate with "Public Locadbalancer" and "Public Executor", this should work 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-21-2024
	
		
		06:43 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Got to know from the dev team that they have modified the column definition. We ran the MSCK repair table and we are able to run the select distinct query.   Vertex errors may not relate to memory issues. Hope this helps the community.  
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		10-18-2023
	
		
		11:50 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 very detailed and useful article. Thank you @asish!  
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		10-03-2023
	
		
		02:07 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 @yucai Has the reply 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.  Thanks.@ 
						
					
					... View more