Skip to content

Instantly share code, notes, and snippets.

@codspire
codspire / running-flink-locally-on-windows-10.md
Last active January 4, 2024 12:42
Running Flink Locally on Windows 10

Thread Pools

Thread pools on the JVM should usually be divided into the following three categories:

  1. CPU-bound
  2. Blocking IO
  3. Non-blocking IO polling

Each of these categories has a different optimal configuration and usage pattern.