Replies: 16 comments
-
Please assign to me |
Beta Was this translation helpful? Give feedback.
-
In such a method, it’s rather difficult to nicely add support for something other than I see 2 options
Which option is more acceptable? |
Beta Was this translation helpful? Give feedback.
-
All parameters to all operators must be called using keywords arguments. Please look at: airflow.utils.decorators.apply_defaults It should be something similar to: @apply_defaults
def __init__(
self,
body: duct,
azure_conn_id: str = 'azure_default',
aws_conn_id: str = 'aws_default',
gcp_conn_id: str = 'google_cloud_default',
api_version: str = 'v1',
*args,
**kwargs
) -> None: |
Beta Was this translation helpful? Give feedback.
-
In this case:
which connection should be used? Both? |
Beta Was this translation helpful? Give feedback.
-
It depends on the value of the body parameter. |
Beta Was this translation helpful? Give feedback.
-
I have not found default connection for Is there any possibility for users to update default connections during the airflow upgrade? |
Beta Was this translation helpful? Give feedback.
-
Can you use an existing connection for Azure Blob Storage? https://airflow.readthedocs.io/en/latest/_api/airflow/providers/microsoft/azure/operators/wasb_delete_blob/index.html#module-airflow.providers.microsoft.azure.operators.wasb_delete_blob Why do you need to add a new connection? |
Beta Was this translation helpful? Give feedback.
-
Yeah, just realized, that |
Beta Was this translation helpful? Give feedback.
-
Still in progress. I need to write tests and documentation :) No estimates yet. |
Beta Was this translation helpful? Give feedback.
-
@joppevos How's the documentation writing going? Do you have any problem? I will gladly help. |
Beta Was this translation helpful? Give feedback.
-
@mik-laj I will complete issue at nearest holidays. Thanx ) |
Beta Was this translation helpful? Give feedback.
-
Hi, @khyurri are you still working on this issue? |
Beta Was this translation helpful? Give feedback.
-
Hi, @FHoffmannCode |
Beta Was this translation helpful? Give feedback.
-
@khyurri can you please share a link to PR? |
Beta Was this translation helpful? Give feedback.
-
@turbaszek |
Beta Was this translation helpful? Give feedback.
-
@khyurri unassigning you as you did not complete the PR. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Hello,
We should add support for Microsoft Azure Blob Storage in CloudDataTransferServiceCreateJobOperator. This support should allow pass credentials to Azure from the connection. A similar feature already exists for AWS.
https://github.com/apache/airflow/blob/42eef38/airflow/providers/google/cloud/operators/cloud_storage_transfer_service.py#L48-L57
This issue is due to the March 23 service update.
To complete this task you must complete the following steps:
If you haven't used the GCP yet, after creating the account you will get $300, which will allow you to get to know these services better.
The implementation of this task will allow a better understanding of GCP services, as well as learn methods of testing that is required by the community. If anyone is interested in this task, I am willing to provide all the necessary tips and information.
Use case / motivation
N/A
Related Issues
N/A
Beta Was this translation helpful? Give feedback.
All reactions