[slpwnd][0.11.22] Huge savegame in multiplayer

This subforum contains all the issues which we already resolved.
Post Reply
Ledjlale
Inserter
Inserter
Posts: 25
Joined: Fri Sep 19, 2014 8:42 pm
Contact:

[slpwnd][0.11.22] Huge savegame in multiplayer

Post by Ledjlale »

Hi, we played a map for only 4 hours. We were 3 players.
At the end, the savegame file is 60Mo (without the replay file)

When I played alone for more than 70 hours, the file was only 15Mo.

I tried to load the mp savegame and save it again but it doesn't change the size.
Could you give me any clues from the attachment on why the file is huge while we don't have many visible objects? (maybe a map configuration issue/bug?)

savegame

FishSandwich
Smart Inserter
Smart Inserter
Posts: 1847
Joined: Sun Feb 23, 2014 3:37 pm
Contact:

Re: [0.11.22] Huge savegame in multiplayer

Post by FishSandwich »

It looks like the level.dat file is huge for some reason. I got the save file down to 3MB by calling killallenemies in the console.

Code: Select all

/c game.killallenemies()

Rseding91
Factorio Staff
Factorio Staff
Posts: 13171
Joined: Wed Jun 11, 2014 5:23 am
Contact:

Re: [0.11.22] Huge savegame in multiplayer

Post by Rseding91 »

FishSandwich wrote:It looks like the level.dat file is huge for some reason. I got the save file down to 3MB by calling killallenemies in the console.

Code: Select all

/c game.killallenemies()
Most likely biter path finding data.
If you want to get ahold of me I'm almost always on Discord.

Ledjlale
Inserter
Inserter
Posts: 25
Joined: Fri Sep 19, 2014 8:42 pm
Contact:

Re: [0.11.22] Huge savegame in multiplayer

Post by Ledjlale »

Thanks for your inputs. This command just work fine :)
With F5 command, we can see that the "Path finder" is set to 1.000/0.563/1.800. And after the killallenemies command, it is set to 0.001/0.000/0.300

I think that I didn't get this issue in my solo game because I set it in an infinite world (even with the max of ennemies). So maybe that bitters depends of the players scope while it's is not the case in a finite world.

slpwnd
Factorio Staff
Factorio Staff
Posts: 1835
Joined: Sun Feb 03, 2013 2:51 pm
Contact:

Re: [0.11.22] Huge savegame in multiplayer

Post by slpwnd »

Thanks for the report. Yeah, there seem to be some wastefulness going on with path find data. We will look into that.

slpwnd
Factorio Staff
Factorio Staff
Posts: 1835
Joined: Sun Feb 03, 2013 2:51 pm
Contact:

Re: [slpwnd][0.11.22] Huge savegame in multiplayer

Post by slpwnd »

So it turned out there was no explicit bug actually=)) The thing is that the landscape is super path finding unfriendly. there is a very big lake around the base with a sort of thin section close to player base. So the pollution travels over the thin section and induces biters on the other side to attack. However pathfinding for those guys will take millions of steps to find. Hence if there was a pathfinding in progress (which it was) there was a huge memory usage. We have solved this for now by adding a relatively straightforward cap on how long the pathfinding can take (in number of steps relative to the minimal length of the searched path). If it takes longer than this cap then the path is marked as not found and after a retry or two the entity (biter) will commit an exemplary suicide.

The memory usage went down to about 5MB immediately. There are more tweaks we will do in this regard in the (hopefully) near future. Like hierarchical path finding which should be able to find paths like these much much faster than the current approach. However for now (0.12) the problem is considered solved.

Post Reply

Return to “Resolved Problems and Bugs”