Member since 
    
	
		
		
		09-15-2020
	
	
	
	
	
	
	
	
	
	
	
	
	
	
			
      
                243
            
            
                Posts
            
        
                19
            
            
                Kudos Received
            
        
                7
            
            
                Solutions
            
        My Accepted Solutions
| Title | Views | Posted | 
|---|---|---|
| 2772 | 11-08-2024 08:45 PM | |
| 1547 | 02-22-2024 02:53 AM | |
| 839 | 02-21-2024 06:55 AM | |
| 1591 | 02-20-2024 09:20 AM | |
| 946 | 02-15-2024 08:05 AM | 
			
    
	
		
		
		02-23-2024
	
		
		06:23 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Hi @Kropiciel   To connect ODBC driver with multiple HiveServers, you can configure High Availability for Hive using LB, refer below doc for same. The use the LB hostname and port in the connection string  https://docs.cloudera.com/cdp-private-cloud-base/7.1.9/configuring-apache-hive/topics/hive-ha-loadbalancer.html  Let us know if this helps.     As for the python connection use below code and check how it goes.     CODE:  ---------  from sqlalchemy import create_engine  #Input Information  host = hive_hostname  port = 10000  schema = schema_name  table = table_name     #Execution  engine = create_engine(f'hive://{host}:{port}/{schema}')  engine.execute(QUERY) 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-23-2024
	
		
		05:44 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Hi @Kalpit  can you confirm the version of the hadoop cluster 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-22-2024
	
		
		02:53 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		1 Kudo
		
	
				
		
	
		
					
							 Hi  @Shivakuk  As I test Sentry does not support DROP and DELETE privilege.  However if you want to remove the DROP access from Admin user, then you have first remove ALL privileges and just provide  SELECT and INSERT privileges to the user  NOTE: The DELETE, UPDATE, and UPSERT operations require the ALL privilege on the DB/ Table/ Column. 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-21-2024
	
		
		08:15 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Hi @SDPLearner Can you please check and confirm if it works using impala-shell or not. 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-21-2024
	
		
		06:55 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		1 Kudo
		
	
				
		
	
		
					
							 Hi @wert_1311   Thank you for reaching out to Cloudera Community, Cloudera provide an observability tool called "Observability" which help you monitor jobs within a cluster.  You can refer below documentation on how this tool can be configured and used.  https://docs.cloudera.com/observability/cloud/overview/topics/obs-understanding-observ.html 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-21-2024
	
		
		05:54 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Hi @echodot your table seems to be transactional, that is why it is not getting altered.  Please create a non-tractional table and then perform your task 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-20-2024
	
		
		09:20 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Hi @Shivakuk   Please refer below doc, you can use the Revoke statements in sentry to restrict the access on a database  https://docs.cloudera.com/documentation/enterprise/6/latest/topics/sg_hive_sql.html#revoke_privilege_statement     Let us know if this helps 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-20-2024
	
		
		09:14 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							  @echodot      Try to execute the queries below and then run your query.  # alter table ATABLE set tblproperties('impala.disable.recursive.listing'='true');   # refresh ATABLE;  # check if your query works or not 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-16-2024
	
		
		05:18 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Hi @echodot   As the source table is not in parquet format, try ing below command to create and load the data  CREATE TABLE jmaster.hivetesttable AS SELECT * FROM JMASTER.ATABLE STORED AS PARQUET; 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-15-2024
	
		
		08:27 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		1 Kudo
		
	
				
		
	
		
					
							 Hi @drgenious   Please share us the Sqoop console logs with --verbose logs and the yarn application logs for review. 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		 
        













