dabla commented on PR #39243: URL: https://github.com/apache/airflow/pull/39243#issuecomment-2082565037
> A PowerBi / Microsoft Fabric provider would be really nice ! We (Infrabel) started to work on that, via @dabla's MsGraph Operators. > > @ambika-garg I contacted you on Airflow's Slack. I'd like to discuss the further plans for this provider, and eventually how we can collaborate ? This provider is a specialized operator for refreshing PowerBI datasets, but the MSGraphAsyncOperator (with the Trigger and Sensor) also allows you to achieve the same without a dedicated operator, but then you'll need to combine multiple ones. Nonetheless this could be a handy operator and nice addition as it combines the triggering and polling of the status of the dataset refresh in one handy operator. I agree with @Joffreybvn that this would be a nice opportunity to collaborate on this one and make sure this operator re-uses as much common code (for example the [KiotaRequestAdapterHook](https://github.com/apache/airflow/blob/main/airflow/providers/microsoft/azure/hooks/msgraph.py) could be shared in this case) as possible with the MSGraphAsyncOperator. The [polling](https://github.com/apache/airflow/pull/39243/files#diff-189d7cb0ce8f76ab5582d626703ed9dd6d69e092e613cab4a458d54b5775426cR267) for example could then be done in an Aync way so that we don't block the Airflow worker s until we get back a response from the PowerBI REST API. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
