mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-22 17:40:34 +00:00
464c96d90188fffbed14059ea53b3a53f4826d63
The code is merge_tables() is a twisted maze of tricks that is hard to restructure so that event notification can be done cleanly like with keyspaces. The problem there is that we need to run bunch of database operations for the merging that really need to happen on all the shards. To fix the issue, lets cheat a little and simply only run CQL event notification on cpu zero. This seems to fix cluster schema propagation issues in urchin-dtest. I can now run TestSimpleCluster.simple_create_insert_select_test without any additional delays inserted into the test code. Signed-off-by: Pekka Enberg <penberg@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
Building urchin on Fedora
Installing required packages:
sudo yum install yaml-cpp-devel lz4-devel zlib-devel snappy-devel jsoncpp-devel
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.1%
CMake
0.3%
GAP
0.3%
Shell
0.3%