mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-22 09:30:45 +00:00
1ed63335664bcaf5598bb52ce8a223cb76785461
If an exception happens in the query path, we'll never know about it. They are currently being ignored. Investigating this, I found out that this is because the readers in storage_proxy.cc handles them - but don't log they anywhere. This patch introduces such logging. the error() function takes an sstring not an exception_ptr: this is so we can reuse it in the future to also log problems from other hosts (currently not done). We have a separate helper to extract the message from the current exception before we pass it to error() Fixes #110 Signed-off-by: Glauber Costa <glommer@cloudius-systems.com>
#Urchin
##Building Urchin
In addition to required packages by Seastar, the following packages are required by Urchin.
Submodules
Urchin uses submodules, so make sure you pull the submodules first by doing:
git submodule init
git submodule update --recursive
Building urchin on Fedora
Installing required packages:
sudo yum install yaml-cpp-devel lz4-devel zlib-devel snappy-devel jsoncpp-devel thrift-devel antlr3-tool antlr3-C++-devel libasan libubsan
Building urchin on Ubuntu 14.04
Installing required packages:
sudo apt-get install libyaml-cpp-dev liblz4-dev zlib1g-dev libsnappy-dev libjsoncpp-dev
Description
Languages
C++
72.7%
Python
26%
CMake
0.4%
GAP
0.3%
Shell
0.3%