Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Ultimate Minecraft 1.21 Server Optimization Guide: Boost Performance for 50+ Players

๐€๐๐ฆ๐ข๐ง๐ข๐ฌ๐ญ๐ซ๐š๐ญ๐จ๐ซ๐ฌ
Jan
12
2
๐ƒ๐„๐•๐„๐‹๐Ž๐๐„๐‘ & ๐€๐ƒ๐Œ๐ˆ๐
๐…๐จ๐ฎ๐ง๐๐ž๐ซ
๐Œ๐ž๐ฆ๐›๐ž๐ซ
qxtENaH.png


Ultimate Minecraft 1.21 Server Optimization Guide: Boost Performance for 50+ Players​



Are you struggling with lag on your Minecraft server? Do you want to host 50+ players simultaneously without performance issues? This comprehensive optimization guide will help you achieve peak performance for your Minecraft 1.21 server running on Java 21 with 10GB RAM and multiple plugins.


Server Type: Paper/Purpur (Java Edition) | Minecraft Version: 1.21 | RAM Allocation: 10GB (8-9GB for Java) | Player Capacity: 50+ players | Java Version: Java 21


๐Ÿš€ Step 1: Choosing the Optimal Server Software​



The foundation of a high-performance Minecraft server starts with selecting the right server software. For maximum optimization, consider these options:


โ€ข Paper - Highly optimized fork of Spigot, ideal for performance-focused serversDownload Paper


โ€ข Purpur - Based on Paper with additional customization optionsDownload Purpur


Both options provide significant performance improvements over vanilla Minecraft or standard Spigot, with Paper focusing on core performance and Purpur offering additional customization for specific server needs.


๐Ÿ’พ Step 2: Optimizing RAM Allocation & Java Flags​



Proper memory allocation and Java Virtual Machine (JVM) flags are crucial for server performance. When working with 10GB of total RAM:


โ€ข Allocate 8-9GB to Javaโ€ข Reserve 1GB for your operating systemโ€ข Use the appropriate garbage collector for your hardware


๐Ÿ“œ G1GC Optimized Start Script (Recommended for Most Servers)​



The Garbage-First Garbage Collector (G1GC) provides the best balance of speed and stability for most Minecraft servers:


Code:
java -Xms8G -Xmx9G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=50 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -jar paper.jar nogui


๐Ÿ“œ ZGC Optimized Start Script (For High-End CPUs)​



The Z Garbage Collector (ZGC) can offer better performance on modern, high-end CPUs:


Code:
java -Xms8G -Xmx9G -XX:+UseZGC -jar paper.jar nogui


Pro Tip: When using ZGC, you'll need slightly more overhead RAM compared to G1GC. Consider allocating an extra 0.5-1GB if available.


โš™๏ธ Step 3: Configuring Server Files for Maximum Performance​



Proper configuration of your server files is essential for handling a large player base with minimal lag.


๐Ÿ“ Optimizing spigot.yml​



Edit your /home/minecraft/spigot.yml file with these optimized settings:


Code:
entity-tracking-range:players: 48animals: 32monsters: 32misc: 16other: 16


world-settings:default:mob-spawn-range: 4save-structure-info: falsemerge-radius:item: 4.0exp: 6.0view-distance: 6simulation-distance: 4


These settings reduce the distance at which entities are tracked and optimize how items and experience orbs merge, significantly reducing server load.


๐Ÿ“ Optimizing paper.yml​



Edit your /home/minecraft/paper.yml file with these performance-focused settings:


Code:
settings:enable-player-collisions: falsemax-joins-per-tick: 5use-alternate-keepalive: trueplayer-auto-save-rate: -1


timings:enabled: false


chunk-system:worker-threads: 6  # Adjust based on CPU cores


Note: For the worker-threads setting, use approximately 1 thread per physical CPU core you have available.


๐Ÿ“ Optimizing purpur.yml (If Using Purpur)​



If you've chosen Purpur as your server software, edit /home/minecraft/purpur.yml:


Code:
performance:allow-unsafe-drops: truedisable-chest-cat-detection: truereduce-collision-checks: trueallow-duplicate-uuids: falseitem-despawn-rate: 400monster-despawn-rate: 400


๐Ÿ”ง Step 4: Fine-Tuning server.properties​



The server.properties file contains several key settings that can drastically impact performance:


Code:
view-distance=6simulation-distance=4network-compression-threshold=512max-tick-time=1000use-native-transport=truesync-chunk-writes=false


Setting: network-compression-threshold=512โ€ข Function: Packets smaller than 512 bytes won't be compressedโ€ข Performance Impact: Reduces CPU load while maintaining reasonable bandwidth usage


