Questions tagged [service-fabric-on-premises]

80 questions
0
votes
1 answer

Service Fabric Start-ServiceFabricClusterConfigurationUpgrade constantly times out

I have a Service Fabric standalone cluster where I can connect to it with Connect-ServiceFabricCluster just fine, but whenever I run other commands such as Start-ServiceFabricClusterConfigurationUpgrade, it keeps timing out. I've tried running…
0
votes
1 answer

EndpointCertificate in ApplicationManifest not being used when starting Kestrel server

I was following this article to try and get an https endpoint running with the certificate specified in the manifest. So far I have only tried this on my local dev cluster through VS so I don't know if that is the problem, it is possibly also…
0
votes
0 answers

Service Fabric - Linux and Windows in the same cluster?

I don't think this is possible but i figured i would ask. We have an existing onPrem Service Fabric cluster running on Windows VMs. That's great for the .NET side of the house but for Java they may want to run Linux VMs instead of Windows. If we…
gperrego
  • 354
  • 1
  • 3
  • 15
0
votes
2 answers

Connect to docker_engine (named pipe) from a C# Service Fabric app on Windows

I have a Stateless Service Fabric project (.NET Core) that I need to kick off a Docker job from. I'm using Docker.DotNet and the following code works well in a small Console App, however will not work in Service Fabric: var dockerClient = new…
0
votes
1 answer

Service Fabric Stateless Service Deployment on Individual Nodes

I want to deploy multiple instances of my Service Fabric Stateless Service (Background Service) on individual nodes in the cluster. So basically if I have 10 nodes in the cluster I want 10 application instances of stateless service to be deployed on…
0
votes
1 answer

Service fabric - Updating static configuration files

I am currenlty running an on-premise 3 node cluster with service fabric. I have a statefull service which has a .csv file containing a complex configuration for my service, and I would like to open a REST endpoint for updating this configuration…
0
votes
0 answers

Provision my service fabric application to run on specific nodes on the cluster

I am setting up a cluster. Maybe 2 depending on what kind of answer I can get here. Basically I have 5 servers, and I am planning on setting up 8 nodes on each one for 40 total nodes. I plan on load balancing 5 of them for the out side API calls.…
0
votes
0 answers

Activation of actors fails on premise cluster

We have some long running jobs created as Service Fabric actors. The actors have no data other than the reminder. When these services gets deployed in local cluster, they seem to activate with no issues. When we deploy them to server which runs a 3…
0
votes
1 answer

Managing guest executables dependencies - On premise Service Fabric

We have recently decided to start using on-premise Service Fabric and have encountered a 'dependency' problem. We have several guest executables which have dependencies between them, and can't recover from a restart of the service they are dependant…
0
votes
2 answers

ServiceFabric: failed to deploy new applications

I'm using service fabric on premisse with my micro services and I adopted the strategy of using dynamic ports, but apparently I think I've narrowed the range of ports because I've reached the limit of 25 applications with approximately 340…
0
votes
1 answer

Service Fabric Upgrade stuck on PreUpgradeSafetyCheck

I have received a Warning that a new version of Service Fabric is available, however when I tried to upgrade it, the process was stuck at PreUpgradeSafetyCheck on node Rep_247. I've tried -Force and -ForceRestart but it hasn't helped. Cluster Map
0
votes
1 answer

How to collect SF reverse proxy logs on-prem

I have 3-node on-prem cluster. Now i want to collect and analyze reverse proxy logs (and other system service fabric logs). I google and found this article and it says Refer to Collect reverse proxy events to enable collecting events from these…
0
votes
1 answer

Service Fabric - Use Docker Hub As Container Registry (existing .net Application)

This is similar but different than what @emaia was attempting to ask here. I'm looking at two things: 1) how to upload my .net containerized Service Fabric application to Docker Hub It looks like based on this article when you are creating a SF…
0
votes
1 answer

Tool for explore and query ETW logs from Service Fabric on premise

I’m looking for a tool that will allow me to explore and query/search in logs from service fabric written in etl format. I tried to use MessageAnalyzer but it was loading long time and hangs, second tool windows logs explorer but after conversion to…
dnf
  • 1,659
  • 2
  • 16
  • 29
0
votes
1 answer

Standalone Service Fabric and Maintaining Seed Nodes

I have recently acquired the ability to stand-up servers for my application environment from scratch. I've been evaluating Service Fabric as an application orchestrator because of its ability to run executables instead of containers, which is an…