Choosing Hardware for a Hytale Server

HytaleONE Team
· · 10 min read
Hytale server hardware with CPU, RAM, NVMe storage, and voxel world performance visualization

The wrong way to buy Hytale server hardware is to sort by core count, pick the box with the biggest RAM number, and hope it feels fast.

Game servers do not work like generic web servers. A Hytale server cares about fast cores, enough memory for loaded worlds, low storage latency, stable network performance, and predictable access to CPU time. A cheap shared VPS with “16 vCPU” can lose to a smaller dedicated machine if those vCPUs are oversold or throttled.

This guide explains what actually matters, what the official Hytale server documentation tells us, and how to choose hardware without pretending there is a magic “players per GB” formula.


In this article: Official Baseline · CPU · RAM · Storage · Network · Dedicated vs VPS · Sizing · Monitoring


Official Baseline

The official Hytale Server Manual gives the hard starting point:

  • Hytale dedicated servers need Java 25.
  • The server can run on x64 and arm64.
  • The minimum memory requirement is 4GB.
  • Resource usage depends heavily on player behavior.
  • CPU pressure is driven by high player counts and high entity counts such as NPCs and mobs.
  • RAM pressure is driven by large loaded world area, high view distance, and players exploring independently.
  • Each world has its own main thread and off-loads parallel work into a shared thread pool.

Those details matter more than any generic Minecraft hosting chart.

Hytale is not a static workload. A quiet creative server with a few players near spawn is different from a public survival server where everyone flies in different directions, generates new terrain, fights mobs, and runs plugins.

CPU: Fast Cores Beat Many Slow Cores

The most important hardware choice is CPU quality.

Hytale can use multiple threads, and the official manual says each world has its own main thread with parallel work off-loaded into a shared pool. That means extra cores are useful, especially if you run multiple worlds or multiple server processes.

But the main thread for a busy world still needs to finish work quickly. If one world is overloaded, having 48 slow cores sitting idle does not magically make that world tick faster.

Prioritize:

  • recent CPU architecture
  • high single-thread performance
  • high sustained clock speeds
  • predictable dedicated CPU access
  • enough cores for your worlds, proxy, database, monitoring, and OS

Deprioritize:

  • old dual-socket enterprise CPUs with many weak cores
  • cheap VPS plans with vague “vCPU” claims
  • burst-only cloud instances that throttle under sustained load
  • hosts that hide CPU model and overselling policy

Good signs in a host listing:

  • real CPU model is shown
  • dedicated cores or dedicated server hardware
  • modern Ryzen, EPYC, Core, or Xeon generation
  • no “fair use” CPU policy for game-server workloads

Bad signs:

  • “unlimited CPU”
  • “up to 5GHz” with no sustained performance detail
  • no CPU model
  • shared hosting that forbids sustained high CPU usage
  • support answers that say “it depends” but cannot explain noisy neighbors

How Many Cores Do You Need?

For one public Hytale server, do not buy a 64-core machine first. Start with fewer, faster cores.

A practical baseline:

Small single server:       4 fast cores
Growing community server:  6-8 fast cores
Proxy + multiple worlds:   8-12 fast cores
Large network:             split across multiple machines

That is not a promise about player counts. It is a sane starting point.

Use extra cores for:

  • multiple Hytale worlds or server processes
  • proxy software
  • PostgreSQL or Redis
  • backups and compression
  • Prometheus, Grafana, exporters
  • OS and background tasks
  • plugin workloads

Do not rely on extra cores to fix one overloaded world. If one world’s main thread is saturated, you need faster cores, lower view distance, fewer entities, plugin optimization, or a design change that splits load across worlds/servers.

RAM: View Distance and Loaded World Area Matter

The official minimum is 4GB, but minimum means “can run”, not “comfortable public community server”.

Hytale’s own docs point at the real RAM driver: loaded world area. High view distance and players exploring independently keep more world data active. Mods and plugins add their own overhead. Java also needs memory outside the heap for metaspace, thread stacks, native allocations, memory-mapped files, and the runtime itself.

Start with an explicit heap instead of letting the JVM guess:

java -Xms4G -Xmx4G \
  -XX:AOTCache=HytaleServer.aot \
  -jar HytaleServer.jar \
  --assets Assets.zip

