What is the reason for host lock lease acquired by instance id in Azure function?

12,629

Solution 1

Functions runtime acquires lease on the storage account attached to the function app using an unique Id that is specific to your function App. This is an internal implementation detail.

Deserializing to a generic type should work as long as the queue trigger data matches the POCO. For e.g, here is generic type

public class GenericInput<T>
{
    public T OrderId { get; set; }

    public T CustomerName { get; set; }
}

and the function

 public static void ProcessQueueMessage([QueueTrigger("queuea")] GenericInput<string> message, TextWriter log)
    {
        log.WriteLine(message);
    }

Sample queue data

{
  "OrderId" : 1,
  "CustomerName" : "john" 
}

you would get serialization errors if queue data cannot be serialized to the expected GenericType. For e.g following function would fail trying to process the bad queue input: function:

public static void ProcessQueueMessage([QueueTrigger("queuea")] GenericInput<int> message, TextWriter log)
    {
        log.WriteLine(message);
    }

bad input:

{
 "OrderId" : 1,
 "CustomerName" : "cannot covert string to number" 
}

Solution 2

just add the next key:value to the hosts.json:

"singleton": {
    "listenerLockPeriod": "00:00:15" 
  }
Share:
12,629
vivek nuna
Author by

vivek nuna

Technical Lead at NEC

Updated on July 07, 2022

Comments

  • vivek nuna
    vivek nuna almost 2 years

    I'm running a project which has Azure function, but it's not running my azure function. I have put the breakpoint, its also not hitting the breakpoint. Also, the output is not clear so that I can debug my code. Is there any way to debug the code to find the root cause of the issue?

    Output:

    [3/20/2018 9:39:31 AM] Reading host configuration file 'C:\Users\myname\Source\MyProject\aspnet-core\src\Nec.MyProject.Processors\bin\Debug\netstandard2.0\host.json' [3/20/2018 9:39:31 AM] Host configuration file read: [3/20/2018 9:39:31 AM] { [3/20/2018 9:39:31 AM] "queues": { [3/20/2018 9:39:31 AM] "maxPollingInterval": 1000, [3/20/2018 9:39:31 AM]
    "visibilityTimeout": "00:00:00", [3/20/2018 9:39:31 AM]
    "batchSize": 1, [3/20/2018 9:39:31 AM] "maxDequeueCount": 5 [3/20/2018 9:39:31 AM] } [3/20/2018 9:39:31 AM] } [3/20/2018 9:39:48 AM] Generating 15 job function(s) [3/20/2018 9:39:48 AM] Starting Host (HostId=windowsmyname-655615619, Version=2.0.11415.0, ProcessId=6320, Debug=False, ConsecutiveErrors=0, StartupCount=1, FunctionsExtensionVersion=) [3/20/2018 9:39:49 AM] Found the following functions: [3/20/2018 9:39:49 AM] MyCompany.MyProject.Processors.BackOfficeFilesGeneratorJobs.RunTestGeneratorAsync [3/20/2018 9:39:49 AM] [3/20/2018 9:39:49 AM] Job host started Listening on http://localhost:7071/ Hit CTRL-C to exit... [3/20/2018 9:39:50 AM] Host lock lease acquired by instance ID '000000000000000000000000C78D3496'.

    Azure Function:

    [FunctionName("GenerateTestOfficeMasterDataFiles")]
    public static async Task RunTestGeneratorAsync(
        [QueueTrigger("%MasterDataFiles:Supplier:QueueName%", Connection = "ConnectionStrings:BlobStorageAccount")] BackOfficeFileGeneratorMessage<string> message,
        ExecutionContext context,
        TraceWriter log)
    

    Note: It was working fine when it was BackOfficeFileGeneratorMessage instead of BackOfficeFileGeneratorMessage<string>.

    Update:

    public class BackOfficeFileGeneratorMessage<TEntityKey>
    {
        public BackOfficeFileGeneratorMessage()
        {
            Items = new MasterDataFileOperationItem <TEntityKey>[0];
        }
        public bool UseStaging { get; set; }
        public string StoreNo { get; set; }
        public bool RefreshAll { get; set; }
        public IEnumerable<MasterDataFileOperationItem <TEntityKey>> Items { get; set; }
    }
    
  • Pragna Gopa
    Pragna Gopa about 6 years
    When debugging locally, you should see errors on the console. When deployed to azure, application insights would have details logs. Serializing queue data happens before executing the function code. So, you will not be able to hit a breakpoint inside the function code. Can you update the question with the code for BackOfficeFileGeneratorMessage?
  • vivek nuna
    vivek nuna about 6 years
    I’m debugging it locally, I cannot see my error on console.
  • vivek nuna
    vivek nuna about 6 years
    No way to debug for queue data?
  • vivek nuna
    vivek nuna about 6 years
    Is there any way to see or change this preprocessing method?
  • vivek nuna
    vivek nuna about 6 years
    Updated question, sorry for bad formatting, I typed it from phone, please check.
  • Pragna Gopa
    Pragna Gopa about 6 years
    Here is some information on supported queue messages:how-to-trigger-a-function-when-a-queue-message-is-r‌​eceived. Queue trigger binding does not have support for a complex type like the one you are using. It is strange that you do not see any errors. If you still would like to debug- here is the queueporcessor code. You need to debug webjobs sdk.
  • Pragna Gopa
    Pragna Gopa about 6 years
    If you could provide a simple repro, I can help investigate further.
  • vivek nuna
    vivek nuna about 6 years
    You can simply reproduce the case by using generics in messages like I have used in my code.