Baker is a library that reduces the effort to orchestrate (micro)service-based process flows. Developers declare the orchestration logic in a recipe. A recipe is made out of interactions (system calls), ingredients (data) and events. A visual representation (shown below) of the recipe allows product owners, architects and developers to talk the same language.
The official documentation website of Baker: Official Documentation.
An introductory presentation of Baker: Baker talk @ Amsterdam.Scala meetup.
A talk about Baker at the Scale By the Bay 2017 conference: Declare, verify and execute microservices-based process flows.
For an example web-shop recipe in Scala, see the examples sub-project. Java developers new to Baker can use this workshop to get familiar with the library by reading the workshop assignment PDF document and making the unit tests green.
WebShop Recipe:
val webShopRecipe: Recipe =
Recipe("WebShop")
.withInteractions(
validateOrder,
manufactureGoods
.withRequiredEvents(valid, paymentMade),
shipGoods,
sendInvoice
.withRequiredEvent(goodsShipped)
)
.withSensoryEvents(
customerInfoReceived,
orderPlaced,
paymentMade)
A visual representation of the WebShop recipe looks like the following, where the events are colored in gray, ingredients in orange and interactions in lilac:
Baker consists of a DSL that allows developers to choose interactions from a catalogue and re-use them in their own recipes. Developers can use Java or Scala as a programming language.
Let's look at three different products that a bank would sell to customers:
Checking Account | Savings Account | Customer Onboarding |
---|---|---|
Verify Person's Identity | Verify Person's Identity | Verify Person's Identity |
Register Person | Register Person | Register Person |
Open Checking Account | Open Savings Account | n/a |
Issue Debit Card | n/a |
n/a |
Send Message | Send Message | Send Message |
Register Product Possession | Register Product Possession | n/a |
As you can see, there are similarities in the products.
It becomes interesting when you're able to combine the same interactions in different recipes. New functionality can then be built quickly by re-using what's already available.
Applying Baker will only be successful if you make sure that:
- You've compared the products your company is selling and there are similarities;
- You've defined a catalogue of those capabilities necessary to deliver the products from;
- Each capability (interaction in Baker terms) is accessible via an API of any sort (could be a micro-service, web-service, so on);
To get started with SBT, simply add the following to your build.sbt file:
libraryDependencies += "com.ing.baker" %% "baker-recipe-dsl" % version
libraryDependencies += "com.ing.baker" %% "baker-runtime" % version
libraryDependencies += "com.ing.baker" %% "baker-compiler" % version
From 1.3.x to 2.0.x we cross compile to both Scala 2.11 and 2.12.
Earlier releases are only available for Scala 2.11.
From 3.x.x we support only Scala 2.12.
Execute the following commands in your terminal to get started with the development of Baker:
$ git clone https://github.com/ing-bank/baker.git
$ cd baker
$ sbt
> compile
> test
Baker can turn a recipe into a DOT representation. It can then be visualized using the following web-site (http://www.webgraphviz.com).
Another way to visualize the recipe is to install Graphviz on your development machine. On your Mac, install using brew:
brew install graphviz
To test that all works fine, save the following text in a graph.dot file:
digraph d {
A [label="Hello"]
B [label="World"]
C [label="Everyone"]
A -> { B C }
}
Assuming you have the graphviz dot
command you can create an SVG by running:
dot -v -Tsvg -O graph.dot
Alternatively you can use graphviz-java to generate the SVG in your code:
import guru.nidi.graphviz.engine.{Format, Graphviz}
import guru.nidi.graphviz.parse.Parser
val g = Parser.read(getRecipeVisualization)
Graphviz.fromGraph(g).render(Format.SVG).toString
Preview the results:
open graph.dot.svg
You are all set to visualize your recipes now!
To use custom fonts, see http://www.graphviz.org/doc/fontfaq.txt.
- DOT Graph Description Language (https://en.wikipedia.org/wiki/DOT_(graph_description_language)) - explains more about the format Baker uses to produce a graphical representation of the recipe;
- Order fulfillment (https://en.wikipedia.org/wiki/Order_fulfillment) - gives an idea about the theory behind order fulfillment strategies. As you are in the business of producing and selling products to people, you are in the business of fulfillment;
Baker uses free open-source license from Xanitizer for code security scans.