If you containerize the server, do not set the container memory limit equal to -Xmx. The JVM uses memory outside the heap. In our Docker Hytale server guide, the example uses a 4GB heap with a 6GB container limit for that reason.

Better pattern:

JVM heap:        4G
Container limit: 6G
Host RAM:        8G+ if this is the only workload

Watch for memory pressure symptoms:

  • rising garbage collection time
  • CPU usage increasing while player activity is stable
  • long pauses
  • OS swapping
  • container OOM kills
  • slow world loading
  • backups causing severe stutter

The official manual notes that a typical symptom of memory pressure is increased CPU usage due to garbage collection. That is why “CPU is high” does not always mean “buy more CPU”. Sometimes the heap is too small, view distance is too high, or the host is swapping.

View Distance Is a Hardware Setting

View distance is not just a gameplay preference. It is a resource control.

The official manual recommends limiting maximum view distance to 12 chunks / 384 blocks for performance and gameplay. Treat that as a production default until monitoring proves you can raise it.

Lowering view distance can reduce:

  • loaded chunks
  • memory pressure
  • world generation pressure
  • disk reads and writes
  • bandwidth per player
  • CPU work for entities and simulation around players

If players spread across the world, resource usage climbs faster than if everyone stays near the same area. Ten players building in one town and ten players exploring in ten directions are not the same workload.

Storage: Use NVMe, Not Slow Network Disks

Hytale worlds are persistent. The server writes logs, player data, config changes, backups, and world data. Updates and asset files also need local storage.

Use NVMe SSDs for production servers.

Avoid:

  • HDD storage
  • cheap network-attached disks as the primary world path
  • storage with unclear IOPS limits
  • hosts that put game data on overloaded shared arrays
  • tiny disks that leave no space for backups

You do not need a huge disk to start, but you do need fast and reliable storage. World size depends on exploration, backups, mods, logs, and how long the server runs.

Practical minimums:

Testing:             30-50GB NVMe
Small community:     80-150GB NVMe
Growing public host: 200GB+ NVMe
Large network:       plan per-world and per-backup retention

Backups should not live only on the same disk as the world. Local backups are useful for quick rollback, but a disk failure takes the world and local backups together. Send periodic copies to another machine or object storage.

Network Stability Matters More Than Raw Bandwidth

Hytale uses QUIC over UDP. You need stable UDP connectivity, low packet loss, and good routing to your player base.

For most community servers, raw bandwidth is not the first bottleneck. Stability is.

Look for:

  • data center region close to players
  • good peering to your audience
  • clear UDP support
  • basic DDoS protection
  • ability to open UDP 5520
  • no weird game-server traffic shaping

Avoid hosts that only talk about “1Gbps port” but cannot answer basic questions about UDP filtering, DDoS mitigation, or sustained traffic.

If you use a proxy or DDoS-protected frontend, keep backend servers private. Our infrastructure security guide covers why backend Hytale servers, databases, Prometheus, and Grafana should not be public.

Dedicated Servers Beat Shared VPS for Serious Communities

A VPS is fine for testing, private servers, and early experiments. It becomes risky when you build a public community around it.

The problem is not virtualization itself. The problem is shared, oversold, throttled resources.

Common shared-VPS issues:

  • CPU steal from noisy neighbors
  • burst credits that disappear during peak hours
  • inconsistent disk latency
  • provider throttling sustained CPU
  • hidden fair-use rules
  • slower support for UDP/network issues
  • noisy neighbors causing latency spikes you cannot fix

Dedicated servers are boring in the best way. You know what CPU you have. You know no other customer is stealing your cores. Disk latency is more predictable. Network limits are clearer. Debugging is simpler.

Use a VPS when:

  • testing server files
  • developing plugins
  • running a private friend server
  • hosting a small temporary world
  • running non-critical monitoring or web tools

Use dedicated hardware when:

  • players expect uptime
  • you run public events
  • you monetize
  • you run multiple worlds or a proxy network
  • latency spikes are unacceptable
  • you need predictable CPU and disk performance

Practical Starting Points

These are starting points, not guarantees. Player behavior, view distance, mods, entities, world count, and plugins change everything.

