Upload speed publish Service Fabric application from Azure VM to Azure cluster -


i trying publish service fabric application azure vm suggested here: operation timed out publishing service fabric application azure

the azure vm created in same datacenter service fabric cluster. reason getting upload speeds around 200 kbps.

with hard-coded 10 minutes timeout in publish script in visual studio, not enough application published.

are there suggestions on how might increase upload speed?

since version 2.5.216 of service fabric sdk, have ability compress package prior sending.

add following line publishprofiles\cloud.xml file enable compression (and change timeout 10 minutes 60 minutes if want to):

<copypackageparameters copypackagetimeoutsec="3600" compresspackage="true" /> 

see this lengthy disucssion


Comments