GithubHelp home page GithubHelp logo

ufosky-server / comdb2 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bloomberg/comdb2

0.0 1.0 0.0 49.68 MB

Bloomberg's distributed RDBMS

License: Other

Makefile 0.23% C 88.76% Shell 5.49% Awk 0.02% C++ 2.00% HTML 0.41% Assembly 0.07% Java 1.75% Lex 0.04% Yacc 0.36% Clojure 0.16% Python 0.05% Tcl 0.32% Objective-C 0.01% Roff 0.01% Lua 0.07% PLpgSQL 0.03% CMake 0.22%

comdb2's Introduction

Overview

Comdb2 is a clustered RDBMS built on Optimistic Concurrency Control techniques. It provides multiple isolation levels, including Snapshot and Serializable Isolation. Read/Write transactions run on any node, with the client library transparently negotiating connections to lowest cost (latency) node which is available. The client library provides transparent reconnect.

Work on Comdb2 was started at Bloomberg LP in 2004 and it has been under heavy development since. More information about the architecture of the project can be found in our VLDB 2016 paper and for more information on usage please look in the Docs.

Build

Documentation

Comdb2 documentation is included in the docs directory. It can be hosted locally with jekyll by running jekyll serve from the docs directory.

Contributing

Please refer to our contribution guide for instructions. We welcome code and idea contributions.

Quick Start

On every machine in the cluster:

  1. Make sure all machines in the cluster can talk to each other via ssh.
    Copy keys around if needed.

  2. Install prerequisites:

    Debian/Ubuntu

    sudo apt-get install -y  \
        bison                \
        build-essential      \
        cmake                \
        flex                 \
        libevent-dev         \
        liblz4-dev           \
        libprotobuf-c-dev    \
        libreadline-dev      \
        libsqlite3-dev       \
        libssl-dev           \
        libunwind-dev        \
        ncurses-dev          \
        protobuf-c-compiler  \
        tcl                  \
        uuid-dev             \
        zlib1g-dev
    

    CentOS 7/8

    On CentOS 8, enable the PowerTools repository first:

    dnf config-manager --set-enabled PowerTools
    
    yum install -y       \
        byacc            \
        cmake3           \
        epel-release     \
        flex             \
        gawk             \
        gcc              \
        gcc-c++          \
        libevent-devel   \
        libunwind        \
        libunwind-devel  \
        libuuid          \
        libuuid-devel    \
        lz4              \
        lz4-devel        \
        make             \
        openssl          \
        openssl-devel    \
        openssl-libs     \
        protobuf-c       \
        protobuf-c-devel \
        readline-devel   \
        rpm-build        \
        sqlite           \
        sqlite-devel     \
        tcl              \
        which            \
        zlib             \
        zlib-devel
    

    macOS High Sierra (experimental)

    Install Xcode and Homebrew. Then install required libraries:

    brew install cmake lz4 openssl protobuf-c readline libevent
    

    To run tests, install following:

    brew install coreutils bash gawk jq
    export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"
    

    It is recommended to increase the open file limits, at least in the sessions which start pmux and server.

  3. Build and Install Comdb2:

    mkdir build && cd build && cmake .. && make && sudo make install
    
  4. Add /opt/bb/bin to your PATH

    export PATH=$PATH:/opt/bb/bin
    
  5. Start pmux:

    pmux -n
    
  6. (optional) Comdb2 nodes identify each other by their hostnames. If the hostname of each node isn't resolvable from other nodes, we should tell Comdb2 the full domain name to use for the current node. Most setups won't have this issue.

    Tell comdb2 our FQDN.

    vi /opt/bb/etc/cdb2/config/comdb2.d/hostname.lrl
    add current machine's name, e.g.
    hostname machine-1.comdb2.example.com
  7. On one machine (say machine-1), create a database - this example creates a database called testdb stored in ~/db.

    comdb2 --create --dir ~/db testdb
    

    Note: the --dir PATH parameter is optional, and if it is omitted comdb2 uses a default root of /opt/bb/var/cdb2/ for creating a database directory to contain the database files, which is named as per the database name parameter; hence in this case /opt/bb/var/cdb2/testdb.
    The default root will have to be created explicitly with the desired permissions before invoking comdb2 --create for a database.
    In this quick start, we use the home directory to avoid obfuscating the key steps of the process.

  8. Configure the nodes in the cluster:

    vi ~/db/testdb.lrl
    add
    cluster nodes machine-1.comdb2.example.com machine-2.comdb2.example.com
    
  9. On other nodes, copy the database over:

    copycomdb2 mptest-1.comdb2.example.com:${HOME}/db/testdb.lrl
    
  10. On all nodes, start the database.

    comdb2 --lrl ~/db/testdb.lrl testdb
    

    All nodes will say 'I AM READY.' when ready.

    Note: the log dir comdb2 uses by default is /opt/bb/var/log/cdb2/ If this directory does not have permissions allowing the user to create file, there will be diagnostics output such as:

    [ERROR] error opening '/opt/bb/var/log/cdb2/testdb.longreqs' for logging: 13 Permission denied

    This condition will not impact operation of the database for the purposes of this quick start.
    ย 

  11. On any node, start using the database. You don't have any tables yet. You can add them with cdb2sql Example -

    cdb2sql testdb local 'CREATE TABLE t1 {
         schema {
             int a
         }
    }'

    Database can be queried/updated with cdb2sql:

    cdb2sql testdb local 'insert into t1(a) values(1)'
    (rows inserted=1)
    cdb2sql testdb local 'select * from t1'
    (a=1)

Comdb2 Directory Contents

Directory Description
bbinc/ Header & Generic include files
bdb/ Table layer
berkdb/ Btrees layer
cdb2api/ Client code
cdb2jdbc/ JDBC driver
cmake/ cmake configuration files
comdb2rle/ Run length encoding
contrib/ Misc useful programs that aren't part of core Comdb2
crc32c/ Checksum component
csc2/ csc2 processing
csc2files/ csc2 config files
cson/ JSON library
datetime/ Datetime component
db/ Types layer and overall glue
dfp/ Decimal number component
dlmalloc/ Local malloc version
docs/ Documentation
lua/ All things pertaining to lua VM used for stored procedures
mem/ Memory accounting subsystem
net/ Network component
pkg/ deb and rpm packaging rules
plugin/ Plugin subsystem
protobuf/ API to communicate with the server
schemachange/ Code for table create/alter/truncate/etc
sockpool/ sockpool related files
sqlite/ Sqlite VM SQL engine
tcl/ Tcl language bindings
tests/ Comdb2 test suite
tools/ Tools that are part of Comdb2 core
util/ Useful generic modules

comdb2's People

Contributors

aibolit avatar akshatsikarwar avatar danshearer avatar dennisgove avatar dependabot[bot] avatar dorinhogea avatar embiv22 avatar jmleddy avatar ldennis avatar levinem avatar markhannum avatar mihalis68 avatar mikesep avatar mistachkin avatar mohitkhullar avatar mponomar avatar mthorpe7 avatar nirbhayc avatar onceking avatar patrickmmartin avatar ppankd avatar pr-corp-acc avatar rangan337 avatar riverszhang89 avatar sblind1 avatar script3r avatar sgharms avatar tgummerer avatar timgates42 avatar timmui avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.