Let’s face it: education without interaction is about as effective as shouting origami instructions at a lumberjack who is cutting down trees. Sure, your informative lessons will come in handy when the product of their work finally becomes paper, but it will be long forgotten and ultimately worthless by then. The only way a student is going to learn is if they can put their hands on what you’re teaching, walk the journey with you, and attach a positive interactive experience to the lesson.
Some time ago I was trying to solve this interaction problem. As Director of the Customer Education team at Delphix, I wanted to provide an interactive experience during classroom training that:
I couldn’t find a product that did all of these things in the way I needed; and so, I decided to build my own. It started as a python command line package and evolved into a web application and a huge suite of features. In this post, I’d like to provide an introduction to the LabAlchemy application, its overall features, and how it is used. I’ll be going over the tools used to build it in detail in later posts.
In order to fulfill bullets #1-4 above, it was clear the platform would need to be built in the cloud. Gone are the days of empty rooms full of servers that students will VNC into, or even using your own laptop as your test bed. These things worked well, but they’re not intuitive and difficult for everyone to work with. It is absolutely critical that your solution be intuitive for the learner, so they don’t fall down a rabbit hole trying to get into the labs in the first place.
And so, I decided to build the platform on top of Amazon Web Services, a rugged and incredibly diverse set of services for building the equivalent of your own datacenters in the cloud. LabAlchemy itself is composed of:
In summary, what LabAlchemy gives us is this: classroom labs on demand, at the push of a button. Each lab can have a number of students, each student gets their very own lab server and a complete Delphix stack to perform their labs. Labs are spun up in Amazon cloud, segregated into their own VPCs for easy network management, and can be stopped, started, and terminated at will.
Creating labs can be done using the Command Line Interface (CLI) or web application. Let’s look at the web app. It’s more fun.
There are a few things going on behind the scenes here; most notably logging in, which is done with SSO for Delphix employees. http://cdn3.oraclealchemist.com/wp-content/uploads/2016/11/choosetype-76... 768w, http://cdn2.oraclealchemist.com/wp-content/uploads/2016/11/choosetype-10... 1024w, http://cdn3.oraclealchemist.com/wp-content/uploads/2016/11/choosetype-90... 90w" sizes="(max-width: 300px) 100vw, 300px" />Once a user is logged in and given permissions by my team, they are able to spin up lab environments. The first step is for them to choose a classroom type.
These classroom types are defined in a YAML file that bundles different AMIs into pre-created classrooms. All of the details about each classroom type you see on this screen are baked into the YAML file. As you can see here, we have classrooms with different versions of Delphix (laid out as tabs across the top) and different configurations like Oracle, MSSQL Server, Sybase, etc.
http://cdn2.oraclealchemist.com/wp-content/uploads/2016/11/detailsentere... 768w, http://cdn1.oraclealchemist.com/wp-content/uploads/2016/11/detailsentere... 1024w, http://cdn3.oraclealchemist.com/wp-content/uploads/2016/11/detailsentere... 90w" sizes="(max-width: 300px) 100vw, 300px" />Once you’ve picked a classroom type you have to enter details about the class including: classroom name, number of students, and cost center (for internal accounting). Once the details are entered and confirmed, the job can be submitted.
Once the job is submitted, LabAlchemy allows you to quickly view the job log. Here is a sample job log, showing this classroom being spun up for 5 students in the “alchemy” classroom. As you can see, LabAlchemy automates:http://cdn1.oraclealchemist.com/wp-content/uploads/2016/11/jobdetails-76... 768w, http://cdn3.oraclealchemist.com/wp-content/uploads/2016/11/jobdetails-10... 1024w, http://cdn1.oraclealchemist.com/wp-content/uploads/2016/11/jobdetails-90... 90w" sizes="(max-width: 300px) 100vw, 300px" />
The log is updated in real time using a feature called WebSockets. We’ll cover that in a future post. Once the log is complete, LabAlchemy waits for the instances to come online, executes any final steps, and deems the classroom setup finished.
http://cdn1.oraclealchemist.com/wp-content/uploads/2016/11/insession-1-2... 768w, http://cdn2.oraclealchemist.com/wp-content/uploads/2016/11/insession-1-2... 1024w" sizes="(max-width: 300px) 100vw, 300px" />Once a classroom has been created, you can manage it from the “Current Classrooms” page. I’ve set it up to only show my classrooms (3 out of 16 total right now). Each classroom is displayed with a small status box to the right showing whether it is started, stopped, creating, etc. The “alchemy” classroom details are displayed here. There are also a number of options for the administrator:
Now we can finally get to the fun part: accessing the labs! http://cdn3.oraclealchemist.com/wp-content/uploads/2016/11/jumpbox-768x4... 768w, http://cdn2.oraclealchemist.com/wp-content/uploads/2016/11/jumpbox-1024x... 1024w" sizes="(max-width: 300px) 100vw, 300px" />Again, it’s very important to provide a clean and intuitive interface for your learners. To that end, I decided to design the idea of a student lab desktop, or jumpbox. This server is a Linux system running Ubuntu and xfce4 and a theme that more or less looks like Windows. It includes Chrome, terminal, putty, SQL Developer, Remmina RDP client, and a number of other tools to help students complete their work.
The best part though, is how they’re accessed. On the backend, LabAlchemy configures an nginx reverse proxy, which basically forwards their connection on based on a URL scheme. In this case, the scheme is http://classname.labalchemyhost.com/studentnum, where “classname” is the classroom name given on creation, “studentnum” is the student’s number (assigned after creation), and “labalchemyhost.com” is the [redacted] hostname for LabAlchemy itself. You simply go to that URL in your browser, enter the username and password provided by the instructor, and the whole lab server is available to you via HTML5 in your browser. No Flash, no plugins, just easy VNC over HTML5. For example, you can see the desktop for Student #3 in this section.
I didn’t invent this capability. I’m using an amazing open source software package called guacamole, which allows for VNC, RDP, or SSH over HTML5 with a wonderful set of additional features. In LabAlchemy, I orchestrated the configuration of guacamole for all jumpboxes, and provide access to it over the nginx reverse proxy using WebSockets. What you see is the result: a fully functional desktop in your web browser.
As you can see from the previous section, the goal was to make it easy to access these labs. No specific software requirements (like a VNC client), no complex changing IP address to take down. Just a browser and a standardized URL. But I also took that kind of ease of use functionality a bit further with some additional features:
That’s it for today! We’ve been using this system internally to provide training, do internal testing, development, and all manner of demos and learning workshops. At its peak we’ve had over 550 servers up at a single time. The best part: on average, the cost of running labs is on average about $0.75 per student per hour. The beauty of the burstable cloud.
Join me next time for more of a deep dive on the technology behind LabAlchemy: python, node.js, guacamole, and more.
The post Building Classrooms in the Cloud appeared first on Oracle Alchemist.
Recent comments
1 year 4 weeks ago
1 year 16 weeks ago
1 year 20 weeks ago
1 year 21 weeks ago
1 year 25 weeks ago
1 year 47 weeks ago
2 years 15 weeks ago
2 years 44 weeks ago
3 years 29 weeks ago
3 years 29 weeks ago