This is my first OMSCS course. It's not clear to me how it has such a high
rating in OMS Central. Prof. Kishore has a likeable personality and seems
to care about his students. I suspect that this is the key reason for the high
rating.
Also, I'm not sure if this course should be called "advanced operating systems". A more fitting name might be "miscellaneous systems topics".
Content
The course material itself is mediocre. Material appears to not have been
updated since the course's inception. This pertains to both lecture videos and
projects.
The lecture videos are presented in a way which is neither precise nor
concise. One sentence may be repeatedly stated in several different ways.
This is an indication that the presenter is unsure how best to present an
idea. The result is that the audience may lose his or her attention when
the same idea is re-worded slightly and re-presented again and again. You
essentially fall asleep watching the lecture videos because of this.
The curriculum includes some serisouly questionable subjects, ones that
are not appropriate to be part of an operating systems course. Examples
include Java EJB and NuPRL.
Projects
The projects' starting states have all the same bugs described by past reviews.
These bugs seem to get carried forward semester after semeter. It's not clear
if it is the TA's or the professor's responsibility to fix these bugs - either
way, these bugs aren't getting fixed for future semesters.
The projects, even though poorly maintained, are all fairly simple and doable. As you will see, none of the project really involves working on operating systems or some component of operating systems.
Project 1 (C)
Project 1 requires writing two C programs that make use of the libvirt API to
manage VMs. Program one dynamically allocates CPU to a set of VMs in order to
balance underlying physical CPU utilization. Program two dynamically allocates
memory to a set of VMs.
The libvirt API has a large API surface that you'll have to untangle.
This project will likely take 10 to 20 hours, depending on how far you want to
go on tweaking your algorithms.
Project 2 (C)
This one requires implementing a few synchronization barriers. Two for
synchronizing threads which share the same address space, and two more for
synchronizing processes that do not share the same address space. For the
former, you are supposed to use the openMP framework. For the latter, you are
supposed to the use the MPI framework.
You will do performance testing of your barriers in the Georgia Tech PACE
cluster, which uses the PSB batch job management system. You will likely
encounter significant problems with how to specify the PSB job specification in
a way that gets you the compute resources you need and the affinity that you
need, unless the courses updates the project instruction.
In the end, you write a summary to discuss performance.
This project will likely take 10 to 20 hours.
Project 3 (C++)
This project requires you to write a gRPC server which uses a thread pool you
implement to respond to client requests. Each response to a client request
invovles first querying a number of backend gRPC services, getting their
responses, and respond back to the client with the collective backend
responses. You must use the gRPC c++ async server implementation so as to avoid
using the gRPC c++ library's built-in thread pool.
If you haven't worked with c++ before, you will find out that all the bad
things you hear about c++ are true from doing this project.
This project will likely take 5 hours. If you haven't worked with c++ before, add 10 more hours for the struggle you will encounter with c++.
Project 4 (C++)
This project requires you to implement MapReduce using gRPC, with some
rudimentary fault tolerance implemented.
This project will likely take 10 to 15 hours.