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
|
2024-04-06 21:53:39 +02:00
|
|
|
index 56d579e64b367dd21b2909eb0dbc1d7686d0c3d0..c8a2686f1e60a8c1fb56ce7b5d3e2ba62ec3a987 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
|
2024-01-25 10:54:46 +01:00
|
|
|
@@ -908,7 +908,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2022-09-26 10:02:51 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
this.isSaving = true;
|
|
|
|
- this.getPlayerList().saveAll();
|
2024-01-20 23:13:41 +01:00
|
|
|
+ this.getPlayerList().saveAll(); // Paper - Incremental chunk and player saving; diff on change
|
2022-09-26 10:02:51 +02:00
|
|
|
flag3 = this.saveAllChunks(suppressLogs, flush, force);
|
|
|
|
} finally {
|
|
|
|
this.isSaving = false;
|
2024-01-26 21:34:40 +01:00
|
|
|
@@ -1388,16 +1388,28 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2022-09-26 10:02:51 +02:00
|
|
|
}
|
|
|
|
|
2023-12-06 04:00:14 +01:00
|
|
|
--this.ticksUntilAutosave;
|
|
|
|
- // CraftBukkit start
|
|
|
|
- if (this.autosavePeriod > 0 && this.ticksUntilAutosave <= 0) {
|
|
|
|
- this.ticksUntilAutosave = this.autosavePeriod;
|
|
|
|
- // CraftBukkit end
|
2022-09-26 10:02:51 +02:00
|
|
|
- MinecraftServer.LOGGER.debug("Autosave started");
|
|
|
|
- this.profiler.push("save");
|
|
|
|
- this.saveEverything(true, false, false);
|
|
|
|
- this.profiler.pop();
|
|
|
|
- MinecraftServer.LOGGER.debug("Autosave finished");
|
2024-01-20 23:13:41 +01:00
|
|
|
+ // Paper start - Incremental chunk and player saving
|
2022-09-26 10:02:51 +02:00
|
|
|
+ int playerSaveInterval = io.papermc.paper.configuration.GlobalConfiguration.get().playerAutoSave.rate;
|
|
|
|
+ if (playerSaveInterval < 0) {
|
|
|
|
+ playerSaveInterval = autosavePeriod;
|
2024-01-23 12:06:27 +01:00
|
|
|
}
|
2022-09-26 10:02:51 +02:00
|
|
|
+ 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;
|
2024-01-23 12:06:27 +01:00
|
|
|
+ }
|
2022-09-26 10:02:51 +02:00
|
|
|
+ this.profiler.pop();
|
2024-01-20 23:13:41 +01:00
|
|
|
+ // Paper end - Incremental chunk and player saving
|
2022-09-26 10:02:51 +02:00
|
|
|
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
|
2024-01-24 22:13:08 +01:00
|
|
|
index 9bb4223fbb665211df11dc89fcd13cb7a92cd5dd..20cdfd2bbd5dc71fd37ccedaf3a8d06b45553c9b 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
|
2024-01-24 22:13:08 +01:00
|
|
|
@@ -435,6 +435,15 @@ public class ServerChunkCache extends ChunkSource {
|
2022-09-26 10:02:51 +02:00
|
|
|
} // Paper - Timings
|
|
|
|
}
|
|
|
|
|
2024-01-20 23:13:41 +01:00
|
|
|
+ // Paper start - Incremental chunk and player saving; duplicate save, but call incremental
|
2022-09-26 10:02:51 +02:00
|
|
|
+ public void saveIncrementally() {
|
|
|
|
+ this.runDistanceManagerUpdates();
|
|
|
|
+ try (co.aikar.timings.Timing timed = level.timings.chunkSaveData.startTiming()) { // Paper - Timings
|
|
|
|
+ this.chunkMap.saveIncrementally();
|
|
|
|
+ } // Paper - Timings
|
|
|
|
+ }
|
2024-01-20 23:13:41 +01:00
|
|
|
+ // Paper end - Incremental chunk and player saving
|
2022-09-26 10:02:51 +02:00
|
|
|
+
|
|
|
|
@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
|
Updated Upstream (Bukkit/CraftBukkit/Spigot) (#10277)
Upstream has released updates that appear to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
Bukkit Changes:
9a80d38c SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-722: Add EntityRemoveEvent
258086d9 SPIGOT-7417, PR-967: Add Sign#getTargetSide and Sign#getAllowedEditor
ffaba051 SPIGOT-7584: Add missing Tag.ITEMS_NON_FLAMMABLE_WOOD
CraftBukkit Changes:
98b6c1ac7 SPIGOT-7589 Fix NullPointerException when bans expire
a2736ddb0 SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-1008: Add EntityRemoveEvent
5bf12cb89 SPIGOT-7565: Throw a more descriptive error message when a developer tries to spawn an entity from a CraftBukkit class
76d95fe7e SPIGOT-7417, PR-1343: Add Sign#getTargetSide and Sign#getAllowedEditor
Spigot Changes:
e9ec5485 Rebuild patches
f1b62e0c Rebuild patches
2024-02-23 14:37:33 +01:00
|
|
|
index a3881964bad0cab8f480eda634216d73dfbf7bb0..b6407dd3e5b87782503988f898bbf054e3f4e611 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
|
2024-01-24 22:13:08 +01:00
|
|
|
@@ -1290,6 +1290,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);
|
|
|
|
}
|
|
|
|
|
2024-01-20 23:13:41 +01:00
|
|
|
+ // Paper start - Incremental chunk and player saving
|
2022-09-26 10:02:51 +02:00
|
|
|
+ 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
|
|
|
|
+ }
|
|
|
|
+ }
|
2024-01-20 23:13:41 +01:00
|
|
|
+ // Paper end - Incremental chunk and player saving
|
2022-09-26 10:02:51 +02:00
|
|
|
+
|
|
|
|
public void save(@Nullable ProgressListener progressListener, boolean flush, boolean savingDisabled) {
|
2024-01-24 22:13:08 +01: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
|
Updated Upstream (Bukkit/CraftBukkit) (#10242)
* Updated Upstream (Bukkit/CraftBukkit)
Upstream has released updates that appear to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
Bukkit Changes:
a6a9d2a4 Remove some old ApiStatus.Experimental annotations
be72314c SPIGOT-7300, PR-829: Add new DamageSource API providing enhanced information about entity damage
b252cf05 SPIGOT-7576, PR-970: Add methods in MushroomCow to change stew effects
b1c689bd PR-902: Add Server#isLoggingIPs to get log-ips configuration
08f86d1c PR-971: Add Player methods for client-side potion effects
2e3024a9 PR-963: Add API for in-world structures
a23292a7 SPIGOT-7530, PR-948: Improve Resource Pack API with new 1.20.3 functionality
1851857b SPIGOT-3071, PR-969: Add entity spawn method with spawn reason
cde4c52a SPIGOT-5553, PR-964: Add EntityKnockbackEvent
CraftBukkit Changes:
38fd4bd50 Fix accidentally renamed internal damage method
80f0ce4be SPIGOT-7300, PR-1180: Add new DamageSource API providing enhanced information about entity damage
7e43f3b16 SPIGOT-7581: Fix typo in BlockMushroom
ea14b7d90 SPIGOT-7576, PR-1347: Add methods in MushroomCow to change stew effects
4c687f243 PR-1259: Add Server#isLoggingIPs to get log-ips configuration
22a541a29 Improve support for per-world game rules
cb7dccce2 PR-1348: Add Player methods for client-side potion effects
b8d6109f0 PR-1335: Add API for in-world structures
4398a1b5b SPIGOT-7577: Make CraftWindCharge#explode discard the entity
e74107678 Fix Crafter maximum stack size
0bb0f4f6a SPIGOT-7530, PR-1314: Improve Resource Pack API with new 1.20.3 functionality
4949f556d SPIGOT-3071, PR-1345: Add entity spawn method with spawn reason
20ac73ca2 PR-1353: Fix Structure#place not working as documented with 0 palette
3c1b77871 SPIGOT-6911, PR-1349: Change max book length in CraftMetaBook
333701839 SPIGOT-7572: Bee nests generated without bees
f48f4174c SPIGOT-5553, PR-1336: Add EntityKnockbackEvent
2024-02-11 22:28:00 +01:00
|
|
|
index 5657f1ecbadda96a79978f918393c0c9a58dca83..910c5087406837033e580ec2a23f5d30d807b723 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
|
2024-01-24 22:13:08 +01:00
|
|
|
@@ -191,6 +191,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();
|
2024-01-20 23:13:41 +01:00
|
|
|
+ public long lastSave = MinecraftServer.currentTick; // Paper - Incremental chunk and player saving
|
2022-09-26 10:02:51 +02:00
|
|
|
private static final int NEUTRAL_MOB_DEATH_NOTIFICATION_RADII_XZ = 32;
|
|
|
|
private static final int NEUTRAL_MOB_DEATH_NOTIFICATION_RADII_Y = 10;
|
2023-12-06 04:00:14 +01:00
|
|
|
private static final int FLY_STAT_RECORDING_SPEED = 25;
|
2022-09-26 10:02:51 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/players/PlayerList.java b/src/main/java/net/minecraft/server/players/PlayerList.java
|
Updated Upstream (Bukkit/CraftBukkit/Spigot) (#10277)
Upstream has released updates that appear to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
Bukkit Changes:
9a80d38c SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-722: Add EntityRemoveEvent
258086d9 SPIGOT-7417, PR-967: Add Sign#getTargetSide and Sign#getAllowedEditor
ffaba051 SPIGOT-7584: Add missing Tag.ITEMS_NON_FLAMMABLE_WOOD
CraftBukkit Changes:
98b6c1ac7 SPIGOT-7589 Fix NullPointerException when bans expire
a2736ddb0 SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-1008: Add EntityRemoveEvent
5bf12cb89 SPIGOT-7565: Throw a more descriptive error message when a developer tries to spawn an entity from a CraftBukkit class
76d95fe7e SPIGOT-7417, PR-1343: Add Sign#getTargetSide and Sign#getAllowedEditor
Spigot Changes:
e9ec5485 Rebuild patches
f1b62e0c Rebuild patches
2024-02-23 14:37:33 +01:00
|
|
|
index 4a569bf782bfdd870f32fe0ab5c3b8b86a07f218..8a5f245fc98514b66216dde234650bfc0adc24b4 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
|
Updated Upstream (Bukkit/CraftBukkit/Spigot) (#10277)
Upstream has released updates that appear to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
Bukkit Changes:
9a80d38c SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-722: Add EntityRemoveEvent
258086d9 SPIGOT-7417, PR-967: Add Sign#getTargetSide and Sign#getAllowedEditor
ffaba051 SPIGOT-7584: Add missing Tag.ITEMS_NON_FLAMMABLE_WOOD
CraftBukkit Changes:
98b6c1ac7 SPIGOT-7589 Fix NullPointerException when bans expire
a2736ddb0 SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-1008: Add EntityRemoveEvent
5bf12cb89 SPIGOT-7565: Throw a more descriptive error message when a developer tries to spawn an entity from a CraftBukkit class
76d95fe7e SPIGOT-7417, PR-1343: Add Sign#getTargetSide and Sign#getAllowedEditor
Spigot Changes:
e9ec5485 Rebuild patches
f1b62e0c Rebuild patches
2024-02-23 14:37:33 +01:00
|
|
|
@@ -577,6 +577,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
|
2024-01-20 23:13:41 +01:00
|
|
|
+ player.lastSave = MinecraftServer.currentTick; // Paper - Incremental chunk and player saving
|
2022-09-26 10:02:51 +02:00
|
|
|
this.playerIo.save(player);
|
|
|
|
ServerStatsCounter serverstatisticmanager = (ServerStatsCounter) player.getStats(); // CraftBukkit
|
|
|
|
|
Updated Upstream (Bukkit/CraftBukkit/Spigot) (#10277)
Upstream has released updates that appear to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
Bukkit Changes:
9a80d38c SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-722: Add EntityRemoveEvent
258086d9 SPIGOT-7417, PR-967: Add Sign#getTargetSide and Sign#getAllowedEditor
ffaba051 SPIGOT-7584: Add missing Tag.ITEMS_NON_FLAMMABLE_WOOD
CraftBukkit Changes:
98b6c1ac7 SPIGOT-7589 Fix NullPointerException when bans expire
a2736ddb0 SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-1008: Add EntityRemoveEvent
5bf12cb89 SPIGOT-7565: Throw a more descriptive error message when a developer tries to spawn an entity from a CraftBukkit class
76d95fe7e SPIGOT-7417, PR-1343: Add Sign#getTargetSide and Sign#getAllowedEditor
Spigot Changes:
e9ec5485 Rebuild patches
f1b62e0c Rebuild patches
2024-02-23 14:37:33 +01:00
|
|
|
@@ -1228,10 +1229,22 @@ public abstract class PlayerList {
|
2022-09-26 10:02:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void saveAll() {
|
2024-01-20 23:13:41 +01:00
|
|
|
+ // Paper start - Incremental chunk and player saving
|
2022-09-26 10:02:51 +02:00
|
|
|
+ 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
|
|
|
+ }
|
2024-01-20 23:13:41 +01:00
|
|
|
+ // Paper end - Incremental chunk and player saving
|
2022-09-26 10:02:51 +02:00
|
|
|
}
|
|
|
|
MinecraftTimings.savePlayers.stopTiming(); // Paper
|
|
|
|
return null; }); // Paper - ensure main
|