Member since 
    
	
		
		
		09-15-2020
	
	
	
	
	
	
	
	
	
	
	
	
	
	
			
      
                243
            
            
                Posts
            
        
                19
            
            
                Kudos Received
            
        
                7
            
            
                Solutions
            
        My Accepted Solutions
| Title | Views | Posted | 
|---|---|---|
| 2779 | 11-08-2024 08:45 PM | |
| 1550 | 02-22-2024 02:53 AM | |
| 839 | 02-21-2024 06:55 AM | |
| 1594 | 02-20-2024 09:20 AM | |
| 947 | 02-15-2024 08:05 AM | 
			
    
	
		
		
		10-28-2025
	
		
		09:52 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 I have a okta server and application / scope information, and I need guidance on how to implement the okta provider in the knox setup. The current documentation talks more about ldap, and not helpful on okta setup. 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		09-07-2025
	
		
		11:04 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 @lbourgeois, Did the response assist in resolving your query? If it did, please mark the relevant reply as the solution, as it will help others locate the answer more easily in the future.  
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		07-21-2025
	
		
		01:47 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 You can bypass SSL verification in Python using:  import requests
response = requests.get('https://your-url.com', verify=False)  However, disabling SSL verification is not recommended for production as it exposes you to security risks. If you're facing a CERTIFICATE_VERIFY_FAILED error, it's better to fix the underlying certificate issue. Here's a detailed guide: https://sslinsights.com/fix-certificate-verify-failed-error-in-python/    
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		11-13-2024
	
		
		01:42 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		1 Kudo
		
	
				
		
	
		
					
							 @repealp 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
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		04-11-2024
	
		
		09:23 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 I got the reason.   When enter the LDAP information   I had to use port 3268  For example ldap://ad.server.host:3268 instead of ldap://ad.server.host:389 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		04-04-2024
	
		
		10:35 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		1 Kudo
		
	
				
		
	
		
					
							 @felix_ Did the response assist in resolving your query? If it did, kindly mark the relevant reply as the solution, as it will aid others in locating the answer more easily in the future.  
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		04-03-2024
	
		
		09:30 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Hi @s198, You do not need to have hadoop file system or datanode role on the remote server. You just need to set up some hdfs gateway on the remote server and pull it using distcp. If you are using HDP or CDP, you can add the remote server as a gateway and perform distcp in the remote server.  Another option is to share one of the directories in the remote server, mount it in hadoop cluster node, and perform distcp to that mounted directory. 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		04-03-2024
	
		
		06:55 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 hi @jAnshula     thanks for message  but at the time of the error, it was related to a configuration in cloudera manager regarding supported encryption types 😁 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		04-03-2024
	
		
		02:08 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Hi @drgenious   First, please test your script outside of Oozie.  If it is working outside of Oozie, then it should work from Oozie as well.  As for  error "No module named impala.dbapi" it could be that there is some version dependency issue with impyla and its related libraries  refer ---> https://github.com/cloudera/impyla/issues/227    
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		03-20-2024
	
		
		08:10 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 Hi @MrBeasr   Please check the status of job via Oozie Database:  # select count(*) from WF_JOBS where id like '%0043858-220322202819429-oozie-oozi-W%';     If require you may set the status of the job in Database itself:  # update wf_jobs set status='FAILED' where id like '%0043858-220322202819429-oozie-oozi-W%';   
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		 
        













