Skip to Main Menu

Art of Disorderly Programming

Do we have to decide is it chicken or egg?

Why can’t we let them come in any order and decide the outcome as cumulative effect of two events? Well I’ve stretched the analogy quite a bit. But wouldn’t it be wonderful if it can be achieved?
Often we tend to reason in terms of temporal order of events and get fixated on the order than the eventual result. In a non distributed, ensuring temporal order ensured correct eventual result. However in distributed systems temporal order is very hard to enforce and as a result ensuring correct result becomes a challenge. In my current project, there was a scenario which lent itself to similar treatment. This blog is my thoughts on the subject and hopefully it will help you to gather some interesting thoughts.

[Tangential] If we compare this with what has been studied in area of complex system, we will find a rich trove of information and solutions to deals with some of these problems.

##Scenario Consider a bank account. Let’s say there is a constraint that an account is valid if it has a valid customer associated with it. In a simplest way, it can be represented as shown below:

Alt text

For creating an account, the customer can be an existing customer or a new customer. The scenario we were trying to solve is creating an account for a new customer.

Simple Solution

In a non distributed system supporting two phase commit functionality, the solution is simple. In a single session, first create a customer then the account with customer created earlier. This is depicted in sequence diagram below:

Alt text

Reasoning about this solution is simpler. If account creation fails, customer is not created as well. At any point of time account can not be created without a customer and creation of account and customer is visible only to current execution context. The semantics and implementation of this approach is well understood as this is the primary design choice for most developers.

One of the interesting things in the solution using two phase commit is visibility of changes. Even though customer and account have been created, it will not be visible outside execution context unless it is committed (assuming that appropriate transaction isolation levels have been set). The transaction coordinator will handle commit/rollback ensuring entities in valid state is visible to external world. [Tangent] Rollback may just be an illusion as explained by Pat Helland in Open Nested Transactions.

All though two phase commit handles this via session handling, it can very well be modeled via business statues i.e. created-but-not-valid, created-and-valid, deleted etc. Business statuses are fairly common. Mostly they are used to mark logical deletion of entities for audit purposes. This technique is very useful technique and we will use in our solution.

Enter distributed system

Enter distributed system and this reasoning is no longer simple. In our case customer and account entities were managed by separate applications. The mode of communication between applications was events. This architectural choice ruled out using distributed transactions or any such form of two phase commit. So we were forced to move away from temporal reasoning i.e. order of actions in system to a solution where the final state is insensitive to order of events. For that we to find out whether this scenario can be modeled to fit eventual consistency semantics and thats where we encountered CALM.

Determining if eventual consistency is even applicable

There are efforts to ensure that programs are eventually consistent by design in presence of temporal non determinism. One such approach is CALM. CALM stands for consistency as logical monotonicity. CALM specifies when an eventual consistency paradigm is applicable and which operations can guarantee consistency in presence of temporal non determinism. From what I understood, operations which can be modeled as sets and expressed as selection, projection and join can be implemented as eventually consistent. Operations such as aggregation or anti-join can only be implemented via blocking operation.

What is monotoic logic

I found this nice example from a book on distributed computing by Mikito Takada Consider a fact that Twity is a bird. We can deduce that twity has a beak. No amount of new information is going to invalidate it. However if we have to assert, since Twity is a bird and not a penguin , hence it can fly, a new fact can invalidate our assertion (e.g. Twity is a penguin ). Hence the operation to deduce whether Twity can fly is not monotonic. Former is an example of join and later is an example of anti-join. For join operations, accuracy and consistency will increase as more input is received. However initial inference will not be invalidated. Hence it can be said that consistency will increase monotonically.

Whereas for negation operation, initial inference may be invalidated by new data. Sort of like evidence of absence is not absence of evidence.

Similarly for aggregation operations, the entire input set has to be known to arrive at consistent and accurate answer.

For systems where input arrival has characteristics of a stream i.e. it does not have a guaranteed temporal order as well as message arrival is unbounded in terms of time limit of completion we can apply CALM technique to arrive at appropriate design decisions.

Creating Account as CALM

In case of the account creation:

We can safely assert that Account is valid if ( Account has been created) and (Customer has been Created ). The statement will be true no matter order in which account or customer is created.

Now consider a case when there is additional constraints put in on customer e.g. Customer is not of type ABC, the assertion can be stated as: Account is valid if ( Account has been created) and (Customer has been Created && Customer is Not Of Type ABC )

In present form, the assertion is not guaranteed to be consistent. Suppose during customer creation a default type(e.g. YYY) is assigned and it is later updated to XYZ then the logic will short circuit at the first instance and we can not guarantee consistency in account creation.

##Our Final Solution Coming back to our solution. The diagram below explains our final solution:

Alt text

The business rule is that account is valid with it has a customer. One can always create an account without customer and assign customer to it later. We utilized this. The key idea in our solution was to create a shell account with invalid status. The shell account had information about the customer associated with it by way of pre-decided customer ID. We created customer with same customer ID. Later account domain executed logic to change account status to valid twice: at account creation and when it received any customer created event. With this scheme of things, we could in order insensitive manner ensure compliance with business rule for creation of account.

In conclusion

Creating an order insensitive solution required a leap of faith for us. The solution is not very obvious and without formal tools like CALM we would not have been able to reason about scenarios. But we came out wiser(hopefuly :-) ) ) and a lot happier.

comments powered by Disqus