2022-09-26 10:02:51 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
Date: Sun, 9 Jun 2019 03:53:22 +0100
|
|
|
|
Subject: [PATCH] incremental chunk and player saving
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2023-06-13 01:51:45 +02:00
|
|
|
index 53c0246acda9fe1242710260e250429ae51eceb8..56e98ea2964c2779537ac607b7c4677bc695d92a 100644
|
2022-09-26 10:02:51 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2023-06-13 01:51:45 +02:00
|
|
|
@@ -871,7 +871,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2022-09-26 10:02:51 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
this.isSaving = true;
|
|
|
|
- this.getPlayerList().saveAll();
|
|
|
|
+ this.getPlayerList().saveAll(); // Diff on change
|
|
|
|
flag3 = this.saveAllChunks(suppressLogs, flush, force);
|
|
|
|
} finally {
|
|
|
|
this.isSaving = false;
|
2023-06-13 01:51:45 +02:00
|
|
|
@@ -1381,13 +1381,28 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2023-03-14 20:54:57 +01:00
|
|
|
this.status = this.buildServerStatus();
|
2022-09-26 10:02:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.autosavePeriod > 0 && this.tickCount % this.autosavePeriod == 0) { // CraftBukkit
|
|
|
|
- MinecraftServer.LOGGER.debug("Autosave started");
|
|
|
|
- this.profiler.push("save");
|
|
|
|
- this.saveEverything(true, false, false);
|
|
|
|
- this.profiler.pop();
|
|
|
|
- MinecraftServer.LOGGER.debug("Autosave finished");
|
|
|
|
+ // Paper start - incremental chunk and player saving
|
|
|
|
+ int playerSaveInterval = io.papermc.paper.configuration.GlobalConfiguration.get().playerAutoSave.rate;
|
|
|
|
+ if (playerSaveInterval < 0) {
|
|
|
|
+ playerSaveInterval = autosavePeriod;
|
|
|
|
}
|
|
|
|
+ this.profiler.push("save");
|
|
|
|
+ final boolean fullSave = autosavePeriod > 0 && this.tickCount % autosavePeriod == 0;
|
|
|
|
+ try {
|
|
|
|
+ this.isSaving = true;
|
|
|
|
+ if (playerSaveInterval > 0) {
|
|
|
|
+ this.playerList.saveAll(playerSaveInterval);
|
|
|
|
+ }
|
|
|
|
+ for (ServerLevel level : this.getAllLevels()) {
|
|
|
|
+ if (level.paperConfig().chunks.autoSaveInterval.value() > 0) {
|
|
|
|
+ level.saveIncrementally(fullSave);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ } finally {
|
|
|
|
+ this.isSaving = false;
|
|
|
|
+ }
|
|
|
|
+ this.profiler.pop();
|
|
|
|
+ // Paper end
|
|
|
|
io.papermc.paper.util.CachedLists.reset(); // Paper
|
|
|
|
// Paper start - move executeAll() into full server tick timing
|
|
|
|
try (co.aikar.timings.Timing ignored = MinecraftTimings.processTasksTimer.startTiming()) {
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/level/ServerChunkCache.java b/src/main/java/net/minecraft/server/level/ServerChunkCache.java
|
2023-06-09 01:04:53 +02:00
|
|
|
index 1c327067d488cc916d082a797b161cb7836ffa2e..3f5d572994bc8b3f1e106105dc0bb202ad005b8c 100644
|
2022-09-26 10:02:51 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/level/ServerChunkCache.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/level/ServerChunkCache.java
|
2023-06-09 01:04:53 +02:00
|
|
|
@@ -452,6 +452,15 @@ public class ServerChunkCache extends ChunkSource {
|
2022-09-26 10:02:51 +02:00
|
|
|
} // Paper - Timings
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - duplicate save, but call incremental
|
|
|
|
+ public void saveIncrementally() {
|
|
|
|
+ this.runDistanceManagerUpdates();
|
|
|
|
+ try (co.aikar.timings.Timing timed = level.timings.chunkSaveData.startTiming()) { // Paper - Timings
|
|
|
|
+ this.chunkMap.saveIncrementally();
|
|
|
|
+ } // Paper - Timings
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
@Override
|
|
|
|
public void close() throws IOException {
|
|
|
|
// CraftBukkit start
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/level/ServerLevel.java b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
2023-06-09 06:29:58 +02:00
|
|
|
index e96890be7f03b7cc846fe850d4169e09b5d40eab..02ba7e25c649832aba2e742cb76be9d2b6b6f954 100644
|
2022-09-26 10:02:51 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/level/ServerLevel.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
2023-06-09 01:04:53 +02:00
|
|
|
@@ -1281,6 +1281,37 @@ public class ServerLevel extends Level implements WorldGenLevel {
|
2022-09-26 10:02:51 +02:00
|
|
|
return !this.server.isUnderSpawnProtection(this, pos, player) && this.getWorldBorder().isWithinBounds(pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - derived from below
|
|
|
|
+ public void saveIncrementally(boolean doFull) {
|
|
|
|
+ ServerChunkCache chunkproviderserver = this.getChunkSource();
|
|
|
|
+
|
|
|
|
+ if (doFull) {
|
|
|
|
+ org.bukkit.Bukkit.getPluginManager().callEvent(new org.bukkit.event.world.WorldSaveEvent(getWorld()));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ try (co.aikar.timings.Timing ignored = this.timings.worldSave.startTiming()) {
|
|
|
|
+ if (doFull) {
|
|
|
|
+ this.saveLevelData();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ this.timings.worldSaveChunks.startTiming(); // Paper
|
|
|
|
+ if (!this.noSave()) chunkproviderserver.saveIncrementally();
|
|
|
|
+ this.timings.worldSaveChunks.stopTiming(); // Paper
|
|
|
|
+
|
|
|
|
+ // Copied from save()
|
|
|
|
+ // CraftBukkit start - moved from MinecraftServer.saveChunks
|
|
|
|
+ if (doFull) { // Paper
|
|
|
|
+ ServerLevel worldserver1 = this;
|
|
|
|
+
|
|
|
|
+ this.serverLevelData.setWorldBorder(worldserver1.getWorldBorder().createSettings());
|
|
|
|
+ this.serverLevelData.setCustomBossEvents(this.server.getCustomBossEvents().save());
|
2022-12-07 22:05:01 +01:00
|
|
|
+ this.convertable.saveDataTag(this.server.registryAccess(), this.serverLevelData, this.server.getPlayerList().getSingleplayerData());
|
2022-09-26 10:02:51 +02:00
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
public void save(@Nullable ProgressListener progressListener, boolean flush, boolean savingDisabled) {
|
2023-06-08 07:21:04 +02:00
|
|
|
// Paper start - rewrite chunk system - add close param
|
|
|
|
this.save(progressListener, flush, savingDisabled, false);
|
2022-09-26 10:02:51 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/level/ServerPlayer.java b/src/main/java/net/minecraft/server/level/ServerPlayer.java
|
2023-06-13 01:51:45 +02:00
|
|
|
index 2040b2defecb484ee7b46a885e924483387ee8fe..c22acc5e6333f8cc9b734bff48bb9ff7a00bfd4d 100644
|
2022-09-26 10:02:51 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/level/ServerPlayer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/level/ServerPlayer.java
|
2023-05-12 13:10:08 +02:00
|
|
|
@@ -189,6 +189,7 @@ import org.bukkit.inventory.MainHand;
|
2022-09-26 10:02:51 +02:00
|
|
|
public class ServerPlayer extends Player {
|
|
|
|
|
|
|
|
private static final Logger LOGGER = LogUtils.getLogger();
|
|
|
|
+ public long lastSave = MinecraftServer.currentTick; // Paper
|
|
|
|
private static final int NEUTRAL_MOB_DEATH_NOTIFICATION_RADII_XZ = 32;
|
|
|
|
private static final int NEUTRAL_MOB_DEATH_NOTIFICATION_RADII_Y = 10;
|
|
|
|
public ServerGamePacketListenerImpl connection;
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/players/PlayerList.java b/src/main/java/net/minecraft/server/players/PlayerList.java
|
2023-06-13 01:51:45 +02:00
|
|
|
index 97199ae30edfaaacb9ea9d29846ee131395815e6..a8dcd1a07b835f665c74a8a531fef84435716b13 100644
|
2022-09-26 10:02:51 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/players/PlayerList.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/players/PlayerList.java
|
2023-06-08 01:20:26 +02:00
|
|
|
@@ -535,6 +535,7 @@ public abstract class PlayerList {
|
2022-12-19 11:46:55 +01:00
|
|
|
|
2022-09-26 10:02:51 +02:00
|
|
|
protected void save(ServerPlayer player) {
|
|
|
|
if (!player.getBukkitEntity().isPersistent()) return; // CraftBukkit
|
|
|
|
+ player.lastSave = MinecraftServer.currentTick; // Paper
|
|
|
|
this.playerIo.save(player);
|
|
|
|
ServerStatsCounter serverstatisticmanager = (ServerStatsCounter) player.getStats(); // CraftBukkit
|
|
|
|
|
2023-06-08 01:20:26 +02:00
|
|
|
@@ -1125,10 +1126,22 @@ public abstract class PlayerList {
|
2022-09-26 10:02:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void saveAll() {
|
|
|
|
+ // Paper start - incremental player saving
|
|
|
|
+ this.saveAll(-1);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void saveAll(int interval) {
|
2022-10-24 21:43:46 +02:00
|
|
|
io.papermc.paper.util.MCUtil.ensureMain("Save Players" , () -> { // Paper - Ensure main
|
2022-09-26 10:02:51 +02:00
|
|
|
MinecraftTimings.savePlayers.startTiming(); // Paper
|
|
|
|
+ int numSaved = 0;
|
|
|
|
+ long now = MinecraftServer.currentTick;
|
|
|
|
for (int i = 0; i < this.players.size(); ++i) {
|
|
|
|
- this.save(this.players.get(i));
|
|
|
|
+ ServerPlayer entityplayer = this.players.get(i);
|
|
|
|
+ if (interval == -1 || now - entityplayer.lastSave >= interval) {
|
|
|
|
+ this.save(entityplayer);
|
2023-05-27 20:34:33 +02:00
|
|
|
+ if (interval != -1 && ++numSaved >= io.papermc.paper.configuration.GlobalConfiguration.get().playerAutoSave.maxPerTick()) { break; }
|
2022-09-26 10:02:51 +02:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
MinecraftTimings.savePlayers.stopTiming(); // Paper
|
|
|
|
return null; }); // Paper - ensure main
|