Questions tagged [service-fabric-stateless]

Use this tag for questions related to Stateless Azure Service Fabric . No state is maintained in the service.

Stateless Azure Service Fabric. No state is maintained in the service. Longer-term state is stored in an external database. This is your typical application/data layer approach to building services, and it is currently the norm in cloud applications.

References:

  1. Azure Service Fabric Documentation
  2. Service Fabric application scenarios discusses the difference between stateful and stateless Azure Service Fabric configurations and uses.
181 questions
1
vote
1 answer

How do I determine the number of Node Types, Number of nodes and VM size in Service Fabric cluster for a relatively simple but high throughput API?

I have an Asp.Net core 2.0 Wen API that has a relatively simple logic (simple select on a SQL Azure DB, return about 1000-2000 records. No joins, aggregates, functions etc.). I have only 1 GET API. which is called from an angular SPA. Both are…
1
vote
1 answer

Configuring Azure ServiceFabric for development lifecycle - how to parameterize host name?

What's a good way to manage deploying code changes to Dev, Test, and Prod environments in Azure? The Azure / Service Fabric site provides an article for specifying port numbers using parameters under How-to guides - Manage application lifecycle…
1
vote
1 answer

Develop a Service Fabric Web Application without redeploying after each file change

I have stateless .net core 2 Fabric Service Web Application creating using one of the templates that comes with Service Fabric SDK. It is a real pain to develop since I have to do a full deploy before I can see any changes to code/html/script. In my…
Tony
  • 1,394
  • 5
  • 22
  • 48
1
vote
2 answers

How to call web api controller deployed in Service Fabric Cluster?

We have deployed two APIs on Service Fabric cluster API 1 (Port 8485) API 2(Port 8630) We are able to access the apis locally using following URL: http://localhost:8485/api/controller http://localhost:8630/api/controller Service fabric cluster…
1
vote
1 answer

How to use URLrewrite for deploying React Web on a Kestrel server in an ASP.Net Core 2 stateless service using Azure Service Fabric

I am attempting to deploy a React web site to Azure Service Fabric. I am using kestrel in a stateless ASP.Net Core 2 service…
1
vote
1 answer

Is there any way to read from specific EventHub Partition using EventProcessorHost

I have a ServiceFabric Stateless service where I want to read from specific EventHub Partition using EventProcessorHost. I would like to read from two event hub partition mapping each to one EventProcessorHost First EventHub Partition => First…
1
vote
1 answer

Service Fabric, Remoting V2 to Stateful Service not working

I can't get this working, I've googled and probably found every page on how to do this, all two of them! Basically I'm just trying to get SF Remoting V2 working from a stateless .NET Core 2 MVC App' to a Statefull service. Here's what I have…
1
vote
1 answer

Error while deleting stateless service in Service Fabric Cluster

In Service Fabric Cluster i have a stateless service which has a while(true) loop running continuously in RunAsync Method. Due to this while loop i am finding it hard to delete the application from the cluster. Error occurs every time i try to…
1
vote
3 answers

Service architecture using service fabric

I am designing a stateless service which essentially processes a stream of information and then based on conditions sends emails. I want to host this in service fabric, with more than one active in case of failure, however how do I limit the email…
Telavian
  • 3,752
  • 6
  • 36
  • 60
1
vote
1 answer

Exposing two end points from one ASP.NET Core Website On Service Fabric

I am using an ASP.NET Core 1.1 Website on Service Fabric 2.7, this is a public facing website where all communication is done over SSL (port 443). However, if someone tries to connect to port 80 (http) by mistake, I want to forward them to the same…
1
vote
0 answers

Service Fabric FabricConnectionDeniedException when calling Stateless Service via Remoting

I've got a standalone on-premise Service Fabric Cluster that is secured using Windows Authentication. In this application I have a ASP.NET Core WebApi Stateless service that tries to communicate with another stateless service via the remoting.…
1
vote
0 answers

How to handle Servce Fabric Service Resolution as it involves case sensitive service name

When a service registers itself with the naming service it seems the servicename (/) that is used as a key is case sensitive in the internal dictionary. The side effect of this design decision/bug is that the callers that go to resolve the service…
0
votes
1 answer

Autofac + Service Fabric

I've successfully gotten .net core webapi deployed to service fabric. However, I want to move a majority of the setup to a class library file. Doing so creates a circular reference between my class library and the DAL. So I can't do that. (The…
Cliff Chambers
  • 73
  • 2
  • 12
0
votes
1 answer

How to get total service fabric nodes

I need to create service availability metrics for a service fabric service. If all nodes are up then need to report OK state, any node is down then Warning state and multiple nodes are down then Error state. I am little confuse on getting the total…
0
votes
1 answer

How i can run multiple asp.net core web api in different node on local service fabric cluster

I have a stateless web application used as frontend, A statefull webapi(want to use as gateway) application and two stateless application. I want to run all the service in different node on my local service fabric cluster. How to configure it?