ipython / ipython/ipykernel

Very slow kernel (~30s) restart with asyncio and ProcessPoolExecutor

オープン
#291 コメント 2 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
Python
スター
734
フォーク
412
平均マージ
1日 5時間
マージ済み PR(30日)
8

説明

Thanks to the great work by @minrk in https://github.com/ipython/ipykernel/pull/290 restarting a kernel cleans everything up correctly.

However, when the `ProcessPoolExecutor` is still running the kernel restart is very slow (~30 seconds vs 2 seconds normally).

```python
import concurrent.futures
import asyncio

executor = concurrent.futures.ProcessPoolExecutor()
ioloop = asyncio.get_event_loop()

def simple_function(x):
import time
time.sleep(10000)
return x

tsk = ioloop.run_in_executor(executor, simple_function, 0)
```

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。