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
1
vote
1 answer

Reset Service Fabric dev cluster using powershell

Is there a way to reset an existing dev cluster with powershell similar how the Service Fabric tray tool is doing it?
Sean Feldman
  • 23,443
  • 7
  • 55
  • 80
1
vote
1 answer

can i use two different kind of listener in service fabric service?

I have a stateless service which i am using as a websocket server.For that I am using ICommunicationListener. Also I want to call the methods of this service using ServiceProxy. So for that I am using ServiceRemotingListener. internal sealed class…
Santanu
  • 337
  • 1
  • 3
  • 13
1
vote
1 answer

Decrease upgrade time when changing application parameters for a Service Fabric Application

I have a multi-tenant scenario (each tenant has its own Service Fabric Application instance) were the tenant can activate/deactivate individual Service Fabric Services (we expose the services as an extension concept to the tenant in the…
Masus
  • 33
  • 4
1
vote
3 answers

Can Service Fabric State be replicated across Partitions and/or Clusters?

Can Service Fabric partitioning be used to actively manage the geographical location of subsets of the application state? I want to make sure a given partition is deployed within a specific region only.
Landrew
  • 125
  • 11
1
vote
2 answers

Service Fabric - How to deploy multiple branches of code on one cluster?

Due to the hardware requirements that each cluster must have a minimum of 3 servers I'd like to use that hardware to support multiple branches/environments. Specifically we generally have 3 Dev and 3 Test branches running simultaneously for an…
gperrego
  • 354
  • 1
  • 3
  • 15
1
vote
2 answers

What is the difference between ServiceFabricClusterConfiguration and ServiceFabricClusterManifest?

My question regards updating the configuration for a Service Fabric standalone Windows cluster. What is the difference between ServiceFabricClusterConfiguration and ServiceFabricClusterManifest? Suppose that I want to change the ApplicationPorts…
veertien
  • 457
  • 5
  • 18
1
vote
1 answer

Service fabric communication by RPC with metadata

In the API Gateway app I set to request traceId. Then over HTTP pass it to my stateless service. But service should call another service by RPC (using IServiceRemotingListener). How can I pass that traceId to other service? I've done so far…
Robert N. Dean
  • 1,219
  • 1
  • 14
  • 27
1
vote
1 answer

Cannot explore my azure service fabric cluster

On my team we are relatively new working on azure service fabric. We created a secure cluster using certificates. We are able to configure our cluster in the portal.azure.com. In the Security section we added an Admin Client in order to publish…
afonte
  • 938
  • 9
  • 17
1
vote
1 answer

how to mount a file share in azure service fabric

I need to access files using standard file API in a Service Fabric service. My application read from files and write to files that are stored in a File Share; each node process a different part of the data. I'm using the "SetupEntryPoint" to run a…
Mike S.
  • 118
  • 7
1
vote
4 answers

What is the difference between Service Fabric Applications and Services

What is the reasoning behind Applications concept in Service Fabric? What is the recommended relation between Applications and Services? In which scenarios do Applications prove useful?
Denis Biondic
  • 7,943
  • 5
  • 48
  • 79
1
vote
1 answer

Service Fabric Application PackageDeployment Operation Time Out exception

i have service fabric cluster and 3 nodes are created in 3 systems and it is inter-connected. i am able to connect each of nodes. These nodes are created in windows server. These Windows Server(VMs) are on-premises. Manually i am trying to deploy my…
shib
  • 11
  • 2
1
vote
2 answers

Azure Service Fabric in Visual Studio - hresult : 0x80131500

I'm currently trying to work on Azure Service Fabric in Visual Studio 2015 but I have a general exception (hresult : 0x80131500) when i create a new service fabric project. For example, I got this error when i create a stateless service project, or…
TemoeTosh
  • 11
  • 5
1
vote
1 answer

StartPartitionDataLossAsync throws FabricException

I'm trying to restore my SF service from itself on local 1 node cluster: using (var client = new FabricClient()) { await client.TestManager.StartPartitionDataLossAsync( Guid.NewGuid(), …
Josef Bláha
  • 1,033
  • 10
  • 21
1
vote
1 answer

Service Fabric local cluster creates 8 GB file when the cluster starts

The file in question is replicatorshared.log, and it is the largest single file on my machine, even larger than the Windows 10 swap file. I can stop the cluster and delete the file, and it will be created again when the cluster starts. Can I…
jsuddsjr
  • 503
  • 6
  • 14
1
vote
2 answers

Service Fabric - Trace statements not logging

How can I set up Trace.Trace* (Information, Warning, Error etc.) to save in the Service Fabric logs? The only option I found was to use ServiceEventSource to send messages but that would involve revamping a lot of code to move away from Trace…
Daniel Wardin
  • 1,840
  • 26
  • 48
1 2 3
99
100