2019-03-20 02:46:00 +01:00
|
|
|
From 6a576fd91e6c21dca0af32180d32e465909b6440 Mon Sep 17 00:00:00 2001
|
2018-07-21 23:24:18 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 1 Jan 2018 16:10:24 -0500
|
|
|
|
Subject: [PATCH] Configurable Max Chunk Gens per Tick
|
|
|
|
|
|
|
|
Limit the number of generations that can occur in a single tick, forcing them
|
|
|
|
to be spread out more.
|
|
|
|
|
|
|
|
Defaulting to 10 as an average generation is going to be 3-6ms, which means 10 will
|
|
|
|
likely cause the server to lose TPS, but constrain how much.
|
|
|
|
|
|
|
|
This should result in no noticeable speed reduction in generation for servers not
|
|
|
|
lagging, and let larger servers reduce this value according to their own desires.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-12-13 01:40:29 +01:00
|
|
|
index 29cb718fb..695bdf2e6 100644
|
2018-07-21 23:24:18 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-12-13 01:40:29 +01:00
|
|
|
@@ -393,4 +393,15 @@ public class PaperWorldConfig {
|
2018-07-21 23:24:18 +02:00
|
|
|
}
|
|
|
|
log("Max Chunk Sends Per Tick: " + maxChunkSendsPerTick);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int maxChunkGensPerTick = 10;
|
|
|
|
+ private void maxChunkGensPerTick() {
|
|
|
|
+ maxChunkGensPerTick = getInt("max-chunk-gens-per-tick", maxChunkGensPerTick);
|
|
|
|
+ if (maxChunkGensPerTick <= 0) {
|
|
|
|
+ maxChunkGensPerTick = Integer.MAX_VALUE;
|
|
|
|
+ log("Max Chunk Gens Per Tick: Unlimited (NOT RECOMMENDED)");
|
|
|
|
+ } else {
|
|
|
|
+ log("Max Chunk Gens Per Tick: " + maxChunkGensPerTick);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerChunk.java b/src/main/java/net/minecraft/server/PlayerChunk.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index b9d90c4fb..7d3f846a1 100644
|
2018-07-21 23:24:18 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerChunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerChunk.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -21,6 +21,7 @@ public class PlayerChunk {
|
2018-12-17 06:18:06 +01:00
|
|
|
private int h;
|
|
|
|
private long i;
|
|
|
|
private boolean done;
|
2018-07-21 23:24:18 +02:00
|
|
|
+ boolean chunkExists; // Paper
|
2018-08-26 20:11:49 +02:00
|
|
|
|
2019-01-01 04:15:55 +01:00
|
|
|
public PlayerChunk(PlayerChunkMap playerchunkmap, int i, int j) {
|
2018-12-17 06:18:06 +01:00
|
|
|
this.playerChunkMap = playerchunkmap;
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -29,6 +30,7 @@ public class PlayerChunk {
|
|
|
|
|
|
|
|
chunkproviderserver.a(i, j);
|
|
|
|
this.chunk = chunkproviderserver.getChunkAt(i, j, true, false);
|
|
|
|
+ this.chunkExists = this.chunk != null || org.bukkit.craftbukkit.chunkio.ChunkIOExecutor.hasQueuedChunkLoad(playerChunkMap.getWorld(), i, j); // Paper
|
2018-07-21 23:24:18 +02:00
|
|
|
markChunkUsed(); // Paper - delay chunk unloads
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerChunkMap.java b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index f481e5a4f..679488a3c 100644
|
2018-07-21 23:24:18 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -132,6 +132,7 @@ public class PlayerChunkMap {
|
2018-07-21 23:24:18 +02:00
|
|
|
// Spigot start
|
|
|
|
org.spigotmc.SlackActivityAccountant activityAccountant = this.world.getMinecraftServer().slackActivityAccountant;
|
|
|
|
activityAccountant.startActivity(0.5);
|
|
|
|
+ int chunkGensAllowed = world.paperConfig.maxChunkGensPerTick; // Paper
|
|
|
|
// Spigot end
|
|
|
|
|
|
|
|
Iterator iterator1 = this.h.iterator();
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -141,6 +142,11 @@ public class PlayerChunkMap {
|
2018-07-21 23:24:18 +02:00
|
|
|
|
|
|
|
if (playerchunk1.f() == null) {
|
|
|
|
boolean flag = playerchunk1.a(PlayerChunkMap.b);
|
|
|
|
+ // Paper start
|
|
|
|
+ if (flag && !playerchunk1.chunkExists && chunkGensAllowed-- <= 0) {
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
if (playerchunk1.a(flag)) {
|
|
|
|
iterator1.remove();
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/chunkio/ChunkIOExecutor.java b/src/main/java/org/bukkit/craftbukkit/chunkio/ChunkIOExecutor.java
|
2018-12-13 01:40:29 +01:00
|
|
|
index 7ffb8f617..33d5fc7d5 100644
|
2018-07-21 23:24:18 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/chunkio/ChunkIOExecutor.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/chunkio/ChunkIOExecutor.java
|
2018-09-29 01:31:59 +02:00
|
|
|
@@ -34,4 +34,10 @@ public class ChunkIOExecutor {
|
2018-07-21 23:24:18 +02:00
|
|
|
public static void tick() {
|
|
|
|
instance.finishActive();
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ public static boolean hasQueuedChunkLoad(World world, int x, int z) {
|
|
|
|
+ return instance.hasTask(new QueuedChunk(x, z, null, world, null));
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/util/AsynchronousExecutor.java b/src/main/java/org/bukkit/craftbukkit/util/AsynchronousExecutor.java
|
2018-12-13 01:40:29 +01:00
|
|
|
index 193c3621c..cf1258c55 100644
|
2018-07-21 23:24:18 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/util/AsynchronousExecutor.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/util/AsynchronousExecutor.java
|
|
|
|
@@ -351,4 +351,10 @@ public final class AsynchronousExecutor<P, T, C, E extends Throwable> {
|
|
|
|
public void setActiveThreads(final int coreSize) {
|
|
|
|
pool.setCorePoolSize(coreSize);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ public boolean hasTask(P parameter) throws IllegalStateException {
|
|
|
|
+ return tasks.get(parameter) != null;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
--
|
2019-03-20 02:46:00 +01:00
|
|
|
2.21.0
|
2018-07-21 23:24:18 +02:00
|
|
|
|