eladkal commented on code in PR #22758:
URL: https://github.com/apache/airflow/pull/22758#discussion_r844141528
##########
airflow/providers/amazon/aws/operators/s3.py:
##########
@@ -318,6 +318,94 @@ def execute(self, context: 'Context'):
)
+class S3CreateObjectOperator(BaseOperator):
+ """
+ Creates a new object from a given string or bytes.
Review Comment:
No, the example dag in the PR is just how to set the Operator.
I want to see how you thought the operator is to be used with an actual
workflow.
I think there may be a wrong assumption here.
Tasks do not share data between them (other than metadata via Xcom).
What I fail to understand is how this operator will get the given string?
(Assuming the string is not hard coded)?
Would the string be retrieved from other operator? How?
--
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]