Questions tagged [azure-service-fabric]

Azure Service Fabric is a distributed systems platform used to build scalable, reliable, and easily-managed applications for the cloud. Service Fabric addresses the challenges in developing and managing cloud applications. By using Service Fabric developers and administrators can avoid solving complex infrastructure problems and focus instead on implementing mission critical, demanding workloads knowing that they are scalable, reliable, and manageable.

Azure Service Fabric enables you to build and manage scalable and reliable applications composed of microservices running at very high density on a shared pool of machines (commonly referred to as a Service Fabric cluster). It provides a sophisticated runtime for building distributed, scalable stateless and stateful microservices and comprehensive application management capabilities for provisioning, deploying, monitoring, upgrading/patching, and deleting deployed applications.

See also:

3148 questions
20
votes
4 answers

The active solution configuration is not configured to build or deploy the Service Fabric Application Project

I have a Service Fabric project with multiple services. When i try to deploy it, i get the following error: The active solution configuration is not configured to build or deploy the Service Fabric Application Project. This can happen if the …
SummerCode
  • 1,403
  • 1
  • 14
  • 28
20
votes
3 answers

The primary or stateless instance for the partition has invalid address

I created a stateful service with the out-of-the-box partitioning:
tymtam
  • 31,798
  • 8
  • 86
  • 126
20
votes
4 answers

Service Fabric Multiple service instances with config override

Our service fabric application includes a stateless service that exposes an HTTP endpoint through OwinCommunicationListener. The ServiceManifest.Xml for this service specifies the service endpoint
Andy Baker
  • 811
  • 1
  • 9
  • 19
20
votes
1 answer

Pub/sub pattern in Azure Service Fabric

I'm working on an Azure Service Fabric application here where I have certain actors that need to receive pings/hooks from other services on demand. The application is a sort of event distribution engine that is intended to work something like…
Trond Nordheim
  • 1,416
  • 2
  • 12
  • 15
20
votes
6 answers

Azure service fabric actor dependency injection

Is there any way to inject dependencies in to the Azure Service Fabric Actor's constructor?
yapepyaka
  • 203
  • 2
  • 5
19
votes
2 answers

how to impersonate a user via odata

We have been succesful in using the odata v8.1 endpoint in 2016 to impersonate a user. Please note that the intended request flow is: Postman-->LocalHost Microservice-->CRM Example of a working request from Postman-->CRM (directly, without going…
19
votes
1 answer

Azure Service Fabric activation error

The deployment of one of my apps to a Service Fabric Cluster failed and triggered an Unhealthy Evaluation with an error event saying: There was an error during CodePackage activation.The service host terminated with exit code:3762504530 However, on…
Horia Toma
  • 1,099
  • 2
  • 17
  • 29
19
votes
3 answers

Where to store configuration values in Azure Service fabric application

I am working on Azure Service Fabric Reliable Actor implementation. Any idea/link on where can I store the Configuration value (e.g. DB connection string) and how to access that in code.
Pratik Mehta
  • 1,310
  • 4
  • 15
  • 37
18
votes
2 answers

Azure Service Fabric and Message Queues

Now with Azure Service fabric, would there be a use-case for also using a separate queue solution such as Windows Service Bus? The downsides would probably be a new single point of failure, but are there upsides? Queues can add some buffering, but…
user1340582
  • 19,151
  • 35
  • 115
  • 171
17
votes
2 answers

Service Fabric Unit Testing and Dependency Injection

I can't test a Reliable Service/Actor by just calling it's constructor and then test it's methods. var testService = new SomeService(); throws a NullReferenceException. So what can I do with deployed Service.. I understand that deployed SF Reliable…
AsValeO
  • 2,859
  • 3
  • 27
  • 64
17
votes
2 answers

Transition between stateful service and external persistence in Azure Service Fabric

The Azure Service Fabric appears to be focused on scenarios in which all data can fit within RAM and persistence is used as a backing store. Reliable Services are designed to store information in Reliable Collections, which use a log-checkpoint…
mbabramo
  • 2,573
  • 2
  • 20
  • 24
16
votes
2 answers

How to see if running under service fabric

I sometimes run projects locally out of visual studio is there a better way to detect if I'm hosted by SF rather than the exception. I can see possibly the path or entry assembly but there must be a better way. try { …
user1496062
  • 1,309
  • 1
  • 7
  • 22
15
votes
2 answers

Is Kubernetes + Docker + AWS = Azure + Service Fabric?

I see advantages of Kubernetes which include Rolling Deployments, Automatic Health check monitoring, and swinging a new server to action when an existing one fails. I also do understand that Kubernetes is not just for Docker. So, that brings a…
CodeMad
  • 950
  • 2
  • 12
  • 30
15
votes
4 answers

Azure Application Gateway with Service Fabric

Currently I have a Service Fabric cluster with 2 stateless services hosting Asp Web APIs. While creating the cluster also appropriate Azure Load Balancers got created. Now I would like to add Application Gateway in front of my cluster for various…
filip
  • 1,444
  • 1
  • 20
  • 40
15
votes
3 answers

How to configure and enable Azure Service Fabric Reverse Proxy for an existing on-premises cluster?

Is the Azure Service Fabric Reverse Proxy available in an on-premises cluster? If so, how can I enable it for an existing cluster? The Service Fabric Reverse Proxy is described here. It allows clients external to the cluster to access application…