Setting: use-native-transport=trueโ€ข Function: Uses optimized Linux networkingโ€ข Performance Impact: Improves CPU efficiency for network operations


Setting: sync-chunk-writes=falseโ€ข Function: Disables synchronous chunk savingโ€ข Performance Impact: Prevents main thread blocking during world saves


Advanced Tip: For network-compression-threshold:


โ€ข If experiencing CPU lag: Increase to 1024-2048โ€ข If experiencing network lag: Decrease to 256-384โ€ข 512 is a good balance for most servers


๐ŸŒ Step 5: Pre-generating Chunks to Prevent Exploration Lag​



One of the biggest causes of server lag is when players explore new areas, forcing the server to generate chunks on the fly. Pre-generating chunks solves this problem:


  1. Install the Chunky plugin
  2. Run the following commands:
    Code:
    /chunky radius 5000/chunky start
  3. Wait for the pre-generation process to complete

This process can take several hours depending on your server's processing power and the radius specified, but it will dramatically improve performance when players explore your world.


๐Ÿ“Š Step 6: Database Optimization (For MySQL/MariaDB Users)​



If you're using plugins that rely on databases (like LuckPerms, CoreProtect, etc.), optimize your database configuration:


โ€ข Use MariaDB instead of MySQL (faster performance)โ€ข Edit your my.cnf file with these optimizations:
Code:
innodb_flush_log_at_trx_commit = 2sync_binlog = 0


These settings improve database write performance while maintaining reasonable data safety.


๐Ÿ Step 7: Entity & World Optimization​



Entities are one of the biggest performance drains on Minecraft servers. Optimizing entity spawning and behavior is crucial:


๐Ÿ“ Limiting Entity Spawning in bukkit.yml​



Edit your bukkit.yml file to control entity spawn limits:


Code:
spawn-limits:monsters: 40animals: 15water-animals: 5ambient: 2


๐Ÿ“ Reducing Hopper Lag​



Hoppers are notorious for causing TPS drops. Add these settings to reduce hopper-related lag:


Code:
hopper-amount: 2hopper-check: 16


๐Ÿšซ Disabling Unused Dimensions​



If your server doesn't use certain dimensions, disable them to save resources:


Code:
allow-nether: false


Warning: Only disable dimensions if your server genuinely doesn't need them!


๐Ÿ“ˆ Step 8: Monitoring and Analyzing Performance​



Regular monitoring is essential to maintain optimal performance:


โ€ข Use Spark plugin for detailed performance analysis:
Code:
/spark profiler


โ€ข Monitor TPS (Ticks Per Second):
Code:
/tps


โ€ข Analyze timings (though Spark is preferred by developers):
Code:
/timings on/timings paste


Pro Tip: Spark commands provide more detailed information than timings and can pinpoint exactly which plugins are causing lag on your server.


โœ… Final Optimization Checklist​



Follow these best practices to maintain optimal server performance:


โ€ข Check /tps regularly (aim for 20.0 TPS)โ€ข Remove unnecessary pluginsโ€ข Use /spark profiler to identify lag sourcesโ€ข Schedule daily server restarts to prevent memory leaksโ€ข Encourage players to use client-side optimization mods like Sodiumโ€ข Monitor player count and adjust settings as needed


๐Ÿ”„ Troubleshooting Common Performance Issues​



If you notice your server's RAM usage steadily increasing over time:โ€ข Identify problematic plugins using Sparkโ€ข Set up automatic server restarts every 12-24 hoursโ€ข Consider adjusting garbage collection parameters


For sudden performance drops:โ€ข Check for redstone contraptions or entity farmsโ€ข Look for chunk loaders or other intensive mechanicsโ€ข Use /spark tps to identify problematic areas


If players experience lag when exploring:โ€ข Ensure chunks are pre-generatedโ€ข Consider lowering view-distance furtherโ€ข Use Paper's no-tick-view-distance feature


๐ŸŽฎ Conclusion: Balanced Performance for Your Minecraft Community​



By implementing these optimizations, your Minecraft 1.21 server should be capable of handling 50+ players with minimal lag, even with numerous plugins installed. Remember that server optimization is an ongoing process - continue monitoring performance and making adjustments as your server grows.


Have you implemented these optimizations on your server? What improvements did you notice? Share your experiences in the comments below!


Credit: This guide is adapted from information shared by ConnerPVP from Spiced Network


minecraft server optimization, minecraft 1.21 server, minecraft performance guide, reduce minecraft lag, optimize minecraft java server, minecraft paper server, minecraft purpur server, minecraft server for 50 players, java 21 minecraft server, high performance minecraft server, minecraft tps optimization, minecraft server configuration, minecraft server lag fix, minecraft chunk pre-generation, zgc vs g1gc minecraft, minecraft mysql optimization
 
Top