Shutdown Gamelift Session

0

Hey we are currently integrating Gamelift into our UE4 project. Our game is session based and will shutdown its process manually when the game is finished. We are currently using UE4 shutdown method:

FGenericPlatformMisc::RequestExit(false);

It seems that this is not the proper way as we get these events in the gamelift console:

SERVER_PROCESS_TERMINATED_UNHEALTHY - Server process exceeded 3 minutes without reporting healthy

Also it seems that the lambda OnTerminate is not beeing called (Which is most likley the cause for the UNHEALTY event).

My question is: What is the proper way to shutdown our dedicated gamelift server? Is it by calling TerminateGameSession? Or should I call

FGenericPlatformMisc::RequestExit(false); and thereafter ProcessEnding

Thanks! Kris

質問済み 5年前540ビュー
3回答
0

To shutdown a GameSession you should call GameLift either by:

  • TerminateGameSession: Closes current game session and GameLift can immediately place a new game session here.
  • ProcessEnding: Closes the current game sessions, ends the current process and will cause a brand new process to start to replace to it. Once process is ready, GameLift will consider it a candidate for new game sessions

https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-sdk-interactions.html

Basically Server needs to tell GameLift its down with the Game Session.

回答済み 5年前
0

FWIW, that's what we do -- we don't kill the process but rather unload the maps et al and get back to an idle state, waiting for a new session. Seems to work well, and no terminated/unhealthy reports =)

回答済み 5年前
0

THanks this did the trick :)

回答済み 4年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