Skip to main content

Lifecycle of Worker Roles (RoleEntryPoint)

In this post we will talk about 3 methods that are available in the RoleEntryPoint class for Web and Worker Roles (especially Worker Roles)

  • OnStart
  • Run
  • OnStop

This 3 methods are called in different moment of the lifecycle of a Worker Role. Each of them has a clear scope and output.

OnStart
This method is called automatically when the instance of Worker Role is initialized. It is used to initialized the context or prepare the instance before executing the task.
This method returns a bool value that it is used to tell the system if the initialization was made with success or not. On the happy case the return value should be true. If an error occurs or the initialization fails, that the false value should be returned. When OnStart methods returns false, the Run method will not be called and the instance will be 'restarted' - No other methods will be called.

Run
The Run method is used to execute the batch operation or the logic that is necessary to be executed by the Worker Role. We should 'block' the code to not exist from this method as long as we want to keep our instance alive.
This method is called only when OnStart methods returns true. When we exit from the Run method, the OnStop method will be called and worker role will be restarted.

OnStop
This method is used to make the cleanup sequence of our system. For example deallocate resources or commit some changes or logs.
This method is called only when the no exception is triggered by Run or OnStart method.

Below you can find the lifecycle flow.


Let's take a look on the following code:

    public class WorkerRole : RoleEntryPoint
    {
        private readonly CancellationTokenSource cancellationTokenSource = new CancellationTokenSource();
        private readonly ManualResetEvent runCompleteEvent = new ManualResetEvent(false);

        public override void Run()
        {
            Logger.Debug(LoggingAction.StartingWorkerRole, "Foo.Workers.SU is running");

            try
            {
                RunAsync(cancellationTokenSource.Token).Wait();
            }
            finally
            {
                runCompleteEvent.Set();
            }
        }

        public override bool OnStart()
        {
            bool reFoolt = base.OnStart();

            Logger.Debug(LoggingAction.StartingWorkerRole, "Foo.Workers.SU has been started");

            ObjectFactory.InitializeContainer(new DependencyInstaller());

            var rp = ObjectFactory.GetObject<IPRP>();            
            rp.StartListeningAsync().Wait();            

            return reFoolt;
        }

        public override void OnStop()
        {
            Logger.Debug(LoggingAction.StoppingWorkerRole, "Foo.Workers.SU is stopping");

            cancellationTokenSource.Cancel();
            runCompleteEvent.WaitOne();

            base.OnStop();

            Logger.Debug(LoggingAction.StoppingWorkerRole, "Foo.Workers.SU has stopped");
        }

        private async Task RunAsync(CancellationToken cancellationToken)
        {
            while (!cancellationToken.IsCancellationRequested)
            {                
                await Task.Delay(1000);
            }
        }
    }

Looking over the above code, we observe that no logic is done on Rum method. Not only we initialize the object factory but we also start listening to a queue in the OnStart method. Because of this the Run method is not used and our Worker Role will be in a 'transition' phase all the time.
What we should keep in OnStart method? The initialization of object factory can be keeped in this method. Also, if we would have some initialization on the logger side, that we should keep it in this place.
What we should not keep in OnStart method? We should move the start listening to our our queue from OnStart method to Run. That is a piece of code that is long running and should be in the Run.

    public class WorkerRole : RoleEntryPoint
    {
        private readonly CancellationTokenSource cancellationTokenSource = new CancellationTokenSource();
        private readonly ManualResetEvent runCompleteEvent = new ManualResetEvent(false);

        public override void Run()
        {
            Logger.Debug(LoggingAction.StartingWorkerRole, "Foo.Workers.SU is running");

            try
            {
                RunAsync(cancellationTokenSource.Token).Wait();
            }
            finally
            {
                runCompleteEvent.Set();
            }
        }

        public override bool OnStart()
        {
            bool reFoolt = base.OnStart();
      
            Logger.Debug(LoggingAction.StartingWorkerRole, "Foo.Workers.SU has been started");
      
      try
      {
        ObjectFactory.InitializeContainer(new DependencyInstaller());            
      }
      catch(Exception ex)
      {
        Logger.Exception(ex);
        reFoolt = false;
      }

            return reFoolt;
        }
    
    public void Run()
    {
      var rp = ObjectFactory.GetObject<IPRP>();            
            rp.StartListeningAsync().Wait();            
    }
    

        public override void OnStop()
        {
            Logger.Debug(LoggingAction.StoppingWorkerRole, "Foo.Workers.SU is stopping");

            cancellationTokenSource.Cancel();
            runCompleteEvent.WaitOne();

            base.OnStop();

            Logger.Debug(LoggingAction.StoppingWorkerRole, "Foo.Workers.SU has stopped");
        }

        private async Task RunAsync(CancellationToken cancellationToken)
        {
            while (!cancellationToken.IsCancellationRequested)
            {                
                await Task.Delay(1000);
            }
        }
    }

In conclusion, there are two important things that we should remember:

  • OnStart should only initialize and configure our system
  • Run method is used for processing and log running tasks

Comments

Popular posts from this blog

Why Database Modernization Matters for AI

  When companies transition to the cloud, they typically begin with applications and virtual machines, which is often the easier part of the process. The actual complexity arises later when databases are moved. To save time and effort, cloud adoption is more of a cloud migration in an IaaS manner, fulfilling current, but not future needs. Even organisations that are already in the cloud find that their databases, although “migrated,” are not genuinely modernised. This disparity becomes particularly evident when they begin to explore AI technologies. Understanding Modernisation Beyond Migration Database modernisation is distinct from merely relocating an outdated database to Azure. It's about making your data layer ready for future needs, like automation, real-time analytics, and AI capabilities. AI needs high throughput, which can be achieved using native DB cloud capabilities. When your database runs in a traditional setup (even hosted in the cloud), in that case, you will enc...

Cloud Myths: Migrating to the cloud is quick and easy (Pill 2 of 5 / Cloud Pills)

The idea that migration to the cloud is simple, straightforward and rapid is a wrong assumption. It’s a common misconception of business stakeholders that generates delays, budget overruns and technical dept. A migration requires laborious planning, technical expertise and a rigorous process.  Migrations, especially cloud migrations, are not one-size-fits-all journeys. One of the most critical steps is under evaluation, under budget and under consideration. The evaluation phase, where existing infrastructure, applications, database, network and the end-to-end estate are evaluated and mapped to a cloud strategy, is crucial to ensure the success of cloud migration. Additional factors such as security, compliance, and system dependencies increase the complexity of cloud migration.  A misconception regarding lift-and-shits is that they are fast and cheap. Moving applications to the cloud without changes does not provide the capability to optimise costs and performance, leading to ...

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills)

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills) The idea that moving to the cloud reduces the costs is a common misconception. The cloud infrastructure provides flexibility, scalability, and better CAPEX, but it does not guarantee lower costs without proper optimisation and management of the cloud services and infrastructure. Idle and unused resources, overprovisioning, oversize databases, and unnecessary data transfer can increase running costs. The regional pricing mode, multi-cloud complexity, and cost variety add extra complexity to the cost function. Cloud adoption without a cost governance strategy can result in unexpected expenses. Improper usage, combined with a pay-as-you-go model, can result in a nightmare for business stakeholders who cannot track and manage the monthly costs. Cloud-native services such as AI services, managed databases, and analytics platforms are powerful, provide out-of-the-shelve capabilities, and increase business agility and innovation. H...