Dataiku SFTP Connection via Proxy
 
            
                
                    importthepandas                
                
                    Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS Core Concepts, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023 Posts: 115 Neuron                
            
                        
            Hi Team, exotic question for you!
Is there a way to set up a dataiku SFTP connection when a proxy is required using advanced properties or similar?
Works no problemo via paramiko transport and such:
paramiko.proxy.ProxyCommand(f'nc --proxy my.proxy.com:443 {hostname} {port}')
Wondering if i can do something in here to take advantage of DSS GUI goodness

Operating system used: Ubuntu 18.04
            Tagged:
            
        
            Answers
- 
             Turribeach Dataiku DSS Core Designer, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023, Circle Member Posts: 2,595 Neuron Turribeach Dataiku DSS Core Designer, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023, Circle Member Posts: 2,595 NeuronI don't believe the DSS SFTP recipe supports proxies but there are plenty of solutions out there that do. Find the one that you like the most (like paramiko) and simply call a shell script recipe or just dump the files in a Folder in your flow. 
- 
             importthepandas Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS Core Concepts, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023 Posts: 115 Neuron importthepandas Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS Core Concepts, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023 Posts: 115 NeuronThanks @Turribeach 
 - definitely doing this now, I was just curious if there was a ninja way to make a connection work! Appreciate you.