Microsoft azure deployment error 40%

I am deploying a simple application in the cloud. I use Eclipse for this, but the deployment fails.

In console error:

09/16/2012 09:40:46 - Configuring Remote Desktop 09/16/2012 09:40:50 - Uploading Deployment Package 09/16/2012 09:44:58 - Failed uploading deployment package (.cspkg). 

Deployment is completed up to 40% .

The Eclipse magazine says:

! ENTRY WAEclipsePlugin 4 0 2012-09-16 09: 42: 57.026 MESSAGE ERROR! STACK 0 com.gigaspaces.azure.util.CommandLineException: timeout at com.gigaspaces.azure.rest.WindowsAzureRestUtils.execute (WindowsAzureRestUtils.javahaps01) on com.gigaspaces.azure.rest.WindowsAzureRestUtils.execute ( ) in com.gigaspaces.azure.rest.WindowsAzureRestUtils.runStorage (WindowsAzureRestUtils.javahaps93) on com.gigaspaces.azure.rest.WindowsAzureStorageServices.putBlock (WindowsAzureStorageServices.java data5858) at com.gigaspaces.paces. spaces. access $ 0 (WindowsAzureStorageServices.javahaps48) at com.gigaspaces.azure.rest.WindowsAzureStorageServices $ UploadingTask.call (WindowsAzureStorageServices.java:79) at com.gigaspaces.azure.rest.WindowsAzureStorageServices $ UploadingTaskzall1 (Windows) ) in java.util.concurrent.FutureTask $ Sync.innerRun (Unknown source) in java.util.concurrent.FutureTask.run (Unknown source chnik) in java.util.concurrent.ThreadPoolExecutor.runWorker (Unknown Source) at java.util.concurrent.ThreadPoolExecutor $ Worker.run (Unknown Source) at java.lang.Thread.run (Unknown Source)

could you help me?

+4
source share
2 answers

I am sure size if the main problem is here because I have seen such a problem. To ensure this, simply try deploying a small, less functional version of the same application under 30 MB and see if it has any problems. In addition, even if your package size is still under the limit, a package size of 130 MB is not practical and requires changes to the application architecture.

You can try to save a smaller size by using:

  • Launching a task to automate loading / setting runtime
  • Use a different Java management application to download the application and other component at a later stage.
+1
source

the error seems to indicate a problem with your connection (Timeout)

- is it consistent? may I ask what version are you using for the eclipse plugin?

0
source

Source: https://habr.com/ru/post/1435384/


All Articles