Sirikon's Neocities

0005 Python Simplified Concurrency Guide

So you want to do multiple tasks concurrently in Python because your ugly ass code should be bothering as many CPU cores as possible all the time with its mere existence.

In Python there are three modules that will help you achieve your perfectly sane goals.

multiprocessing

Imagine executing a python command multiple times, but each instance having a way to talk with each other to sync and pass information.

Creating processes here means creating actual operating system processes, each with its own Python interpreter, memory, and all the overhead involved.

Processes look all the same to the OS, and the OS will assign CPU time to each process following its own criteria.

You can communicate between processes by:

threading

Creating threads here means creating actual operating system threads. It will give us a single process with a single Python interpreter and memory space, but with multiple threads working on it independently.

Threads look all the same to the OS, and the OS will assign CPU time to each thread following its own criteria.

The OS doesn't know that there is a thread with stuff to do and a thousand threads just waiting for IO. They all look the same. Don't expect the scheduler to know better and assign CPU time sooner to the thread that can continue working.

You won't achieve any parallelism with threading, because threads under a Python process are synced with the Global Interpreter Lock. Only one thread is allowed to do work at a time.

You'll probably need some Locks to prevent pesky race conditions. Remember, threads share memory.

You can communicate between threads by... just leaving values there or using Locks and Queues for safety. Again, threads share memory, remember?!

asyncio

So there's this thing popularized by JavaScript called an Event Loop in which instead of endlessly waiting for IO, you can pause the execution and let the runtime call you back whenever it's done so more tasks can be performed during that time. It's Starbucks putting your name on the cup and calling you back whenever your Pumpkin Spice Latte is ready but without child labor in under-developed economies.

Python has exactly that, even with the async/await keywords, because life is nothing without color.

The event loop is implemented in Python and uses a mechanism provided by the operating system to have a map of pending IO and functions to be called back whenever the pending IO is completed. This is the only way in Python to have concurrency with scheduling that knows which tasks can continue and which ones can't because their IO hasn't resolved yet.

This means that every IO operation needs to be performed "the async way" to take advantage of the event loop instead of blocking the thread.

Asyncio only affects how you interact with IO. It doesn't affect how you communicate between different parts of your program. Just be aware that an event loop runs on a single thread.

Which one should I use

Make your own informed decissions, for fuck's sake.

EDIT: Many corrections, because it's a new year, but I'm still a fucking donkey.