queue

Kubernetes 從零開始 - 資源排隊神器 Kueue

category: kubernetes     4 minute read     Posted on:

Introduction to Kueue 你可以在 Kubernetes 裡面塞入任一數量的 job,但這只是理論上 實務上會因為硬體資源的限制,你只可以執行有限數量的 job Kueue 這個工具可以根據這些 限制,允許有限數量的 job 同時執行 它可以做到一些基礎的排程機制,如 Job 要不要等待,...

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...