This document provides an overview of GitHub and its technical architecture presented by Chris Wanstrath. Some key points:
- GitHub started as a git hosting site but became a social coding platform where users can see friends' activity and leave comments.
- It uses Ruby on Rails for the main codebase, Resque for background jobs, MySQL for the database, and nginx, unicorn, and memcached.
- Git operations are handled by Grit and communicated to file servers via the BERT-RPC based Smoke protocol.
- Caching, asset optimization, and AJAX loading are used extensively to improve performance. Monitoring tools include Nagios, Resque Web, Haystack, and CollectD.
11. Originally we just wanted to make a git hosting site.
In fact, that was the first tagline.
12. git repository hosting
git repository hosting.
That’s what we wanted to do: give us and our friends a place to share git repositories.
13. a brief
history
let’s start with a brief history
14. It’s not easy to setup a git repository. It never was.
But back in 2007 I really wanted to.
15. I had seen Torvalds’ talk on YouTube about git.
But it wasn’t really about git - it was more about distributed version control.
It answered many of my questions and clarified DVCS ideas.
I still wasn’t sold on the whole idea, and I had no idea what it was good for.
16. CVS
is stupid
But when Torvalds says “CVS is stupid”
17. and so are
you
“and so are you,” the natural reaction for me is...
19. At the time the biggest and best free hosting site was repo.or.cz.
20. Right after I had seen the Torvalds video, the god project was posted up on repo.or.cz
I was interested in the project so I finally got a chance to try it out with some other people.
21. Namely this guy, Tom Preston-Werner.
Seen here in his famous “I put ketchup on my ketchup” shirt.
22. I managed to make a few contributions to god before realizing that repo.or.cz was not different.
git was not different.
Just more of the same - centralized, inflexible code hosting.
23. This is what I always imagined.
No rules. Project belongs to you, not the site. Share, fork, change - do what you want.
Give people tools and get out of their way. Less ceremony.
24. So, we set off to create our own site.
A git hub - learning, code hosting, etc.
28. Unleash Your Code
Join 500,000 coders with
over 1,500,000 repositories
What’s special about GitHub is that people use the site in spite of git.
Many git haters use the site because of what it is - more than a place to host
git repositories, but a place to share code with others.
30. 2008 january
We launched the beta in January at Steff’s on 2nd street in San Francisco’s SOMA district.
The first non-github user was wycats, and the first non-github project was merb-core.
They wanted to use the site for their refactoring and 0.9 branch.
31. 2008 april
A few short months after that we launched to the public.
32. Along the way we managed to pick up Scott Chacon, our VP of R&D
48. the web site
As everyone knows, a web “site” is really a bunch of different components.
Some of them generate and deliver HTML to you, but most of them don’t.
Our site consists of four major code “frameworks” or “apps”
53. rails
We use Ruby on Rails 2.2.2 as our web framework.
It’s kept up to date with all the security patches and includes custom patches we’ve added
ourselves, as well as patches we’ve cherry-picked from more recent versions of Rails.
54. rails
GitHub is about 20,000 lines of Rails code, not counting Rails itself, plugins, or gems.
55. We found out Rails was moving to GitHub in March 2008, after we had reached out to
them and they had turned us down.
So it was a bit of a surprise.
74. We badly wanted this, but didn’t want to invest the time upgrading.
So using a few open source libraries we’ve wrapped our Rails 2.2.2 instance in Rack.
75. Now we can use awesome Rack middleware like Rack::Bug in GitHub
76. Coders created and submitted dozens of Rack middleware for the Coderack competition last year.
I was a judge so I got the see the submissions already. Some of my favorite
were
82. unicorn
- 0 downtime deploys
- protects against bad rails startup
- migrations handled old fashioned way
83. nginx
For serving static content and slow clients, we use nginx
nginx is pretty much the greatest http server ever
it’s simple, fast, and has a great module system
96. smoke
Kinda.
Eventually we needed to move of our git repositories off of our web servers
Today our HTTP servers are distinct from our git servers. The two communicate using smoke
97. smoke
“Grit in the cloud”
Instead of reading and writing from the disk, Grit makes Smoke calls
The reading and writing then happens on our file servers
99. bert-rpc
bert : erlang ::
json : javascript
BERT is an erlang-based protocol
BERT-RPC is really great at dealing with large binaries
Which is a lot of what we do
100. bert-rpc
we have four file servers, each running bert-rpc servers
our front ends and job queue make RPC calls to the backend servers
103. chimney
We have a proprietary library called chimney
It routes the smoke. I know, don’t blame me.
104. chimney
All user routes are kept in Redis
Chimney is how our BERT-RPC clients know which server to hit
It falls back to a local cache and auto-detection if Redis is down
105. chimney
It can also be told a backend is down.
Optimized for connection refused but in reality that wasn’t the real problem - timeouts were
106. proxymachine
All anonymous git clones hit the front end machines
the git-daemon connects to proxymachine, which uses chimney to proxy your
connection between the front end machine and the back end machine (which holds
the actual git repository)
very fast, transparent to you
108. ssh
Sometimes you need to access a repository over ssh
In those instances, you ssh to an fe and we tunnel your connection to
the appropriate backend
To figure that out we use chimney
123. solr
Solr is basically an HTTP interface on top of Lucene. This makes it pretty simple
to use in your code.
We use solr because of its ability to incrementally add documents to
an index.
124. Here I am searching for my name in source code
125. solr
We’ve had some problems making it stable but luckily the guys at Pivotal
have given us some tips
Like bumping the Java heap size.
Whatever that means
131. fragments
Formerly we invalidated most of our fragments using a generation scheme,
where you put a number into a bunch of related keys and increment it
when you want all those caches to be missed (thus creating new cache
entries with fresh data)
132. fragments
But we had high cache eviction due to low ram and hardware constraints, and found
that scheme did more harm than good.
We also noticed some cached data we wanted to remain forever was being evicted due
to the slabs with generational keys filling up fast
133. page
We cache entire pages using nginx’s memcached module
Lots of HTML, but also other data which gets hit a lot and changes rarely:
134. page
- network graph json
- participation graph data
Always looking to stick more into page caches
135. object
We do basic object caching of ActiveRecord objects such as
repositories and users all over the place
Caches are invalidated whenever the objects are saved
136. associations
We also cache associations as arrays of IDs
Grab the array, then do a get_multi on its contents to get a list of objects
That way we don’t have to worry about caching stale objects
141. walker
For most big apps, you need to write a caching layer
that knows your business domain
Generic, catch-all caching libraries probably won’t do
152. sha asset id
Instead of using timestamps for asset ids, which may end up hitting the disk
multiple times on each request, we set the asset id to be the sha of the last commit
which modified a javascript or css file
156. bundling
google’s closure compiler for javascript
we don’t use the most aggressive setting because it means changing
your javascript to appease the compression gods,
which we haven’t committed to yet
157. scripty 301
Again, for most of these tricks you need to really pay
attention to your app.
One example is scriptaculous’ wiki
158. scripty 301
When we changed our wiki URL structure, we setup dynamic 301 redirects
for the old urls.
Scriptaculous’ old wiki was getting hit so much we put the redirect into nginx itself -
this took strain off our web app and made the redirects happen almost instantly
159. ajax loading
We also load data in via ajax in many places.
Sometimes a piece of information will just take too long to retrieve
In those instances, we usually load it in with ajax
162. If Walker sees that it doesn’t have all the information it needs, it kicks off a job
to stick that information in memcached.
163. We then periodically hit a URL which checks if the information is in memcached or not.
If it is, we get it and rewrite the page with the new information.
180. test unit
We mostly use Ruby’s test/unit.
We’ve experimented with other libraries including test/spec, shoulda, and RSpec, but in the end
we keep coming back to test/unit
181. git fixtures
As many of our fixtures are git repositories, we specify in the test what sha
we expect to be the HEAD of that fixture.
This means we can completely delete a git repository in one test, then have it back in
pristine state in another. We plan to move all our fixtures to a similar git-system in the future.
190. staging
We also always deploy the current branch to staging
This means you can be working on your branch, someone else can be working on theirs,
and you don’t need to worry about reconciling the two to test out a feature
One of the best parts of Git
193. security@
github.com
we get weekly emails to our security email (that people find on the security page)
and people are always grateful when we can reassure them or a answer their question
194. regular audits
if you can, find a security consultant to poke your site for XSS vulnerabilities
having your target audience be developers helps, too