mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-08 16:03:20 +00:00
0cf480aad072757a3541942fada4e8be54e29f82
gen_segmented_compress_params.py:52:47: E226 missing whitespace around arithmetic operator gen_segmented_compress_params.py:56:64: E226 missing whitespace around arithmetic operator gen_segmented_compress_params.py:60:36: E226 missing whitespace around arithmetic operator gen_segmented_compress_params.py:60:48: E226 missing whitespace around arithmetic operator gen_segmented_compress_params.py:70:35: E226 missing whitespace around arithmetic operator gen_segmented_compress_params.py:70:48: E226 missing whitespace around arithmetic operator gen_segmented_compress_params.py:99:43: E226 missing whitespace around arithmetic operator gen_segmented_compress_params.py:106:18: E225 missing whitespace around operator gen_segmented_compress_params.py:120:5: E303 too many blank lines (2) gen_segmented_compress_params.py:200:30: E261 at least two spaces before inline comment gen_segmented_compress_params.py:200:31: E262 inline comment should start with '# ' gen_segmented_compress_params.py:218:76: E261 at least two spaces before inline comment gen_segmented_compress_params.py:219:59: E703 statement ends with a semicolon gen_segmented_compress_params.py:219:60: E261 at least two spaces before inline comment Signed-off-by: Alexys Jacob <ultrabug@gentoo.org> Message-Id: <20181104115753.4701-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%