Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use load balancer for scaling Azure Service Fabric apps

Recently came to know about Azure Service Fabric and seems a good way to develop scaling applications as bunch of micro services. Everywhere it is telling that we need to have stateless front end web services and stateful partitioned internal services. The internal services scale by partitioning the data.

But what happens to the front end services in load? .The chances are very less as they are doing nothing but relying to internal stateful services. Still should we use load balancer before front end services? If so, can we host the same too via Service Fabric's Stateless model using OWIN or any other web host?

The question is asked already in SO but as comment. It didnt get reply as the original question was different. Azure Service Fabric usage

like image 268
Joy George Kunjikkuru Avatar asked Jul 23 '15 21:07

Joy George Kunjikkuru


People also ask

What is the use of load balancer in Azure?

The load balancer is used to distribute the incoming traffic to the pool of virtual machines. It stops routing the traffic to a failed virtual machine in the pool. In this way, we can make our application resilient to any software or hardware failures in that pool of virtual machines.

Does Azure need a load balancer?

IaaS applications require internal load balancing within a virtual network, using Azure Load Balancer. Application-layer processing refers to special routing within a virtual network. For example, path-based routing within the virtual network across VMs or virtual machine scale sets.

Is Azure service fabric deprecated?

Today, we are announcing the retirement of Azure Service Fabric Mesh. We will continue to support existing deployments until April 28th, 2021, however new deployments will no longer be permitted through the Service Fabric Mesh API.

What are different kind of load balancers we have in Azure?

Azure load balancers come in two varieties. There are public load balancers and internal load balancers, which are also known as private load balancers.


1 Answers

Yes, you'll definitely want to distribute load across your stateless services as well. The key difference is that since they are stateless, they can handle requests in a round-robin fashion.

Whereas stateful services have partitions, which map to individual chunks of the service's state, stateless services simply have instances, which are identical clones of each other, just on different nodes. You can set the number of instances in on the default service definition in the application manifest. For instance, this declaration will ensure that there are always 5 instances of your stateless service running in the cluster:

<Service Name="Stateless1">
   <StatelessService ServiceTypeName="Stateless1Type" InstanceCount="5">
     <SingletonPartition />
   </StatelessService>
</Service>

You can also set the InstanceCount to -1, in which case Service Fabric will create an instance of your stateless service on each node.

The Azure load-balancer will round-robin your incoming traffic across each of your instances. Unfortunately, there isn't a good way to simulate this in a one-box environment right now.

like image 128
Sean McKenna Avatar answered Oct 09 '22 04:10

Sean McKenna