Tuesday, August 13, 2019

Event hub, Service bus and Azure function implement a data flow that can scale out

This article will explain real like technical architecture how to increase an sudden requests to an server using azure function chain.

Event hubs contains queue
Once data added to a queue we can have listen function.
Example:

  1. A service bus could listen to an event hub once an new event added service bus will start its job.
  2. We can implement azure function in the middle.
  3. Listen to event hub and process or validate data and put them to an service bus.
  4. Then service bus will store data for a while

How can we test performance of an Azure function

List of ways to test performance in a azure function.
How to scale out azure function

Thursday, September 27, 2018

Angular 5 - @ng-bootstarp - Load pop up in the page load.

I would like to discuss about the full workflow how we can load a modal pop up in page load in Angular 5 using @ng-bootstrap 4.0

First of all there are lots of hack and ways to implement this problem . But I followed method without using any third party library.

This post believe that users have the basic understanding about how to create angular project and make it up and running.