{"id":13419738,"url":"https://github.com/scylladb/scylladb","last_synced_at":"2025-05-14T07:07:51.548Z","repository":{"id":25029893,"uuid":"28449431","full_name":"scylladb/scylladb","owner":"scylladb","description":"NoSQL data store using the Seastar framework, compatible with Apache Cassandra and Amazon DynamoDB","archived":false,"fork":false,"pushed_at":"2025-05-06T22:45:35.000Z","size":212168,"stargazers_count":14466,"open_issues_count":3507,"forks_count":1375,"subscribers_count":336,"default_branch":"master","last_synced_at":"2025-05-07T06:59:05.476Z","etag":null,"topics":["c-plus-plus","cassandra","cpp","database","nosql","scylla","seastar"],"latest_commit_sha":null,"homepage":"http://scylladb.com","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/scylladb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE-ScyllaDB-Source-Available.md","code_of_conduct":null,"threat_model":null,"audit":"audit/CMakeLists.txt","citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2014-12-24T13:16:33.000Z","updated_at":"2025-05-07T06:03:12.000Z","dependencies_parsed_at":"2024-04-01T12:24:37.835Z","dependency_job_id":"d9c9b7c5-4c5a-46ad-a847-657c11aa2332","html_url":"https://github.com/scylladb/scylladb","commit_stats":{"total_commits":33043,"total_committers":182,"mean_commits":"181.55494505494505","dds":0.9225554580395242,"last_synced_commit":"a29b8cd02ba269d4b1151904574913d4cbd45000"},"previous_names":["scylladb/scylla"],"tags_count":419,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scylladb%2Fscylladb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scylladb%2Fscylladb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scylladb%2Fscylladb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scylladb%2Fscylladb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scylladb","download_url":"https://codeload.github.com/scylladb/scylladb/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254092650,"owners_count":22013290,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c-plus-plus","cassandra","cpp","database","nosql","scylla","seastar"],"created_at":"2024-07-30T22:01:20.117Z","updated_at":"2025-05-14T07:07:51.524Z","avatar_url":"https://github.com/scylladb.png","language":"C++","funding_links":[],"categories":["TODO scan for Android support in followings","C++","Databases","Projects","数据库管理系统","Awesome ScyllaDB Projects","database"],"sub_categories":["Column Databases","Databases","网络服务_其他","General"],"readme":"# Scylla\n\n[![Slack](https://img.shields.io/badge/slack-scylla-brightgreen.svg?logo=slack)](http://slack.scylladb.com)\n[![Twitter](https://img.shields.io/twitter/follow/ScyllaDB.svg?style=social\u0026label=Follow)](https://twitter.com/intent/follow?screen_name=ScyllaDB)\n\n## What is Scylla?\n\nScylla is the real-time big data database that is API-compatible with Apache Cassandra and Amazon DynamoDB.\nScylla embraces a shared-nothing approach that increases throughput and storage capacity to realize order-of-magnitude performance improvements and reduce hardware costs.\n\nFor more information, please see the [ScyllaDB web site].\n\n[ScyllaDB web site]: https://www.scylladb.com\n\n## Build Prerequisites\n\nScylla is fairly fussy about its build environment, requiring very recent\nversions of the C++23 compiler and of many libraries to build. The document\n[HACKING.md](HACKING.md) includes detailed information on building and\ndeveloping Scylla, but to get Scylla building quickly on (almost) any build\nmachine, Scylla offers a [frozen toolchain](tools/toolchain/README.md),\nThis is a pre-configured Docker image which includes recent versions of all\nthe required compilers, libraries and build tools. Using the frozen toolchain\nallows you to avoid changing anything in your build machine to meet Scylla's\nrequirements - you just need to meet the frozen toolchain's prerequisites\n(mostly, Docker or Podman being available).\n\n## Building Scylla\n\nBuilding Scylla with the frozen toolchain `dbuild` is as easy as:\n\n```bash\n$ git submodule update --init --force --recursive\n$ ./tools/toolchain/dbuild ./configure.py\n$ ./tools/toolchain/dbuild ninja build/release/scylla\n```\n\nFor further information, please see:\n\n* [Developer documentation] for more information on building Scylla.\n* [Build documentation] on how to build Scylla binaries, tests, and packages.\n* [Docker image build documentation] for information on how to build Docker images.\n\n[developer documentation]: HACKING.md\n[build documentation]: docs/dev/building.md\n[docker image build documentation]: dist/docker/debian/README.md\n\n## Running Scylla\n\nTo start Scylla server, run:\n\n```bash\n$ ./tools/toolchain/dbuild ./build/release/scylla --workdir tmp --smp 1 --developer-mode 1\n```\n\nThis will start a Scylla node with one CPU core allocated to it and data files stored in the `tmp` directory.\nThe `--developer-mode` is needed to disable the various checks Scylla performs at startup to ensure the machine is configured for maximum performance (not relevant on development workstations).\nPlease note that you need to run Scylla with `dbuild` if you built it with the frozen toolchain.\n\nFor more run options, run:\n\n```bash\n$ ./tools/toolchain/dbuild ./build/release/scylla --help\n```\n\n## Testing\n\n[![Build with the latest Seastar](https://github.com/scylladb/scylladb/actions/workflows/seastar.yaml/badge.svg)](https://github.com/scylladb/scylladb/actions/workflows/seastar.yaml) [![Check Reproducible Build](https://github.com/scylladb/scylladb/actions/workflows/reproducible-build.yaml/badge.svg)](https://github.com/scylladb/scylladb/actions/workflows/reproducible-build.yaml) [![clang-nightly](https://github.com/scylladb/scylladb/actions/workflows/clang-nightly.yaml/badge.svg)](https://github.com/scylladb/scylladb/actions/workflows/clang-nightly.yaml)\n\nSee [test.py manual](docs/dev/testing.md).\n\n## Scylla APIs and compatibility\nBy default, Scylla is compatible with Apache Cassandra and its API - CQL.\nThere is also support for the API of Amazon DynamoDB™,\nwhich needs to be enabled and configured in order to be used. For more\ninformation on how to enable the DynamoDB™ API in Scylla,\nand the current compatibility of this feature as well as Scylla-specific extensions, see\n[Alternator](docs/alternator/alternator.md) and\n[Getting started with Alternator](docs/alternator/getting-started.md).\n\n## Documentation\n\nDocumentation can be found [here](docs/dev/README.md).\nSeastar documentation can be found [here](http://docs.seastar.io/master/index.html).\nUser documentation can be found [here](https://docs.scylladb.com/).\n\n## Training\n\nTraining material and online courses can be found at [Scylla University](https://university.scylladb.com/).\nThe courses are free, self-paced and include hands-on examples. They cover a variety of topics including Scylla data modeling,\nadministration, architecture, basic NoSQL concepts, using drivers for application development, Scylla setup, failover, compactions,\nmulti-datacenters and how Scylla integrates with third-party applications.\n\n## Contributing to Scylla\n\nIf you want to report a bug or submit a pull request or a patch, please read the [contribution guidelines].\n\nIf you are a developer working on Scylla, please read the [developer guidelines].\n\n[contribution guidelines]: CONTRIBUTING.md\n[developer guidelines]: HACKING.md\n\n## Contact\n\n* The [community forum] and [Slack channel] are for users to discuss configuration, management, and operations of ScyllaDB.\n* The [developers mailing list] is for developers and people interested in following the development of ScyllaDB to discuss technical topics.\n\n[Community forum]: https://forum.scylladb.com/\n\n[Slack channel]: http://slack.scylladb.com/\n\n[Developers mailing list]: https://groups.google.com/forum/#!forum/scylladb-dev\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscylladb%2Fscylladb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscylladb%2Fscylladb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscylladb%2Fscylladb/lists"}