diff --git a/articles/app-service-web/websites-dotnet-webjobs-sdk-storage-blobs-how-to.md b/articles/app-service-web/websites-dotnet-webjobs-sdk-storage-blobs-how-to.md index dbaaa65c2b9..2446f0c9edc 100644 --- a/articles/app-service-web/websites-dotnet-webjobs-sdk-storage-blobs-how-to.md +++ b/articles/app-service-web/websites-dotnet-webjobs-sdk-storage-blobs-how-to.md @@ -30,7 +30,7 @@ The guide assumes you know [how to create a WebJob project in Visual Studio with This section shows how to use the `BlobTrigger` attribute. -> [AZURE.NOTE] The WebJobs SDK scans log files to watch for new or changed blobs. This process is inherently slow; a function might not get triggered until several minutes or longer after the blob is created. In addition, storage logs are created on a "best efforts" basis; there is no guarantee of 100% accuracy. Under some conditions, such as high CPU load, logs might be missed. If the speed and reliability limitations of blob triggers are not acceptable for your application, the recommended method is to create a queue message when you create the blob, and use the [QueueTrigger](websites-dotnet-webjobs-sdk-storage-queues-how-to.md#trigger) attribute instead of the `BlobTrigger` attribute on the function that processes the blob. +> [AZURE.NOTE] The WebJobs SDK scans log files to watch for new or changed blobs. This process is not real-time; a function might not get triggered until several minutes or longer after the blob is created. In addition, storage logs are created on a "best efforts" basis; there is no guarantee that all events will bbe captured. Under some conditions, logs might be missed. If the speed and reliability limitations of blob triggers are not acceptable for your application, the recommended method is to create a queue message when you create the blob, and use the [QueueTrigger](websites-dotnet-webjobs-sdk-storage-queues-how-to.md#trigger) attribute instead of the `BlobTrigger` attribute on the function that processes the blob. ### Single placeholder for blob name with extension