-
Apr
24Cucumber with Gherkin Parser
Posted in : cucumber, ruby, and bdd
The Cucumber team released some days ago a beta of the 0.7.0 version. With this release comes one thing we were waiting for a long time : Gherkin integration.
Gherkin is a new parser for the Gherkin language which features are written in. It’s using Ragel and thus generate fast parsers in pure Ruby, C (MRI extension) and Java.
A thread about the performance this brings was started in the Cukes Google Group for the v0.7.0.beta.2 release.
Here’s what we got when switching from Cucumber v0.6.4 to v0.7.0.beta.2:
162 Features 902 Scenario 12993 Steps Cucumber 0.6.4 : Parsing feature files took 1m44s Cucumber v0.7.0.beta.2 Parsing feature files took 0m1s
This means our cucumber startup time dropped from nearly 2 minutes to … instant.
Now, what’s your results ?
-
Apr
09Mirror a GIT Repository for Backup
Posted in : git
Here’s a quick way to easily maintain a complete mirror of a git repository. This is especially useful for backup.
-
Mar
05CSS3 Expression to XPath with Nokogiri
Posted in : ruby, nokogiri, and xpath
Nokogiri is such a wonderful library. Today we were trying to get the equivalent xpath query from a css expression and we found a fun way to do it automatically using Nokogiri.
Install nokogiri
First step is to have nokogiri installed
gem install nokogiri
Try it in irb
Open a terminal and start irb
irb
Then try some fun translations
As you could see the XPath queries generated are a little bit verbose, but at least you can quickly get a working query if you’re more familiar with CSS3 expressions.
-
Mar
02Easy comet with ruby and redis
Posted in : comet, ruby, redis, sinatra, async, thin, and benchmark
Today we want to try something new and funny. Let’s do some Comet aka HTTP server push using Ajax and long pulling requests as used in Flash-less chat services such as Campfire or Talker.
Sikwamic was the closest we could find from what we wish to do. Moreover when Redis is in the project, speed is usually there.
Why not take a few minute and install ruby 1.9.2 and sinatra 1.0 unless it’s already what you use.
Install redis
If you’re on Mac OS X, chances are that you’ll want to install redis using homebrew and we cannot blame you because that’s exactly what we did:
brew install redis
You should then be able to start the redis server with something like this:
redis-server `brew --prefix`/etc/redis.conf
You can stop the redis server with:
PREFIX=`brew --prefix` && kill `cat $PREFIX/var/run/redis.pid`
Another solution is to set “daemonize no” in redis.conf so that you can simply stop it with CTRL-C.
Now you also need to install the redis gem to allow ruby to talk to your redis server:
gem install redis
If you’re not on Mac OS X or don’t use homebrew, another solution is to install redis through redis-rb.
Try redis
You can test if it did work by opening an irb console and trying these commands taken from Programmer’s Paradox guide:
If the last command returns “hello world” then you have a working redis server, if you have Errno::ECONNREFUSED errors then the redis server is probably not running.
Try Sikwamic
In the unlickely event where you haven’t installed git yet, you can install it with homebrew using the command:
brew install git
Then clone Sikwamic git repository:
git clone git://github.com/dorkalev/Sikwamic.git cd Sikwamic
Sikwamic requires mongrel so you’ll have to install the gem:
gem install mongrel --source http://gems.rubyinstaller.org
Then run Sikwamic:
ruby sikwamic.rb
Open your browser.
- http://localhost:9291/set/user_55_name/john to set the current value in redis
- http://localhost:9291/get_if_modified/user_55_name/jeff should show john immediately
- http://localhost:9291/get_if_modified/user_55_name/john should wait 5 seconds for a change before giving up and finally showing john again
It’s easy to see that this behaviour can be used to return the latest messages in a chatroom for example, so it’s exactly what we wanted. But how does it scale?
Benchmark Sikwamic using ab
We used ab aka Apache Benchmark because it’s included in Xcode, so we have it anyway. If you’re not using Mac OS X, you’ll have to install it.
ab -n 2 -c 1 http://127.0.0.1:9291/get_if_modified/user_55_name/john
Simple: 2 connections, no concurrency. It logically takes 10 seconds. Now:
ab -n 2 -c 2 http://127.0.0.1:9291/get_if_modified/user_55_name/john
If you look at where Sikwamic is running, you’ll see the console is littered with errors. That’s really bad. At this point, the application can only handle one client at a time, not exactly what you would have expected. Following the author comment at the bottom of the article, we changed the redis connection to be thread-safe. Restart the server, set user_55_name to john again, now try again:
ab -n 2 -c 2 http://127.0.0.1:9291/get_if_modified/user_55_name/john
This time we have 2 completed requests in 5014ms, so it did actually work. The server was able to take both requests at the same time and keep them open (long pulling) while waiting for the key to change. Let’s try something bigger:
ab -n 100 -c 100 http://127.0.0.1:9291/get_if_modified/user_55_name/john
This time we’re doing 100 concurrent waiting queries. Time taken for tests: 5.146 seconds. It scales pretty good actually. Let’s continue:
ab -n 500 -c 500 http://127.0.0.1:9291/get_if_modified/user_55_name/john
Unluckily, all we get as a result is error “socket: Too many open files”. We must change the command to:
ulimit -n 10100 && ab -n 500 -c 500 http://127.0.0.1:9291/get_if_modified/user_55_name/john
Not much better, this time it tells: “apr_socket_connect(): Connection reset by peer”. The error seems to show a limitation of ab under Mac OS X more than a limitation of our Ruby application itself.
Benchmark Sikwamic using a custom libevent-based http client
We briefly tried httperf but hit the same limitations as when using ab. This post describes how they were able to open 10k concurrent connections with a Mac OS C client to test their application, thanks to a custom libevent-based http client written in C. Let’s try it out.
First, we’ll need to install libevent. Using homebrew, it couldn’t be easier:
brew install libevent
Then download the C source file using your browser or in terminal:
curl http://gist.github.com/raw/201450/a831b040f446fa5a4baea8a703956b75e74b0f07/c10k-test-client.c -o c10k-test-client.c
Compile instructions are at the end of the file. As we use homebrew, the compile command turns to:
gcc -o floodtest -levent -I`brew --prefix`/include -L`brew --prefix`/lib c10k-test-client.c
To show usage, run:
./floodtest --help
Good, so let’s try it against Sikwamic:
ulimit -n 10100 && ./floodtest 10000 127.0.0.1 9291 /get_if_modified/user_55_name/john
ulimit is required to avoid a dreaded “too many open files” error, and for the same reason we must kill the server and start it again with:
ulimit -n 10100 && ruby sikwamic.rb
Running the floodtest again, this time we were able to complete all 10k queries with a maximum concurrency of 494:
Not bad, but maximum concurrency isn’t achieved because the server starts responding after 5 seconds and it takes some time to create those 10k connections. So let’s ramp it to 2 minutes. At this time, sikwamic.rb looks like this:
We restart the server and run the same floodtest again. However, mongrel creates a thread per waiting connection and cannot handle more than 950 thread, thus the following error message:
Reaping 950 threads for slow workers because of 'max processors' Server overloaded with 950 processors (950 max). Dropping connection.
That’s why the floodtest crashes near 1000 connections, just when it starts to be funny.
Time to use sinatra, thin and async
At this point, we want to go beyond Sikwamic limits. Sinatra default backend is thin which can handle asynchronous responses. Thanks to the async_sinatra gem it’s even easy. Let’s install it:
gem install async_sinatra
Let’s modify our app.rb to use async_sinatra:
We’ve added the following config.ru:
With both files in current directory, we start thin this way:
ulimit -n 10100 && thin -p 9291 -e production -R config.ru start
Using your browser (same urls), you can check that the application is behaving like Sikwamic. Let’s flood this one:
ulimit -n 10000 && ./floodtest 10000 127.0.0.1 9291 /get_if_modified/user_55_name/john
This time our ruby server doesn’t throw out errors, however the floodtest itself stops with a segmentation fault. We decided to separate the client running floodtest from the server running thin. On both, we allowed more ports and files to be opened at the same time:
sudo sysctl -w net.inet.ip.portrange.first=32768 sudo sysctl -w kern.maxfiles=65536 sudo sysctl -w kern.maxfilesperproc=32768
Running the floodtest again,
-
Mar
01Installing ruby 1.9.2 and sinatra 1.0a
Posted in : ruby and sinatra
It would be sacriledge to use the old and dusty ruby 1.8.7 and stable as a dead cow sinatra version 0.9 for our experiments. Jump the wagon for cutting edge ruby 1.9.2 and sinatra 1.0a, and enjoy the speed improvements they both provide.
Install rvm
If you don’t use it yet, it’s probably time to install rvm. On Mac OS X, ruby is installed as part of the system, but you will need a compiler. The Developer Tools are on installation dvd provided with each Apple computer (usually the first thing to install on a fresh Mac OS X if you’re a developer), just remember the last version is always the prefered choice (free registration mandatory to download it from Apple). To install rvm using gem, open your terminal and type:
gem install rvm --source=http://rubygems.org/ rvm-install
Follow the instructions, check the given lines have been added successfully in your ~/.profile (or ~/.zshrc if you’re using zsh) or copy/paste them manually. Then open a new tab.
To check that you’ve rvm type:
rvm list
It should show you the system ruby provided by Xcode and no other version yet.
Install ruby 1.9.2
Once you have rvm it’s easy. However, there’s a catch. The ruby version we want doesn’t appear in the list (at least at time of writing) if you do:
rvm list --all
Ruby 1.9.2 preview 1 has some serious issues, we expected at least preview 2. The fun part is that it’s still possible despite the fact that it’s not in the list, just do:
rvm install 1.9.2-head
After a few minutes, you’ll have it installed. You still need to tell rvm that you want to switch to this version, just type:
rvm 1.9.2-head
It will only change used ruby version inside the current tab. It’s perfect if like us you just want to try it out. If however you want it to replace the system ruby as your default ruby, just type:
rvm 1.9.2-head --default
Caveat
When running on Mac OS X 10.6 (Snow Leopard) on a 64bit architecture Ruby 1.9.2-head still generate a segfault intermittently (see: Non systematic segmentation fault with autoload rubyspec). If you have the problem, you can revert to ruby 1.9.1:
rvm install 1.9.1 rvm 1.9.1
Install sinatra 1.0a
Sinatra 1.0 is coming and has numerous benefits such as template caching. Until final release, you can install version 1.0 alpha with:
gem install --pre sinatra
Conclusion
You should now be up and running with ruby 1.9.2 and sinatra 1.0 - and in my tests they proved to be pretty stable while giving a real speed boost. There’s no reason not to try them yourself unless you depend on a load of not-yet-compatible gems or plugins.