Member since 
    
	
		
		
		02-02-2016
	
	
	
	
	
	
	
	
	
	
	
	
	
	
			
      
                583
            
            
                Posts
            
        
                518
            
            
                Kudos Received
            
        
                98
            
            
                Solutions
            
        My Accepted Solutions
| Title | Views | Posted | 
|---|---|---|
| 4179 | 09-16-2016 11:56 AM | |
| 1727 | 09-13-2016 08:47 PM | |
| 6913 | 09-06-2016 11:00 AM | |
| 4154 | 08-05-2016 11:51 AM | |
| 6225 | 08-03-2016 02:58 PM | 
			
    
	
		
		
		06-13-2022
	
		
		01:54 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 @PriyalPotnis as this is an older post, you would have a better chance of receiving a resolution by starting a new thread. This will also be an opportunity to provide details specific to your environment that could aid others in assisting you with a more accurate answer to your question. You can link this thread as a reference in your new post. 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-11-2021
	
		
		06:22 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 I think this was due to non runnning metstore service from hive.     You should run command "hive --service metastore & " first and then start hive console.  
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		09-30-2020
	
		
		02:54 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 In my case, source file gets removed, when I load a single file with 'OVERWRITE' clause.  files stay when I load without 'OVERWRITE' clause for a set of files with a pattern (say _*.txt) 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		04-20-2020
	
		
		09:47 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 hdfs dfs -ls -R <directory> |grep part-r* |awk '{print $8}' |xargs hdfs dfs -cat | wc -l 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-19-2020
	
		
		09:20 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Writing this so that it can help someone in future:  I was installing Hive and getting error that It hive metastore wasn't able to connect, and I successfully resolved the error by recreating the hive metastore database.     Someone the user which was created in mysql Hive metastore wasn't working properly and not able to authenticate. So I dropped metastore DB, Dropped User. Recreated Metastore DB, Recreated User, Granted all privileges and then it was working without issues. 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		01-08-2020
	
		
		04:27 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 You can also append HIVE_SKIP_SPARK_ASSEMBLY to the command which should remove the warnings.  export HIVE_SKIP_SPARK_ASSEMBLY=true; hive -S --database dbname -e 'show tables;'    
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		08-18-2019
	
		
		09:42 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Hi @rushi_ns ,     yours might be completly different issue.  Please create a new Question thread stating your issue.    
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		06-02-2017
	
		
		11:37 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		1 Kudo
		
	
				
		
	
		
					
							 @Jitendra Yadav  Can you please check which user has the permission to read write this file?  # ls -la /etc/yum.repos.d/ambari.repo 
-rw-r--r--. 1 root root 304 May 31 17:08 /etc/yum.repos.d/ambari.repo  .  You can verify the same using this Python script"  import os
import pwd
print 'Who Owns it: ' + pwd.getpwuid(os.stat("/etc/yum.repos.d/ambari.repo").st_uid).pw_name  .  Now If do the following:  # useradd 55025
# chown 55025 /etc/yum.repos.d/ambari.repo  .  Then you will see  55025 in the output. 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		05-30-2017
	
		
		08:19 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 @Constantin Stanca    There was no error in hive/hdfs/yarn etc. during that time frame, even I tried to restart all the services but didn't helped.   But when I restarted Ambari server the issue got resolved, don't know how this exception is related to ambari restart 🙂 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		09-21-2016
	
		
		11:54 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Thanks @Ayub Pathan for the help, it worked with below syntax as per your suggestion.  RULE:[1:$1](4[0-9]*)s/^4/d/ 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		 
        













