Why can I not see a failed invocation when my Azure Function times out?

I successfully tested a python azure function locally that once triggered in blob storage, converts any .xlsb files to .xlsx files. On a <100KB .xlsb file this took about a minute, and a ~70,000KB .xlsb file took 15 minutes (that feels very long! Also looking for performance enhancement here if you have!). The function code is below.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import logging
import pandas as pd
from io import BytesIO
import azure.functions as func
from azure.storage.blob import BlobServiceClient
app = func.FunctionApp()
@app.blob_trigger(arg_name="myblob", path="raw/Input/{name}.xlsb",
connection="")
def blob_trigger(myblob: func.InputStream):
logging.info(f"Python blob trigger function processed blob"
f"Name: {myblob.name}"
f"Blob Size: {myblob.length} bytes")
accountName = ""
accountKey = ""
connectionString = f"DefaultEndpointsProtocol=https;AccountName={accountName};AccountKey={accountKey};EndpointSuffix=core.windows.net"
inputBlobname = myblob.name.replace("raw/Input/", "")
containerName = "raw/Output"
outputBlobname = inputBlobname.replace(".xlsb", ".xlsx")
blob_service_client = BlobServiceClient.from_connection_string(connectionString)
container_client = blob_service_client.get_container_client(containerName)
input_data = myblob.read()
df = pd.read_excel(BytesIO(input_data), engine="pyxlsb")
output_data = BytesIO()
df.to_excel(output_data, index=False)
output_data.seek(0)
bob_client = container_client.get_blob_client(outputBlobname)
bob_client.upload_blob(output_data.getvalue(), overwrite=True)
</code>
<code>import logging import pandas as pd from io import BytesIO import azure.functions as func from azure.storage.blob import BlobServiceClient app = func.FunctionApp() @app.blob_trigger(arg_name="myblob", path="raw/Input/{name}.xlsb", connection="") def blob_trigger(myblob: func.InputStream): logging.info(f"Python blob trigger function processed blob" f"Name: {myblob.name}" f"Blob Size: {myblob.length} bytes") accountName = "" accountKey = "" connectionString = f"DefaultEndpointsProtocol=https;AccountName={accountName};AccountKey={accountKey};EndpointSuffix=core.windows.net" inputBlobname = myblob.name.replace("raw/Input/", "") containerName = "raw/Output" outputBlobname = inputBlobname.replace(".xlsb", ".xlsx") blob_service_client = BlobServiceClient.from_connection_string(connectionString) container_client = blob_service_client.get_container_client(containerName) input_data = myblob.read() df = pd.read_excel(BytesIO(input_data), engine="pyxlsb") output_data = BytesIO() df.to_excel(output_data, index=False) output_data.seek(0) bob_client = container_client.get_blob_client(outputBlobname) bob_client.upload_blob(output_data.getvalue(), overwrite=True) </code>
import logging
import pandas as pd
from io import BytesIO
import azure.functions as func
from azure.storage.blob import BlobServiceClient
 
app = func.FunctionApp()
 
@app.blob_trigger(arg_name="myblob", path="raw/Input/{name}.xlsb",
                               connection="")
def blob_trigger(myblob: func.InputStream):
    logging.info(f"Python blob trigger function processed blob"
                f"Name: {myblob.name}"
                f"Blob Size: {myblob.length} bytes")
   
    accountName = ""
    accountKey = ""
    connectionString = f"DefaultEndpointsProtocol=https;AccountName={accountName};AccountKey={accountKey};EndpointSuffix=core.windows.net"
   
    inputBlobname = myblob.name.replace("raw/Input/", "")
    containerName = "raw/Output"
    outputBlobname = inputBlobname.replace(".xlsb", ".xlsx")
 
    blob_service_client = BlobServiceClient.from_connection_string(connectionString)
    container_client = blob_service_client.get_container_client(containerName)
 
    input_data = myblob.read()
    df = pd.read_excel(BytesIO(input_data), engine="pyxlsb")
 
    output_data = BytesIO()
    df.to_excel(output_data, index=False)
    output_data.seek(0)
 
    bob_client = container_client.get_blob_client(outputBlobname)
    bob_client.upload_blob(output_data.getvalue(), overwrite=True)

I have deployed the function successfully to Azure from VS code and tested it successfully with the smaller .xlsb file. However when I try with the larger file, nothing happens, not even a failed invocation. I assume it times out, but I never see a failed invocation, can anyone explain why?

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật