Re: New Committers: Jed Cunningham & Tzu-ping Chung

2021-06-29 Thread Tao Feng
Congrats! On Tue, Jun 29, 2021 at 13:20 Aizhamal Nurmamat kyzy wrote: > Congratulations, Jed and Tzu-ping! Thank you for your contributions! > > On Tue, Jun 29, 2021 at 7:43 AM Tomasz Urbaszek > wrote: > >> Congrats Jed & Tzu-ping!! >> >> Tomek >> >> On Tue, 29 Jun 2021 at 15:45, Bas Harenslak

Re: New Committers: Jed Cunningham & Tzu-ping Chung

2021-06-29 Thread Aizhamal Nurmamat kyzy
Congratulations, Jed and Tzu-ping! Thank you for your contributions! On Tue, Jun 29, 2021 at 7:43 AM Tomasz Urbaszek wrote: > Congrats Jed & Tzu-ping!! > > Tomek > > On Tue, 29 Jun 2021 at 15:45, Bas Harenslak > wrote: > >> Congrats both Jed & Tzu-ping! >> >> Cheers, >> Bas >> >> On 29 Jun

Re: SSIS

2021-06-29 Thread Neeku Endhuku Nenu cheppanu
Thank you very much for your help Daniel... On Tue, 29 Jun, 2021, 9:18 pm Daniel Standish, wrote: > Here: > > from contextlib import closing > > from airflow.models.baseoperator import BaseOperator > from airflow.providers.odbc.hooks.odbc import OdbcHook > > > class

Re: SSIS

2021-06-29 Thread Daniel Standish
Here: from contextlib import closing from airflow.models.baseoperator import BaseOperator from airflow.providers.odbc.hooks.odbc import OdbcHook class SqlAgentOperator(BaseOperator): def __init__(self, job_name: str, **kwargs): super().__init__(**kwargs) self.job_name =

Re: SSIS

2021-06-29 Thread Neeku Endhuku Nenu cheppanu
Hi daniel, Thank you for your support I'm new to python, I'm a .net developer basically... So, if it is possible can you please send me the full template for my reference.. if possible only... Many thanks in advance... Thanks & Regards, Krishna V. On Tue, 29 Jun, 2021, 8:32 pm Daniel

Re: [VOTE] Release Airflow 2.1.1 from RC1

2021-06-29 Thread Xinbin Huang
+1 (non-binding) On Tue, Jun 29, 2021 at 8:00 AM Jed Cunningham wrote: > +1 (non-binding) > > On Tue, Jun 29, 2021 at 3:50 AM Ash Berlin-Taylor wrote: > >> +1 (binding) because I didn't actually cast it yet :D >> >> I think since the CeleryKubernetesExecutor behaviour is not a regression >>

Re: SSIS

2021-06-29 Thread Daniel Standish
As others have suggested, using airflow to orchestrate stored procs directly (or to build sql statements and execute them) is a nice pattern that you could use to ultimately get rid of SSIS. However if you have legacy jobs that need to stay running as is, and you just want to orchestrate them

Re: [VOTE] Release Airflow 2.1.1 from RC1

2021-06-29 Thread Jed Cunningham
+1 (non-binding) On Tue, Jun 29, 2021 at 3:50 AM Ash Berlin-Taylor wrote: > +1 (binding) because I didn't actually cast it yet :D > > I think since the CeleryKubernetesExecutor behaviour is not a regression > from 2.1.0, combined with Kaxil finding a workaround that it is worth > carrying on

Re: New Committers: Jed Cunningham & Tzu-ping Chung

2021-06-29 Thread Tomasz Urbaszek
Congrats Jed & Tzu-ping!! Tomek On Tue, 29 Jun 2021 at 15:45, Bas Harenslak wrote: > Congrats both Jed & Tzu-ping! > > Cheers, > Bas > > On 29 Jun 2021, at 03:48, Jiajie Zhong wrote: > > Congratulations Jed and Tzu-ping! > > Best Wish > — Jiajie > > >

Re: SSIS

2021-06-29 Thread Constance Martineau
Hi Neeku, I used to work in an environment that heavily relied on MSSQL Server and SSIS. Among other things, we used Airflow to orchestrate the SSIS jobs when moving to Airflow. While there is no specific "SSIS" package, assuming you are using odbc drivers, there is an odbc provider (

Re: New Committers: Jed Cunningham & Tzu-ping Chung

2021-06-29 Thread Bas Harenslak
Congrats both Jed & Tzu-ping! Cheers, Bas On 29 Jun 2021, at 03:48, Jiajie Zhong mailto:zhongjiajie...@hotmail.com>> wrote: Congratulations Jed and Tzu-ping! Best Wish — Jiajie

Re: [VOTE] Release Airflow 2.1.1 from RC1

2021-06-29 Thread Ash Berlin-Taylor
+1 (binding) because I didn't actually cast it yet :D I think since the CeleryKubernetesExecutor behaviour is not a regression from 2.1.0, combined with Kaxil finding a workaround that it is worth carrying on with the 2.1.1 release, and we will follow up soon-ish with a 2.1.2 On Mon, Jun 28

Re: SSIS

2021-06-29 Thread Neeku Endhuku Nenu cheppanu
Thank you for your response... On Tue, 29 Jun, 2021, 2:17 pm Jarek Potiuk, wrote: > I think there are no ready operators for SSIS. You can build your own (and > contribute them back maybe) - it's actually not that difficult if you have > a Python API, or some command line interface (which you

Re: SSIS

2021-06-29 Thread Jarek Potiuk
I think there are no ready operators for SSIS. You can build your own (and contribute them back maybe) - it's actually not that difficult if you have a Python API, or some command line interface (which you can invoke via Bash Operator for example). I might be biased, and I do not know much about

Re: SSIS

2021-06-29 Thread Neeku Endhuku Nenu cheppanu
Thank you for your response. SSIS - SQL server integration services.. We are trying to schedule these SSIS jobs in Airflow... We don't find any article about this... Is it possible to schedule these SSIS jobs in Airflow?? Please help me out.. Many Thanks, Krishna v. On Tue, 29 Jun, 2021,

Re: SSIS

2021-06-29 Thread Ash Berlin-Taylor
What is SSIS? What have you tried already? What error are your getting? -ash On 29 June 2021 09:02:43 BST, Neeku Endhuku Nenu cheppanu wrote: >Please help me out on this.. > >On Thu, 24 Jun, 2021, 4:13 pm Neeku Endhuku Nenu cheppanu, < >idk.050...@gmail.com> wrote: > >> Hi team, >> >> Is it