DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.

DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Polling starts after the successful return of the getUploadParams. The polling starts after an initial delay of 100ms and in intervals of 1000ms. The management server polls 5 times before it changes the state to ERROR. (we may need to add new configurations to handle this polling)
If the management server itself goes down during the upload, if the timeout hasnt crossed, it will poll for the status once its up. Otherwise the state of the template will be transitioned to ERROR.
Template/Volume go through below state machine state transitions, when it goes through the browser based upload.
States:
NOT_UPLOADED: getUploadParams API was successful and the template is registered. But, upload hasnt started yet
UPLOAD_IN_PROGRESS: User has initiated the POST request SSVM Apache and the validation/download is in progress
UPLOADED: SSVM Agent successfully Downloaded the template to secondary storage
UPLOAD_ERROR: Any Failure in between user initiating a post request and template being downloaded
ABANDONED: the post request isnt called in the stipulated time (check sequence diagram point 4)
State Transitions:
The below failures can happen while the agent is receiving the template. When management server asks for the status of the tempalte/volume, if any of these below errors happen, the agent returns ERROR state and management server updates the state accordingly.
If the template install is successful within the polling timeout, when the management server asks for the status of it, agent returns a success state and it is updated by the management server accordingly.
Template/Volume go through below state machine state transitions, when it goes through the browser based upload.
States:
NOT_UPLOADED: getUploadParams API was successful and the template is registered. But, upload hasnt started yet
UPLOAD_IN_PROGRESS: User has initiated the POST request SSVM Apache and the validation/download is in progress
UPLOADED: SSVM Agent successfully Downloaded the template to secondary storage
UPLOAD_ERROR: Any Failure in between user initiating a post request and template being downloaded
ABANDONED: the post request isnt called in the stipulated time (check sequence diagram point 4)
State Transitions:
All these errors will result in the same state for the template/volume as there isnt any way to recover from them or the handling isnt different for these. Additional error information will be provided in the form of a message for respective errors.
...
Of the error categories defined in the failures above,
...
...
There isnt any recovery or retry mechanism as this is a POST request. Once errored, template/volume will remain in the error state and admin will be able to troubleshoot it based on the appropriate log messages in management server log, agent log, apache access/error log files.
...