An Insight Data Engineering Fellow's Project

Initial publication date:
Last modified:

My Metro: A smart way to get around, delays

Synopsis

The project was titled: My Metro: A smart way to get around, delays.

It aimed to compare the MTA's New York City Transit subway feed's reported subway arrival times at stations to the public schedule, and note the averages for delays by train route and time, both for when the MTA announced a delay and for when it did not. In addition to this basic statistical information the project intended to allow a user to subscribe to delay notifications targeted to only those times, stations, trains and routes to which they had subscribed.

The intent was to differentiate from existing products which tend to do all of the following: Calculate the various routes available from a location to a destination, possibly with travel time estimates, announce the next arriving trains at a station, and send you updates on your frequently searched routes throughout the day. Alternatively you could look up the MTA's subway system wide status updates, which I would have linked more accurately, if they weren't currently down for service maintenance.

It was partially contained in the development of this MTA Delay Monitoring project git repo, partially in my development machine(s), and partially in a Amazon Web Services EC2 hosted mini-cluster. The latter has been turned off, and the former cannot work without it.

The genesis of this project was an Insight Data Engineering fellowship in the 2015 C term NYC program. This is relatively selective and I was glad to be able to participate. Importantly the Insight Data Science and Engineering projects are designed to be throwaway prototypes for presentation-style demonstration purposes only. In keeping with this, the prototype in question has been fairly thoroughly thrown away.

The initial project, weekly iterations:

After spending a day to identify solid next steps, I'll try to revisit the progress on the initial project. For now, here's some notes on it.

The remaining useful parts of the project are:

For the longest time all I had time to say on this project was:

Yes there is a page about Daniel Pascal Lamblin's MTA Delay Monitoring Project. More to come later.

Here's some links:

Story time

I built something in 3 weeks. It wasn't quite what I meant to build though. So I have a new plan to rebuild a more pointed version of this project. I intend to spend a day

The problems with the existing project are many, but they stem from a mismatch in my understanding of the approach used and the recommended process.

As explained to me the Insight process for a demo project is:

In order to learn to use a set of open source big-data processing tools, you should conceive of an appropriate project, spend 3 weeks setting up the tools, and building the project so as to be able to demonstrate a working knowledge of these tools.

Upon reflection is it better stated as this:

Here are a number of set solutions for various classes of problems. Assume you have a problem and use as many of these solutions to demonstrate how they can solve problems like these.

Picking the solution before the problem is an inversion of the normal engineering approach, mostly for valid educational purposes. My own trouble with the process stems from not realizing the best approach would be to synthesize all of the input and thus totally control the output. This makes faking all of the user data for an application the best choice, and it indeed led to a number of successful projects. Similarly, comparing systems with synthetic benchmarks was also an applicable use of the short time-frame available. To be fair, some very real applications were able to be produced by a minority of fellows, and to do so the best approach is sticking with a good, known, voluminous, source of data which is in as plain a text format as you can get. After all most of the tools were made to be fancy syslogd or log4j analyzers. Thus a good twitter feed based project is a good idea. Not that all of these do not also run into time allocation issues of actually configuring and running a small, but real, cluster, compared with the softer Data Science oriented project goals for the Data Science Fellows.

Bear in mind that the recommended Data Engineering tools are similar to, but each somewhat unlike various famous companies' internal solutions for the same class of problems. They are not just undocumented and under active development, which is par-for-the-course in software, leading to misguided or outdated official documentation and tutorials, but they are further rarely even fully fleshed out in regards to their installation processes, dependencies, use cases, nor APIs, which are similarly undocumented, without even decent generated documentation. If they do have Javadoc, for example, it's not uncommon the few actual comments to read like: "The partition method partitions the input." Do go on, please. About 3 weeks into this process, I considered that perhaps my time would be more productively spent on a less throw-away attempt at completely filling in Javadoc for all the libraries I was using for Hadoop/HDFS, HBase, Kafka, and Spark. Or maybe writing a tutorial on integrating one non-Hadoop serialization format into the aforementioned (like Protocol Buffers with Extensions, or using Parquet with Protocol Buffers and Extensions with HBase, and Kafka, Spark).

Speaking of a throwaway project or prototype, I can confirm that prototypes, the kinds of things one builds in a week or less, should be thrown out, lest they provide an inadequate structure to future work. However, I liked my eventual project idea and thus had a digression on repeatable, vendor agnostic server setup, during which I tried to add cluster deployment to Gradle, apply either Docker or Kubernetes to my project, and even attempted to throw out Hadoop's HDFS in favor of a better supported FS like Gluster with a Hadoop API shim on top. These are all viable options, but not only are they tricky in their own right, and full of caveats, but they also take weeks of exploration and attempts to get quite right for a basic project.