Benjamin.bgx
08/10/2022, 9:16 AMblock = Azure(azure_storage_connection_string="paste_the_string_here")
block.save("dev")
and with that commande line I finalize the storage information for the flow :
prefect deployment build flow.py:flowname \
--name deploy_name --tag dev -sb azure/dev
Can I do the same things from the UI ? In this case, I just need to use the command line and reference the block define in the UI.
Am I right with all this assumptions ?
And so, how I specify the storage for the persistent logs ?
Thank you ! 🙂Oscar Björhn
08/10/2022, 9:20 AMAnna Geller
storage for the persistent logs ?logs are stored in the backend - if you're on Cloud, we handle that for you; if you're self-hosted, logs are persisted in your DB
Benjamin.bgx
08/10/2022, 9:25 AMAnna Geller
from prefect.filesystems import Azure
az = Azure(
bucket_path="prefect/deployments",
azure_storage_connection_string="...",
)
az.save("dev", overwrite=True)
Anna Geller
iñigo
10/24/2022, 4:01 PMiñigo
10/24/2022, 4:01 PM