Scribe is a server for aggregating log data that's streamed in real time from clients. It is designed to be scalable and reliable.
See the Scribe Wiki for documentation: http://wiki.github.com/facebook/scribe
Keep up to date on Scribe development by joining the Scribe Discussion Group: http://groups.google.com/group/scribe-server/
Copyright 2007-2008 Facebook
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
scribe/
aclocal/ Contains scripts for building/linking with Boost
examples/ Contains simple examples of using Scribe
if/ Contains Thrift interface for Scribe
lib/ Contains Python package for Scribe
src/ Contains Scribe source
test/ Contain php scripts for testing scribe
[libevent] Event Notification library [boost] Boost C++ library (version 1.36 or later) [thrift] Thrift framework (version 0.4.0 or later) (use thrift with TNonBlockingServer graceful shutdown patch from here: https://github.com/praddy/thrift) [fb303] Facebook Bassline (included in thrift/contrib/fb303/) fb303 r697294 or later is required. [hadoop] optional. version 0.19.1 or higher (http://hadoop.apache.org)
These libraries are open source and may be freely obtained, but they are not provided as a part of this distribution.
Helpful tips: -Thrift, fb303, and scribe installation expects python to be installed under /usr. See PY_PREFIX option in 'configure --help' to change this path. -Some python installs do not include python site-packages in the default python include path. If python cannot find the installed packages for scribe or fb303, try setting the environment variable PYTHONPATH to the location of the installed packages. This path gets output during 'make install'. (Eg: PYTHONPATH='/usr/lib/python2.5/site-packages').
./bootstrap.sh make
(If you have multiple versions of Boost installed, see Boost configure options below.)
./bootstrap make
OR
./configure make
NOTE: After the first run with bootstrap.sh you can use "[ ./bootstrap | ./configure ] " followed by "make" to create builds with different configurations. "bootstrap" can be passed the same arguments as "configure".
Make sure that if you change configure.ac and|or add macros run "bootstrap.sh". to regenerate configure. In short whenever in doubt run "bootstrap.sh".
To find all available configure options run ./configure --help
Use only the listed options.
Examples:
./configure --disable-opt
./configure --disable-static
./configure --enable-hdfs
./configure --with-hadooppath=/usr/local/hadoop --enable-hdfs CPPFLAGS="-I/usr/local/java/include -I/usr/local/java/include/linux" LDFLAGS="-ljvm -lhdfs"
./configure --with-thriftpath=/myhome/local/thrift
./configure --with-boost=/usr/local --with-boost-system=boost_system-gcc40-mt-1_36 --with-boost-filesystem=boost_filesystem-gcc40-mt-1_36
as root: make install
See the examples directory to learn how to use Scribe.
The build process for Scribe uses autoconf macros to compile/link with Boost. These macros were written by Thomas Porschberg, Michael Tindal, and Daniel Casimiro. See the m4 files in the aclocal subdirectory for more information.