hiwangzhihui commented on PR #484:
URL: https://github.com/apache/yunikorn-site/pull/484#issuecomment-2408416965
@chenyulin0719 Yes, The Yellow color is to distinguish the crowded strings.
This is 1.5.X_version Graphviz code .
`digraph fsm {
"Accepted" -> "Reserving" [ label = "AcceptApplication" ];
"Accepted" -> "Failing" [ label = "CompleteApplication" ];
"Accepted" -> "Killing" [ label = "FailApplication" ];
"Accepted" -> "Running" [ label = "ReleaseAppAllocation" ];
"Accepted" -> "Running" [ label = "UpdateReservation" ];
"Failing" -> "Failed" [ label = "CompleteApplication" ];
# "Failing" -> "Failing" [ label = "KilledApplication" ];
"Failing" -> "Failing" [ label = "KilledApplication \n
ReleaseAppAllocation" ];
"Killing" -> "Killed" [ label = "KillApplication" ];
"New" -> "Submitted" [ label = "SubmitApplication" ];
"Rejected" -> "Failed" [ label = "CompleteApplication" ];
"Reserving" -> "Resuming" [ label = "AppStateChange" ];
"Reserving" -> "Failing" [ label = "CompleteApplication" ];
"Reserving" -> "Killing" [ label = "FailApplication" ];
"Reserving" -> "Running" [ label = "ReleaseAppAllocation" ];
"Reserving" -> "Reserving" [ label = "TryReserve" ];
"Reserving" -> "Running" [ label = "UpdateReservation" ];
#"Resuming" -> "Resuming" [ label = "KilledApplication" ];
#"Resuming" -> "Resuming" [ label = "ReleaseAppAllocation" ];
"Resuming" -> "Resuming" [ label = "KilledApplication \n
ReleaseAppAllocation \n ResumingApplication" ];
"Resuming" -> "Running" [ label = "UpdateReservation" ];
"Running" -> "Failing" [ label = "CompleteApplication" ];
"Running" -> "Killing" [ label = "FailApplication" ];
"Running" -> "Completed" [ label = "RejectApplication" ];
#"Running" -> "Running" [ label = "KilledApplication" ];
#"Running" -> "Running" [ label = "ReleaseAppAllocation" ];
"Running" -> "Running" [ label = "KilledApplication \n
ReleaseAppAllocation \n UpdateReservation" fontcolor="#FFA500" color =
"#FFA500"];
"Submitted" -> "Failing" [ label = "CompleteApplication" ];
"Submitted" -> "Accepted" [ label = "RecoverApplication" ];
"Submitted" -> "Rejected" [ label = "RunApplication" ];
"Accepted";
"Completed";
"Failed";
"Failing";
"Killed";
"Killing";
"New" ;
"Rejected";
"Reserving";
"Resuming";
"Running";
"Submitted";
}
`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]