source: doc/theses/thierry_delisle_PhD/thesis/text/conclusion.tex @ 38a238d

ADTast-experimentalpthread-emulation
Last change on this file since 38a238d was 38a238d, checked in by Peter A. Buhr <pabuhr@…>, 20 months ago

proofread conclusion, small change to eval_macro

  • Property mode set to 100644
File size: 10.9 KB
Line 
1\chapter{Conclusion}\label{conclusion}
2
3Building the \CFA runtime has been an extremely challenging project.
4The work was divided between high-level concurrency design and a user-level threading runtime (Masters thesis), and low-level support of the user-level runtime using OS kernel-threading and its (multiple) I/O subsystems (Ph.D. thesis).
5Because I am the main developer for both components of this project, there is strong continuity across the design and implementation.
6This continuity provides a consistent approach to advanced control-flow and concurrency, with easier development, management and maintenance of the runtime in the future.
7
8I believed my Masters work would provide the background to make the Ph.D work reasonably straightforward.
9What I discovered is that interacting with kernel locking, threading, and I/O in the UNIX (Linux) operating system is extremely difficult.
10There are multiple concurrency aspects in UNIX that are poorly designed, not only for user-level threading but also for kernel-level threading.
11Basically, UNIX-based OSs are not very concurrency friendly.
12To be fair, many of these concurrency aspects were designed 30-40 years ago, when there were few multi-processor computers and concurrency knowledge was just developing.
13It is unfortunately so little has changed in the intervening years.
14
15Also, my decision to use @io_uring@ was both a positive and negative.
16The positive is that @io_uring@ supports the panoply of I/O mechanisms in UNIX;
17hence, the \CFA runtime uses one I/O mechanism to provide non-blocking I/O, rather than using @select@ to handle TTY I/O, @epoll@ to handle network I/O, and some unknown to handle disk I/O.
18It is unclear to me how I would have merged all these different I/O mechanisms into a coherent scheduling implementation.
19The negative is that @io_uring@ is new and developing.
20As a result, there is limited documentation, few places to find usage examples, and multiple errors that required workarounds.
21Given what I now know about @io_uring@, I would say it is insufficiently coupled with the Linux kernel to properly handle non-blocking I/O.
22Specifically, spinning up internal kernel threads to handle blocking scenarios is what developers already do outside of the kernel.
23Nonblocking I/O should not be handled in this way.
24
25% While \gls{uthrding} is an old idea, going back to the first multi-processor computers, it was largely set aside in the 1990s because of the complexity in making it work well between applications and the operating system.
26% Unfortunately,, a large amount of that complexity still exists, making \gls{uthrding} a difficult task for library and programming-language implementers.
27% For example, the introduction of thread-local storage and its usage in many C libraries causes the serially reusable problem~\cite{SeriallyReusable} for all \gls{uthrding} implementers.
28% Specifically, if a \gls{kthrd} is preempted, it always restarts with the same thread-local storage;
29% when a user thread is preempted, it can be restarted on another \gls{kthrd}, accessing the new thread-local storage, or worse, the previous thread-local storage.
30% The latter case causes failures when an operation using the thread-local storage is assumed to be atomic at the kernel-threading level.
31% If library implementers always used the pthreads interface to access threads, locks, and thread-local storage, language runtimes can interpose a \gls{uthrding} version of pthreads, switching the kind of threads, locks, and storage, and hence, make it safe.
32% However, C libraries are currently filled with direct declarations of thread-local storage and low-level atomic instructions.
33% In essence, every library developer is inventing their own threading mechanisms to solve their unique problem, independent from any standardize approaches.
34% This state of affairs explains why concurrency is such a mess.
35%
36% To address the concurrency mess, new programming languages integrate threading into the language rather than using the operating-system supplied interface.
37% The reason is that many sequential code-optimizations invalid correctly written concurrent programs.
38% While providing safe concurrent-code generation is essential, the underlying language runtime is still free to implement threading using kernel or user/kernel threading, \eg Java versus Go.
39% In either case, the language/runtime manages all the details to simplify concurrency and increase safety.
40
41\section{Goals}
42
43The underlying goal of this thesis is scheduling the complex hardware components that make up a computer to provide good utilization and fairness.
44However, direct hardware scheduling is only possible in the OS.
45Instead, this thesis is performing arms-length application scheduling of the hardware components through a complex set of OS interfaces that indirectly manipulate the hardware components.
46Couple that with the OS running multiple applications with its own goals for scheduling among them.
47Hence, my goal became the battle of two schedulers.
48
49This work focusses on efficient and fair scheduling of the multiple CPUs, which are ubiquitous on all modern computers.
50The levels of indirection to the CPUs are:
51\begin{itemize}
52\item
53The \CFA presentation of concurrency through multiple high-level language constructs.
54\item
55The OS presentation of concurrency through multiple kernel threads within an application.
56\item
57The OS and library presentation of disk and network I/O, and many secondary library routines that directly and indirectly use these mechanisms.
58\end{itemize}
59The key aspect of all of these mechanisms is that control flow can block, which is the enemy of the scheduler.
60Fundamentally, scheduling needs to understand all the mechanisms used by threads that affect their state changes.
61
62Interestingly, there is another major hardware component that affects threading: memory.
63How memory is organized, and when it is acquired and released, has a significant affect on thread scheduling.
64To this end, I worked closely with another graduate student, Mubeen Zulfiqar, in the development of a new memory allocator for \CFA.
65(See Mubeen's thesis~\cite{Zulfiqar22} for a discussion of how threading is managed in the \CFA memory-allocator.)
66
67% An important aspect of this approach to threading is how threads are scheduled.
68As \CFA aims to increase productivity and safety of C, while maintaining its performance, this places a huge burden on the \CFA runtime to achieve these goals.
69Productivity and safety manifest in removing scheduling pitfalls in the efficient usage of the threading runtime.
70Performance manifests in making efficient use of the underlying kernel threads that provide indirect access to the CPUs.
71
72This thesis achieves its stated contributes by presenting:
73\begin{enumerate}[leftmargin=*]
74\item
75A scalable low-latency scheduler that offers improved starvation prevention (progress guarantee) compared to other state-of-the-art schedulers, including NUMA awareness.
76\item
77The scheduler demonstrates a core algorithm that provides increased fairness through helping, as well as optimizations which virtually remove the cost of this fairness.
78\item
79An implementation of user-level \io blocking is incorporated into the scheduler, which achieves the same performance and fairness balance as the scheduler itself.
80\item
81These core algorithms are further extended with a low-latency idle-sleep mechanism, which allows the \CFA runtime to stay viable for workloads that do not consistently saturate the system.
82\end{enumerate}
83Finally, the complete scheduler is fairly simple with low-cost execution, meaning the total cost of scheduling during thread state changes is low.
84
85\section{Future Work}
86While the \CFA runtime achieves a better compromise, in term of performance and fairness, than other schedulers, I believe further improvements can be made to reduce or eliminate the few cases where performance does deteriorate.
87Fundamentally, achieving performance and starvation freedom will always be opposing goals even outside of scheduling algorithms.
88
89\subsection{Idle Sleep}
90A difficult challenge, not fully address in this thesis, is idle-sleep.
91While a correct and somewhat low-cost idle-sleep mechanism is presented, several of the benchmarks show notable performance degradation when too few \ats are present in the system.
92The idle sleep mechanism could therefore benefit from a reduction of spurious cases of sleeping.
93Furthermore, this thesis did not present any heuristic for when \procs should be put to sleep and when \procs should be woken up.
94While relaxed timestamps and topology awareness made a notable improvements in performance, neither of these techniques are used for the idle-sleep mechanism.
95
96Here are opportunities where these techniques could be use:
97\begin{itemize}
98\item
99The mechanism uses a hand-shake between notification and sleep to ensure that no \at is missed.
100\item
101The correctness of that hand-shake is critical when the last \proc goes to sleep but could be relaxed when several \procs are awake.
102\item
103Furthermore, organizing the sleeping \procs as a LIDO stack makes sense to keep cold \procs as cold as possible, but it might be more appropriate to attempt to keep cold CPU sockets instead.
104\end{itemize}
105However, using these techniques would require significant investigation.
106For example, keeping a CPU socket cold might be appropriate for power consumption reasons but can affect overall memory bandwidth.
107The balance between these approaches is not obvious.
108
109\subsection{Hardware}
110One challenge that needed to be overcome for this thesis is that the modern x86-64 processors has very few tools to implement fairness.
111\Glspl{proc} attempting to help each other inherently cause cache-coherence traffic.
112However, as mentioned in Section~\ref{helping}, relaxed requirements mean this traffic is not necessarily productive.
113In cases like this one, there is an opportunity to improve performance by extending the hardware.
114
115Many different extensions are suitable here.
116For example, when attempting to read remote timestamps for helping, it would be useful to allow cancelling the remote read if it leads to significant latency.
117If the latency is due to a recent cache invalidation, it is unlikely the timestamp is old and that helping is needed.
118As such, simply moving on without the result is likely to be acceptable.
119Another option would be to read multiple memory addresses and only wait for \emph{one of} these reads to retire.
120This approach has a similar effect, where cache-lines with more traffic would be waited on less often.
121In both of these examples, some care is needed to ensure that reads to an address \emph{sometime} retire.
122
123Note, this idea is similar to \newterm{Hardware Transactional Memory}~\cite{HTM}, which allows groups of instructions to be aborted and rolled-back if they encounter memory conflicts when being retired.
124However, I believe this feature is generally aimed at large groups of instructions.
125A more fine-grained approach may be more amenable by carefully picking which aspects of an algorithm require exact correctness and which do not.
Note: See TracBrowser for help on using the repository browser.