nornir.plugins.runners.__init__
- class nornir.plugins.runners.__init__.SerialRunner
SerialRunner runs the task over each host one after the other without any parellelization
- run(task: Task, hosts: List[Host]) AggregatedResult
- class nornir.plugins.runners.__init__.ThreadedRunner(num_workers: int = 20)
ThreadedRunner runs the task over each host using threads
- Parameters:
num_workers – number of threads to use
- run(task: Task, hosts: List[Host]) AggregatedResult