Giacomo Chiarella
03/05/2025, 3:31 PManonymous-<UUID>
. Why these blocks are created? Can I safely delete them? Data looks in base64, but if I try to decode I’m not able to see the content, I see strange charsNate
03/05/2025, 10:31 PMGiacomo Chiarella
03/06/2025, 7:32 AMflow.from_source(S3Bucket.load(storage), path) \
.deploy(name=deployment_name, work_pool_name=work_pool_name, work_queue_name=work_queue_name, tags=tags,
schedule=CronSchedule(cron=schedule, timezone="UTC") if schedule else None, parameters=parameters)
where flow is a function with @flow (from prefect import flow) decorator and storage is the block name containing bucket name, bucket path and credentials. Is it this creating all those anonymous blocks? Should I just this way
flow.from_source(storage, path) \
.deploy(name=deployment_name, work_pool_name=work_pool_name, work_queue_name=work_queue_name, tags=tags,
schedule=CronSchedule(cron=schedule, timezone="UTC") if schedule else None, parameters=parameters)
to avoid anonymous blocks?Nate
03/06/2025, 5:48 PMGiacomo Chiarella
03/07/2025, 8:00 AMGiacomo Chiarella
03/11/2025, 8:04 AMNate
03/11/2025, 11:55 PM