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
2 answers

Service Fabric Reverse Proxy HTTP Not Found

I have a SF project where I have two public services that are secured with HTTPS, and multiple "private" services that are not. I'm running into an issue when I try to do a reverse proxy call to one of my public services from one of my private…
1
vote
1 answer

Multiple kestrel stateless service instances running on different ports in service fabric

I have created a Stateless service in Visual Studio 2019 using the sample defaults (Create new project -> Service Fabric Application -> name the project and solution -> Stateless ASP.NET Core service). Running the weather forecast application with…
1
vote
0 answers

Service Fabric disable node type for Services with non-specific placement constraints

I have an Azure SF cluster with several node types: Management (used for the management nodes, no apps are hosted here) Misc (used for all micro services that do not care about their placement) AppX (used for specific application XXX, which also…
johni
  • 5,342
  • 6
  • 42
  • 70
1
vote
1 answer

Service Fabric AspNet Core 3.1 Autofac WebHostBuilder

I have service fabric stateless asp.net core 2.2 application. I trying to upgrade this to asp.net core 3.1. I am using autofac dependency injection container. As per autofac documentation DI registration moved from WebHostBuilder to Generic…
1
vote
0 answers

How to renew service fabric stateless service certificate

I've got a gateway stateless service which serves as an entry point to my service fabric cluster. It's secured using let's encrypt SSL certificate. It is set using the service start up like below return new WebHostBuilder() .UseKestrel(opt => { …
1
vote
0 answers

Service Fabric's Property Management API and Traefik Extension

Environment: An application deployed to Service Fabric using service manifest in which I've configured Traefik's extension labels:
Amir Keibi
  • 1,991
  • 28
  • 45
1
vote
1 answer

Processing termination of activated Application Host after creation of Service Fabric application

We have roughly 12 Service Fabric clusters running in Azure. They are running correctly in both our Production and Test environments. We have found recently that one of them will not start locally. We have not ran this one locally in quite a…
1
vote
1 answer

Shutting down instance of Service Fabric stateless service

I have a Service Fabric stateless service that runs as a background job and reads from a queue. For each message it receives, it calls an external API. If the failure rate is high for the external call, I want to bring down the specific instance of…
Amlan
  • 241
  • 6
  • 13
1
vote
1 answer

Service Fabric fails to find resource file

I am having a problem deploying a microservice application to a remote Service Fabric cluster in Azure. The application consists of 5 services, 4 of which manage to start and their state is displayed as Ready. However one fails with following error…
GrayCat
  • 1,749
  • 3
  • 19
  • 30
1
vote
0 answers

Issue with service fabric resource manager file deployment (apim.json and apim.parameters)

My requirement is as follows: I have an web API whose port I have removed from the ServiceManifest.xml file. This is done so that I can implement multiple node multiple calls feature from API management. (i.e. I want to remove dependency on port…
1
vote
1 answer

How to call a service fabric service from a Winform application?

We have two Service Fabric stateless services. We have upgraded our service fabric runtime to the latest version and now want to use the latest V2(V2_1) runtime for communication. We have also upgraded the Service Fabric SDK to the latest…
1
vote
1 answer

Service fabric code package value of CpuShares for 100% cpu usage(max)

I have 2 service fabric application (sln) with 3 services (3 code packages). I want to distribute those in 40% 20% 20% of max CPU percentage irrespective of core i.e. no limitation on number of CPU cores (current machine is 4 core logical).…
1
vote
3 answers

Service Fabric: System.ArgumentException: No interface found with this Id -488762776

I'm working on a simple Service Fabric cluster, where I want to call a stateless service from a stateless ASP.NET Core 2.0 web API. The first thing I did was create a .NET Standard 2.0 class library with a simple interface and DTO: public interface…
maf748
  • 768
  • 1
  • 4
  • 15
1
vote
0 answers

Connect to AzureBlobStorage from AzureServiceFabric stateless service

I have a stateless service running on Service Fabric, it's behind a corporate proxy. I'm trying to connect to Azure to upload some images to blob storage, but is not working. Is it possible to set Service Fabric proxy or maybe there are other…
1
vote
1 answer

Upgrade service unreachable status on service fabric Azure

I am somehow getting "Upgrade service unreachable" status for service fabric on Azure.And due to this behavior of my application is weird - sometime able to access and sometime not able to access.Also found no issues in virtual machine's event…
sandip
  • 165
  • 1
  • 11
1 2
3
12 13