Azure Function (Python) w/ Storage Upload Trigger Fails with Large File Uploads
问题 Azure Function (Python) triggered from file uploads to Azure Storage. Function works fine for files up to ~120MB. I just load tested with a 2GB file and the function produced the error Stream was too long. Where is this limitation documented? How would I overcome it using Python? Using boto3 library to PUT files to AWS S3 def main(myblob: func.InputStream): logging.info(f"Python blob trigger function processed blob \n" f"Name: {myblob.name}\n" f"Blob Size: {myblob.length} bytes") myblobBytes