Sharing files between 2 Azure Functions? -
i know can use local file system in azure functions in d:\local\temp.
is possible 2 azure functions share directory in file system?
i download file in 1 azure function, , read/write in another, , upload in yet azure function.
is possible? or have these 3 steps in 1 azure function?
sharing local folder not recommended way communicate between 2 functions. in case running on consumption plan, functions might running on 2 different instances (server), , lose communication channel.
use blob storage instead of local folders.
Comments
Post a Comment