Category Archives: Distributed Systems
Installing Tokyo Cabinet
# Tokyo cabinet requires gzip and bzip
yum install gzip bzip2 bzip2-devel
#Tokyo Cabinet
wget http://voxel.dl.sourceforge.net/sourceforge/tokyocabinet/tokyocabinet-1.4.20.tar.gz
tar zxf tokyocabinet-1.4.20.tar.gz
cd tokyocabinet-1.4.20
./configure
make
make install
#Tokyo Tyrant
wget http://voxel.dl.sourceforge.net/sourceforge/tokyocabinet/tokyotyrant-1.1.26.tar.gz
tar zxf tokyotyrant-1.1.26.tar.gz
cd tokyotyrant-1.1.26
./configure
make
make install
References:
http://sameerparwani.com/posts/installing-tokyo-cabinet-and-tokyo-tyrant
http://pacific-design.com/tokyo-cabinet/
Running Hadoop Jobs Mac OS X
This guide is written to help Cornell students using Mac OS X 10.5 with setting up a development environment for working with Hadoop and running Hadoop jobs on the Cornell Center for Advanced Computing (CAC) Hadoop cluster. This guide will walk you through compiling and running a simple example Hadoop job. More information is available at the [...]
Tokyo Cabinet
Tokyo Cabinet is a library of routines for managing a database. The database is a simple data file containing records, each is a pair of a key and a value. Every key and value is serial bytes with variable length. Both binary data and character string can be used as a key and a value. [...]