azure-service-fabric

Service Fabric Resource balancer uses stale Reported load

[亡魂溺海] 提交于 2019-12-21 05:22:19
问题 While looking into the resource balancer and dynamic load metrics on Service Fabric, we ran into some questions (Running devbox SDK GA 2.0.135). In the Service Fabric Explorer (the portal and the standalone application) we can see that the balancing is ran very often, most of the time it is done almost instantly and this happens every second. While looking at the Load Metric Information on the nodes or partitions it is not updating the values as we report load. We send a dynamic load report

Can I use load balancer for scaling Azure Service Fabric apps

只愿长相守 提交于 2019-12-20 10:45:39
问题 Recently came to know about Azure Service Fabric and seems a good way to develop scaling applications as bunch of micro services. Everywhere it is telling that we need to have stateless front end web services and stateful partitioned internal services. The internal services scale by partitioning the data. But what happens to the front end services in load? .The chances are very less as they are doing nothing but relying to internal stateful services. Still should we use load balancer before

Service Fabric Multiple service instances with config override

橙三吉。 提交于 2019-12-20 10:39:36
问题 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 <Endpoint Name="ServiceEndpoint" Type="Input" Protocol="http" Port="8090" /> The stateless service can then be accessed via a browser on http://localhost:8090/ What we are trying to do is instantiate multiple instances of this service on different endpoints in the same Service Fabric application

Azure App Service vs Azure Service Fabric [closed]

孤街醉人 提交于 2019-12-20 09:33:16
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 11 months ago . Can anyone direct me to something that will explain when I should create an Azure Service Fabric application vs an Azure App Service application? I have an application I want to build but can not determine whether I should build it using the Azure Service Fabric or the

Actor Method Start/Stop log | Add additional Information

与世无争的帅哥 提交于 2019-12-20 04:36:36
问题 For azure actor services, Actor Method Start Stop logs in Diagnostics window, which looks like below. How can i add some additional detail such as a Correlation Id every time a method is called ? { "Timestamp": "2016-09-14T19:46:40.9955448+05:30", "ProviderName": "Microsoft-ServiceFabric-Actors", "Id": 7, "Message": "Actor method is being invoked. Method name: IStore.GetStoreById, actor type: Backend.Actor.Store.Store, actor ID: STORE_6.", "ProcessId": 30736, "Level": "Verbose", "Keywords":

Connect to local SQL Server instance when running Service Fabric cluster in development environment

不羁岁月 提交于 2019-12-19 16:35:42
问题 When opening a sql connection to a local database in a traditional console app I have no issues, however when I attempt to do the same thing within a stateless service running in Service Fabric I get a login error. The error I receive is "Login failed for user 'WORKGROUP\\NICK$'." And this is the code I'm using to connect using (var con = new SqlConnection("Server=.;Trusted_Connection=True;Database=AddressBook")) { try { con.Open(); } catch (Exception e) { } } When I try to add that user to

Sending request to ASP.Net Core Web API running on a specific node in a Service Fabric Cluster

被刻印的时光 ゝ 提交于 2019-12-19 10:21:49
问题 I am working on a Service Fabric Application, in which I am running my Application that contains a bunch of ASP.NET Core Web APIs. Now when I run my application on my local service fabric cluster that is configured with 5 nodes, the application runs successfully and I am able to send post requests the exposed Web APIs. Actually I want to hit the code running on a same cluster node with different post requests to the exposed APIs on that particular node. For further explanation, for example

How to add new Node Type to deployed Service Fabric cluster?

房东的猫 提交于 2019-12-19 04:14:19
问题 I deployed a Service Fabric Cluster running with a single application and 3 Node Types of 5 machines, each with its own placement constraint. I need to add other 2 Node types (Virtual Machine Scale sets), how can I do that from the azure portal? 回答1: The Add-AzureRmServiceFabricNodeType command can add a new node type to an existing Service Fabric cluster. Note that the process can take roughly an hour to complete, since it creates one resource at a time starting with the cluster. It will

service fabric URL routing

本秂侑毒 提交于 2019-12-19 04:12:48
问题 I am using the Azure Load Balancer with Azure service fabric to host multiple self host web applications, I'd like to create a rule that allows me to route based on the users URL request. So for example if a user navigates to : http:// domain.com/Site1 then the rule would route to: http:// domain.com**:8181**/Site1 within the cluster if the user navigates to: http:// domain.com/Site2 then the rule would route to: http:// domain.com**:8282**/Site2 within the cluster Is this possible with azure

Migration of Traditional Windows Service to Service Fabric

假如想象 提交于 2019-12-19 04:05:31
问题 I'm kicking the tires on the preview release of Service Fabric for Windows Servers found here: Create and manage a cluster running on Windows Server We are trying to solve the problem of the perception of too many Windows services to manually manage, contemplating infrastructures that would make the services more automatically managed. We currently run on-premises, so we are looking at Service Fabric for Windows Servers, not Service Fabric on Azure. I have a native Windows service (Windows NT