NICMx / FORT-validator

RPKI cache validator
MIT License
47 stars 22 forks source link

Rethink the thread pools #129

Open ydahhrk opened 2 months ago

ydahhrk commented 2 months ago

Fort is currently spawning one thread per TAL. It's a lousy solution, because some trees take much longer than others.

Worker threads should probably claim repository publication points (nodes), not trees.

Also, probably offload the pool management to some outer library, as the current code seems perfectly generic.