Use caseCPURAMStorageNotes
Local testingmodern 2-4 cores4-8GBSSDenough for setup and plugin testing
Private friends server4 fast cores8GB50GB NVMekeep view distance conservative
Small public community4-6 fast cores12-16GB100GB NVMemonitor CPU, heap, GC, disk
Growing public server6-8 fast cores16-32GB150-250GB NVMeseparate database/backups if needed
Proxy + several backends8-12 fast cores or multiple hosts32GB+250GB+ NVMesplit busy worlds across processes/hosts

Do not buy the biggest machine before launch. Buy a sane box, measure, then scale based on evidence.

JVM and Container Limits

If you run Hytale directly with systemd, put JVM settings in a wrapper script or jvm.options file:

-Xms6G
-Xmx6G
-XX:AOTCache=HytaleServer.aot

If you run in Docker, set both JVM heap and container limits. Docker’s docs explain that containers have no resource constraints by default unless you set them. A runaway process can consume host memory until the kernel starts killing processes.

Compose example:

services:
  hytale:
    image: your-hytale-image
    command:
      - -Xms6G
      - -Xmx6G
      - -XX:AOTCache=/home/hytale/server/HytaleServer.aot
      - -jar
      - /home/hytale/server/HytaleServer.jar
      - --assets
      - /home/hytale/assets/Assets.zip
    deploy:
      resources:
        limits:
          memory: 8G
          cpus: "4.0"

Do not disable the OOM killer to hide memory problems. Fix the heap, view distance, workload, or host size.

Monitor Before You Upgrade

Hardware decisions should come from measurements.

Track at least:

  • process CPU usage
  • per-core CPU saturation
  • JVM heap used after GC
  • GC pause time and frequency
  • host memory available
  • swap usage
  • disk latency and IOPS
  • network packet loss
  • player count
  • loaded worlds
  • view distance
  • entity counts if available
  • plugin errors and slow tasks

Prometheus and Grafana are a good fit here; we covered that setup in the Hytale server monitoring guide. Keep the monitoring stack private. Metrics are for operators, not random internet scanners.

Upgrade based on symptoms:

SymptomLikely areaFirst actions
One busy world lags, other cores idlesingle-thread CPU/world loadlower view distance, reduce entities, optimize plugins, use faster cores
CPU high and GC frequentmemory pressureincrease heap carefully, reduce loaded area, check leaks/plugins
Host swapsRAM shortagereduce heap/other services or add RAM
Saves/backups stutterstoragemove to faster NVMe, adjust backup timing, separate backup disk
All services lag during backupsresource contentioncap compression, schedule off-peak, move backups off-host
Random latency spikes on VPSnoisy neighbor/throttlingmove to dedicated or better provider

Do Not Overpack One Machine

It is tempting to put everything on one large server:

  • proxy
  • all Hytale backends
  • database
  • Redis
  • website
  • Prometheus
  • Grafana
  • backups
  • CI jobs

That works until one task hurts the rest. A backup compression job steals CPU. PostgreSQL cache competes with the JVM heap. Prometheus churns disk. A plugin memory leak triggers OOM pressure. Debugging becomes messy.

For a growing network, split by failure domain:

Host 1: public proxy
Host 2: lobby + lightweight worlds
Host 3: survival world
Host 4: minigames
Host 5: database + monitoring on private network

You do not need that layout on day one. But if the community grows, horizontal separation is cleaner than endlessly scaling one box.

Buying Checklist

Before ordering a host, answer these:

  • What exact CPU model is used?
  • Are the cores dedicated or shared?
  • Is sustained CPU allowed?
  • Is storage local NVMe?
  • What are the IOPS or fair-use limits?
  • Is UDP 5520 allowed?
  • Is DDoS protection included for UDP game traffic?
  • Can you reinstall the OS cleanly?
  • Can you use your own firewall rules?
  • Is there enough disk for backups and updates?
  • Can you add private networking or WireGuard?
  • Can you upgrade without changing IP?

If the provider cannot answer those, keep looking.

Final Recommendation

For your first serious Hytale server, choose a modern dedicated machine with fewer fast cores, enough RAM headroom, local NVMe, and good UDP connectivity. Start conservative on view distance. Monitor CPU, heap, GC, disk, and player behavior. Upgrade when the data tells you what is actually limiting the server.

Do not buy 64 slow cores because the number looks impressive. Do not trust a shared VPS just because the plan says “16 vCPU”. For Hytale, predictable fast cores and low-latency storage are worth more than inflated spec-sheet numbers.