mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-08 16:03:20 +00:00
43a04ad6935494299ae9f801eefcddff4ca739df
fix_system_distributed_tables.py:28:20: E203 whitespace before ':' fix_system_distributed_tables.py:29:20: E203 whitespace before ':' fix_system_distributed_tables.py:30:20: E203 whitespace before ':' fix_system_distributed_tables.py:31:20: E203 whitespace before ':' fix_system_distributed_tables.py:33:20: E203 whitespace before ':' fix_system_distributed_tables.py:34:23: E203 whitespace before ':' fix_system_distributed_tables.py:35:23: E203 whitespace before ':' fix_system_distributed_tables.py:39:20: E203 whitespace before ':' fix_system_distributed_tables.py:40:20: E203 whitespace before ':' fix_system_distributed_tables.py:41:20: E203 whitespace before ':' fix_system_distributed_tables.py:42:20: E203 whitespace before ':' fix_system_distributed_tables.py:43:20: E203 whitespace before ':' fix_system_distributed_tables.py:44:20: E203 whitespace before ':' fix_system_distributed_tables.py:45:20: E203 whitespace before ':' fix_system_distributed_tables.py:46:20: E203 whitespace before ':' fix_system_distributed_tables.py:47:20: E203 whitespace before ':' fix_system_distributed_tables.py:48:20: E203 whitespace before ':' fix_system_distributed_tables.py:52:20: E203 whitespace before ':' fix_system_distributed_tables.py:53:20: E203 whitespace before ':' fix_system_distributed_tables.py:54:20: E203 whitespace before ':' fix_system_distributed_tables.py:55:20: E203 whitespace before ':' fix_system_distributed_tables.py:56:20: E203 whitespace before ':' fix_system_distributed_tables.py:57:20: E203 whitespace before ':' fix_system_distributed_tables.py:58:20: E203 whitespace before ':' fix_system_distributed_tables.py:59:20: E203 whitespace before ':' fix_system_distributed_tables.py:60:20: E203 whitespace before ':' fix_system_distributed_tables.py:61:20: E203 whitespace before ':' fix_system_distributed_tables.py:62:20: E203 whitespace before ':' fix_system_distributed_tables.py:66:19: E203 whitespace before ':' fix_system_distributed_tables.py:67:19: E203 whitespace before ':' fix_system_distributed_tables.py:72:19: E203 whitespace before ':' fix_system_distributed_tables.py:73:19: E203 whitespace before ':' fix_system_distributed_tables.py:74:19: E203 whitespace before ':' fix_system_distributed_tables.py:78:19: E203 whitespace before ':' fix_system_distributed_tables.py:79:19: E203 whitespace before ':' fix_system_distributed_tables.py:80:19: E203 whitespace before ':' fix_system_distributed_tables.py:84:19: E203 whitespace before ':' fix_system_distributed_tables.py:85:19: E203 whitespace before ':' fix_system_distributed_tables.py:89:19: E203 whitespace before ':' fix_system_distributed_tables.py:90:19: E203 whitespace before ':' fix_system_distributed_tables.py:91:19: E203 whitespace before ':' fix_system_distributed_tables.py:95:22: E203 whitespace before ':' fix_system_distributed_tables.py:96:22: E203 whitespace before ':' fix_system_distributed_tables.py:99:1: E302 expected 2 blank lines, found 0 fix_system_distributed_tables.py:103:72: E201 whitespace after '[' fix_system_distributed_tables.py:103:82: E202 whitespace before ']' fix_system_distributed_tables.py:105:43: E201 whitespace after '[' fix_system_distributed_tables.py:105:53: E202 whitespace before ']' fix_system_distributed_tables.py:111:16: E713 test for membership should be 'not in' fix_system_distributed_tables.py:118:20: E713 test for membership should be 'not in' fix_system_distributed_tables.py:135:25: E722 do not use bare 'except' fix_system_distributed_tables.py:138:5: E722 do not use bare 'except' fix_system_distributed_tables.py:144:1: E305 expected 2 blank lines after class or function definition, found 0 fix_system_distributed_tables.py:145:47: E251 unexpected spaces around keyword / parameter equals fix_system_distributed_tables.py:145:49: E251 unexpected spaces around keyword / parameter equals fix_system_distributed_tables.py:160:1: W391 blank line at end of file Signed-off-by: Alexys Jacob <ultrabug@gentoo.org> Message-Id: <20181104113001.22783-1-ultrabug@gentoo.org>
…
…
…
…
…
Scylla
Quick-start
$ git submodule update --init --recursive
$ sudo ./install-dependencies.sh
$ ./configure.py --mode=release
$ ninja-build -j4 # Assuming 4 system threads.
$ ./build/release/scylla
$ # Rejoice!
Please see HACKING.md for detailed information on building and developing Scylla.
Running Scylla
- Run Scylla
./build/release/scylla
- run Scylla with one CPU and ./tmp as data directory
./build/release/scylla --datadir tmp --commitlog-directory tmp --smp 1
- For more run options:
./build/release/scylla --help
Building Fedora RPM
As a pre-requisite, you need to install Mock on your machine:
# Install mock:
sudo yum install mock
# Add user to the "mock" group:
usermod -a -G mock $USER && newgrp mock
Then, to build an RPM, run:
./dist/redhat/build_rpm.sh
The built RPM is stored in /var/lib/mock/<configuration>/result directory.
For example, on Fedora 21 mock reports the following:
INFO: Done(scylla-server-0.00-1.fc21.src.rpm) Config(default) 20 minutes 7 seconds
INFO: Results and/or logs in: /var/lib/mock/fedora-21-x86_64/result
Building Fedora-based Docker image
Build a Docker image with:
cd dist/docker
docker build -t <image-name> .
Run the image with:
docker run -p $(hostname -i):9042:9042 -i -t <image name>
Contributing to Scylla
Description
Languages
C++
72.1%
Python
26.7%
CMake
0.3%
GAP
0.3%
Shell
0.3%