Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hicknhack-software/rails-disco
Distributed Rails with commands, events and projections.
https://github.com/hicknhack-software/rails-disco
distributed-systems event-driven event-sourcing framework ruby
Last synced: 3 months ago
JSON representation
Distributed Rails with commands, events and projections.
- Host: GitHub
- URL: https://github.com/hicknhack-software/rails-disco
- Owner: hicknhack-software
- License: mit
- Archived: true
- Created: 2013-09-03T17:43:46.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-04T14:03:28.000Z (over 9 years ago)
- Last Synced: 2024-07-19T15:02:09.910Z (4 months ago)
- Topics: distributed-systems, event-driven, event-sourcing, framework, ruby
- Language: Ruby
- Size: 1.43 MB
- Stars: 94
- Watchers: 20
- Forks: 4
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/hicknhack-software/rails-disco.svg?branch=master)](https://travis-ci.org/hicknhack-software/rails-disco)
[![Coverage Status](https://coveralls.io/repos/hicknhack-software/rails-disco/badge.png)](https://coveralls.io/r/hicknhack-software/rails-disco)
[![Dependency Status](https://gemnasium.com/hicknhack-software/rails-disco.png)](https://gemnasium.com/hicknhack-software/rails-disco)
[![Code Climate](https://codeclimate.com/github/hicknhack-software/rails-disco.png)](https://codeclimate.com/github/hicknhack-software/rails-disco)
[![Gem Version](https://badge.fury.io/rb/rails-disco.svg)](http://badge.fury.io/rb/rails-disco)
[![License](http://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/hicknhack-software/rails-disco/blob/master/LICENSE)[](https://github.com/hicknhack-software/rails-disco)
# Rails Disco - A distributed party with commands, events and projections
Rails Disco is based on Ruby on Rails and makes event sourcing easy.
Greg Young showed the advantages of event sourcing multiple times. [GOTO Conference Talk](http://youtu.be/hv2dKtPq0ME) (Chicago 2014)Rails Disco consists out of three main parts: commands, events and projections.
_Commands_ will be created and executed by actions of your controller, instead of directly manipulating your model. These commands are only the order to do something and after possible validations, the framework executes them by creating an event and finally manipulating the model.
The _events_ will be all stored in a separate database and also published to all projections, where they can be processed to update the projections model/database
Finally _projections_ are your representation of your data, they get the events and process them, to get the needed information for building up their models.
# Requirements
* At the moment Rails Disco uses [Rails 4](https://github.com/rails/rails). Maybe it works with Rails 3.2, but we didn't test that.
* Because Rails Disco relies on [bunny](https://github.com/ruby-amqp/bunny) for sending the events from the domain to the projection, you need [RabbitMQ](http://www.rabbitmq.com/download.html) on your system.
* Any Server which is capable of streaming, e.g. puma or thin (standard Rails server WEBrick will **not** work). If you are facing problems installing puma on Windows, here is a [tutorial](https://github.com/hicknhack-software/rails-disco/wiki/Installing-puma-on-windows).
# Getting Started
1. Install Rails Disco at the command prompt
gem install rails-disco
1. At the command prompt, create a new Rails Disco application.
disco new myapp
where `myapp` is the name of you application.
(Note: You can also add Rails Disco to an existing Rails application. Simply omit the application name and run the command inside your application.)
1. Change directory to `myapp` and migrate the databases:
cd myapp
rake disco:migrate:setupThis will operate on the Rails (= projection) and the domain database.
You can configure the domain database and more Rails Disco related configurations in `config/disco.yml`.1. If you just want to look a some standard server output, start the disco server (Remember to use a server which is capable of streaming, which means not WEBrick). Else go ahead and skip this point.
disco server
This will start the domain, the projection and the web server, but you won't see much of the disco yet.
1. For a humble start, let's create the scaffold for a simple blog system:
disco generate scaffold Post title:string text:text
The syntax is leaned to Rails' generate style and it basically creates a resource Post with a title and a text attribute.
1. Now that we have something to rely on, lets migrate and see it in action:
rake disco:migrate
disco server1. Go to [http://localhost:3000/posts](http://localhost:3000/posts) and you'll see an empty list of our posts with a link to create a new one. Go ahead and create one.
If you watch the console output, you can see that an event is created, published and processed by a projection.1. If you look at your databases, you see in both of them a table `posts`, which contains your freshly created post.
The domain database also contains a table `domain_events`. There you find an event for your post creation. Lets see this in action.1. Clear your projection database and restart the server.
rake disco:db:drop
rake disco:migrate
disco serverYou will see some console output, the projection requests the missing posts from the domain. Finally the state of your projection database will be restored.
1. That's it for now, have fun with it. For more information take a look at the [wiki](https://github.com/hicknhack-software/rails-disco/wiki) and the [examples](https://github.com/hicknhack-software/rails-disco-examples)