azure-service-fabric

Service Fabric ConfigurePortCertificate error AlreadyExists

孤者浪人 提交于 2019-12-12 04:35:17
问题 I've deployed my SSL cert to my cluster, it exists in the correct store on each VM. However, when I try and publish my application to the cluster, it fails. Event Viewer on the VM says ConfigurePortCertificate: httpsPort=443, certStoreName My, certfindvalue {SSLCertFingerPrint}, error AlreadyExists What does this mean? 来源: https://stackoverflow.com/questions/42110633/service-fabric-configureportcertificate-error-alreadyexists

Utilize Managed Disk for Service Fabric temporary storage

血红的双手。 提交于 2019-12-12 04:34:58
问题 Is it possible to configure and deploy a Service Fabric cluster that uses a Managed Disk as the temporary storage location for things like the replicator log and app type/versions? For example, I can't use an A1_v2 VM instance size because the D: (Temporary Storage) drive is too small. If I could leverage a Managed Disk and configure SF to use it instead of the local SSD then this instance size would work for my dev/test scenarios. Any idea if and how I can make this work? 回答1: Disclaimer:

Windows Azure Service Fabric count not start

荒凉一梦 提交于 2019-12-12 03:45:38
问题 To the point: Having trouble setting up Windows Azure Service fabric. Please help. System Detail: Windows 8.1 Enterprise Windows Azure SDK 2.6 (installed before Service Fabri SDK install) SQL Server 2012 Other errors also appear but those are before trying to start the service. Following is error screen shot when I tried to expand Node view Troubleshooting link available in the SDK tutorial is not helping. I tried with un/installing the SDK but no luck. 回答1: Could you try running the

Optimized http service invocation with in azure service fabric

不羁岁月 提交于 2019-12-12 03:39:10
问题 I have 2 applications (A1 and A2) hosted in azure service fabric, each application with its own stateless reliable micro-service (S1 and S2). The app A1 depends on S1 and app A2 depends on S2. In addition, S2 service depends on S1. Both S2 and S1 are owin hosted REST api services. When the request for A2 ends up in S2, I need to make a call from S2 to S1. I am trying to figure out the optimized way of doing this. 1) Should I use HttpClient in S2 to call S1? How do I get the resolution for S1

How to update the nodetypes of service fabric after deployment

萝らか妹 提交于 2019-12-12 03:27:59
问题 Is there any way to update the nodetypes of a service fabric cluster after deployment? I want to dynamicly add a new vm scaleset to the cluster, but if I cannot add a new node type in the service fabric cluster - then its not possible to create new placement constrains for this new vm scaleset. 回答1: I have found no way using the newest ARM service fabric provider. But using an older one, it is possible. armclient put /subscriptions/8393a037-5d39-462d-a583-09915b4493df/resourceGroups

Azure Service Fabric register COM component

久未见 提交于 2019-12-12 01:42:04
问题 We want to deploy a ASP.NET WebApi service to Azure Service Fabric. The service uses a mathematical COM component (32bit) that will be registered on a regular machine with regsvr32. The solution works perfectly on a local Service Fabric cluster (e.g Windows Server 2012 R2). Unfortunately there is no managed dll available for that component and we do not want to rewrite the code all by ourselves. So my question is, can we deploy this service to an Azure hosted Service Fabric? And if yes, how?

Upgrade Service Fabric Application

删除回忆录丶 提交于 2019-12-11 23:16:03
问题 Is there a way to copy only modified files to Service Fabric. I have a Service Fabric application containing an ASP. Net 5 application as service. Whenever am doing a change to a JavaScript file inside my ASP. Net 5 service, every time I need to copy the entire service fabric application package. Is there a command which allows to copy only the modified file? 回答1: The best way to accomplish this is to use diff packaging and app upgrade. See this link for more info: https://azure.microsoft.com

Getting error as part of trying to upgrade Service Fabric Application using Start-ServiceFabricApplicationUpgrade

北城余情 提交于 2019-12-11 19:32:32
问题 We got a Service Fabric cluster in our development environment using 2 VMs. I was trying to upgrade the Application deployed in SF using the following command: Start-ServiceFabricApplicationUpgrade -ApplicationName "fabric:/ApplicationName" -ApplicationTypeVersion "3.7.2625.0" -UnMonitoredAuto I get the following error as a result: Start-ServiceFabricApplicationUpgrade : Application type and version not found At line:1 char:1 + Start-ServiceFabricApplicationUpgrade -ApplicationName "fabric:

Substitute Service Fabric application parameters during deployment

↘锁芯ラ 提交于 2019-12-11 18:33:31
问题 I'm setting up my production environment and would like to secure my environment-related variables. For the moment, every environment has its own application parameters file, which works well, but I don't want every dev in my team knowing the production connection strings and other sensitive stuffs that could appear in there. So I'm looking for every possibility available. I've seen that in Azure DevOps, which I'm using at the moment for my CI/CD, there is some possible variable substitution

How can I use MSMQ in Azure Service Fabric

吃可爱长大的小学妹 提交于 2019-12-11 18:25:10
问题 I have implemented a Proof of Concept in Azure Service fabric that uses Azure Service Bus as a message queue. I'm using nServiceBus within the application to send and respond to messages which makes it very easy to change from one queuing technology to another. I'd like to know if it's possible to use MSMQ instead of Service Bus in Azure Service Fabric as the nodes that are created are just windows 2016 servers and I'm not sure I need something like Service Bus. It's a question I want to