Gringofts makes it easy to build a replicated, fault-tolerant, high throughput and distributed event-sourced system. This type of system can process and store critical transaction data which is valuable for an entity.
Industries and typical applications that can benefit from Gringofts (but not limited to):
- Finance - Payment processing system
- Government - Civic Engagement system
- Healthcare - Electronic medical records (EMR) software
- Retail - Orders and sales management system
- Transport - Logistics and order management system
- ...
-
Data is highly available
Gringofts enables data to be stored in multiple replicas across data centers. Different deployment models are supported to achieve various levels of availability. For example, in a typical 2-2-1 setup (two replicas in each of the first two data centers and one replica in the third) data is still available even if two data centers are down. -
Data is bit-level accurate across all replicas
Whichever replica you access, you get the exact same data. This is a top requirement for some applications such as a payment processing system, where each transaction must be accurately recorded. -
Data is secure and tamper-proof
Industry-tested and accepted standards are used to encrypt the data and a blockchain-like technology is applied to avoid data being changed.
Internal experiments show that a single cluster with a 2-1 setup (three replicas across two data centers) can process 8,000 transactions per second. Since the framework is designed to be linear-scalable, throughput can be increased with the increase of clusters. Below is a test result of a 667-cluster setup.
This is another must-have feature in most critical enterprise systems. Every write operation to a Gringofts-powered application is persisted by default and is immutable. A comprehensive toolset is also available to access this type of information.
Gringofts users are usually domain experts. They only need to focus on two things which they are very good at and Gringofts will take care of the rest:
- Domain model
This defines objects required to solve the target business problem. For example, in an Order Management system, Order is a domain object. - Domain object interaction
This defines how domain objects interact with each other. The interaction is usually modeled as two special objects called Command and Event, for example PlaceOrderCommand and OrderPlacedEvent.
Application state at any point of time in history is reproducible. This feature is especially useful when an application recovers after a crash or if users want to debug an issue.
Currently the only recommended platform is Ubuntu 16.04. We plan to support more platforms in the near future.
bash ./scripts/addSubmodules.sh
This approach requires minimum dependencies on the target OS as all of the dependencies are encapsulated in a docker image.
- Build docker image for compiling the project (one-time setup)
sudo docker build --rm -t gringofts/dependencies:v1 -f dockers/dependencies/download.Dockerfile . sudo docker build --rm -t gringofts/compile:v1 -f dockers/dependencies/install.Dockerfile .
- Build binaries
sudo docker run --workdir "$(pwd)" --mount type=bind,source="$(pwd)",target="$(pwd)" --user "$(id -u)":"$(id -g)" gringofts/compile:v1 hooks/pre-commit
- Install external dependencies (one-time setup)
sudo bash ./scripts/setupDevEnvironment.sh if ! grep 'export PATH=/usr/local/go/bin:$PATH' ~/.profile; then echo 'export PATH=/usr/local/go/bin:$PATH' >> ~/.profile; fi && \ source ~/.profile
- Build binaries
hooks/pre-commit-build
- Backed by a single-cluster setup
You can use grpc_cli to verify:
examples/run_demo_backed_by_single_cluster.sh
Sample output:./grpc_cli call 0.0.0.0:50055 ringofts.demo.protos.DemoService.Execute "value:1"
connecting to 0.0.0.0:50055 code: 200 message: "Success" Rpc succeeded with OK status
- Backed by a three-nodes-cluster setup
examples/run_demo_backed_by_three_nodes_cluster.sh
- Backed by SQLite3
examples/run_demo_backed_by_sqlite.sh
Please refer to this doc for details.
- Bin (Glen) Geng bigeng@ebay.com
- Qi (Jacky) Jia jqi1@ebay.com
Please see here for all contributors.
Special thanks to people who give your support on this project.
Copyright 2019-2020 eBay Inc.
Authors/Developers: Bin (Glen) Geng, Qi (Jacky) Jia
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Some parts of this software include 3rd party code licensed under open source licenses (in alphabetic order):
-
OpenSSL
URL: https://www.openssl.org/
License: https://www.openssl.org/source/license.html
Originally licensed under the Apache 2.0 license. -
RocksDB
URL: https://github.com/facebook/rocksdb
License: https://github.com/facebook/rocksdb/blob/master/LICENSE.Apache
Apache 2.0 license selected. -
SQLite
https://www.sqlite.org/index.html
License: https://www.sqlite.org/copyright.html
SQLite Is Public Domain -
abseil-cpp
URL: https://github.com/abseil/abseil-cpp
License: https://github.com/abseil/abseil-cpp/blob/master/LICENSE
Originally licensed under the Apache 2.0 license. -
cpplint
URL: https://github.com/google/styleguide
License: https://github.com/google/styleguide/blob/gh-pages/LICENSE
Originally licensed under the Apache 2.0 license. -
inih
URL: https://github.com/benhoyt/inih
License: https://github.com/benhoyt/inih/blob/master/LICENSE.txt Originally licensed under the New BSD license. -
gRPC
URL: https://github.com/grpc/grpc
License: https://github.com/grpc/grpc/blob/master/LICENSE
Originally licensed under the Apache 2.0 license. -
googletest
URL: https://github.com/google/googletest
License: https://github.com/google/googletest/blob/master/LICENSE
Originally licensed under the BSD 3-Clause "New" or "Revised" license. -
prometheus-cpp
URL: https://github.com/jupp0r/prometheus-cpp
License: https://github.com/jupp0r/prometheus-cpp/blob/master/LICENSE Originally licensed under the MIT license. -
spdlog
URL: https://github.com/gabime/spdlog
License: https://github.com/gabime/spdlog/blob/master/LICENSE
Originally licensed under the MIT license.