Skip to content

Instantly share code, notes, and snippets.

@tonybaloney
Last active November 22, 2023 17:49
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save tonybaloney/98d16f330e8e75ab028037201f91a670 to your computer and use it in GitHub Desktop.
Save tonybaloney/98d16f330e8e75ab028037201f91a670 to your computer and use it in GitHub Desktop.
"""
Testing on CPython3.13a1+
Requires some recent patches from main.
pip install hypercorn
Have successfully run the following apps:
- fastapi==0.99.0
- Flask
"""
import _xxsubinterpreters as interpreters
import _xxinterpchannels as channels
import threading
from hypercorn.config import Config, Sockets
import logging
logger = logging.getLogger(__name__)
WORKERS = 2
"""
This function is started inside the subinterpreter.
Shared globals:
- worker_number: int
- workers: int
- channel_id: int
- insecure_sockets: tuple of tuples
- application_path: str
"""
interpreter_worker = """
import sys
sys.path.append('experiments')
from hypercorn.asyncio.run import asyncio_worker
from hypercorn.config import Config, Sockets
import asyncio
import threading
import _xxinterpchannels as channels
from socket import socket
import time
shutdown_event = asyncio.Event()
def wait_for_signal():
while True:
msg = channels.recv(channel_id, default=None)
if msg == "stop":
print("Received stop signal, shutting down {} ".format(worker_number))
shutdown_event.set()
else:
time.sleep(1)
print("Starting hypercorn worker in subinterpreter {} ".format({worker_number}))
_insecure_sockets = []
# Rehydrate the sockets list from the tuple
for s in insecure_sockets:
_insecure_sockets.append(socket(*s))
hypercorn_sockets = Sockets([], _insecure_sockets, [])
config = Config()
config.application_path = application_path
config.workers = workers
thread = threading.Thread(target=wait_for_signal)
thread.start()
# TODO fix event callback and set a graceful shutdown event
asyncio_worker(config, hypercorn_sockets, shutdown_event=shutdown_event)
print("finished")
"""
class SubinterpreterWorker(threading.Thread):
def __init__(self, number: int, config: Config, sockets: Sockets):
self.worker_number = number
self.interp = interpreters.create()
self.channel = channels.create()
self.config = config # TODO copy other parameters from config
self.sockets = sockets
super().__init__(target=self.run, daemon=True)
def run(self):
# Convert insecure sockets to a tuple of tuples because the Sockets type cannot be shared
insecure_sockets = []
for s in self.sockets.insecure_sockets:
insecure_sockets.append((int(s.family), int(s.type), s.proto, s.fileno()))
interpreters.run_string(
self.interp,
interpreter_worker,
shared={
'worker_number': self.worker_number,
'insecure_sockets': tuple(insecure_sockets),
'application_path': self.config.application_path,
'workers': self.config.workers,
'channel_id': self.channel,
}
)
def stop(self):
print("Sending stop signal to worker {}".format(self.worker_number))
channels.send(self.channel, "stop")
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser()
parser.add_argument(
"application", help="The application to dispatch to as path.to.module:instance.path"
)
parser.add_argument(
"-w",
"--workers",
dest="workers",
help="The number of workers to spawn and use",
default=WORKERS,
type=int,
)
args = parser.parse_args()
config = Config()
config.application_path = args.application
config.workers = args.workers
sockets = config.create_sockets()
logger.debug("Starting {} workers".format(args.workers))
threads = []
for i in range(args.workers):
t = SubinterpreterWorker(i, config, sockets)
t.start()
threads.append(t)
try:
for t in threads:
t.join()
except KeyboardInterrupt:
for t in threads:
t.stop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment