WIP
This document is still a work in process. Please email: [email protected] for ideas and contributions.
The PAAS revolution has paved a way for a new class of internet business. Platform services like: Heroku, WebSolr & Joyent are breaking barriers for application developers by removing the burden of server management. For instance, Heroku introduced the process model which gave the application developer a framework to think about server management. By thinking in terms of the process model, the application developer's server management problem became trivial to solve. In a similar regard, the Financial Data Processing Model aims to trivialize usage & billing problems for platform service providers.
The FDP model consists of 3 layers:
- LO - Event Collection
- L1 - Business Integration
- L2 - Payment Processing
Event collection defines the method of determining usage for a platform service. This layer's purpose is to record what is happening and to provide convenient reporting interfaces to L1. It is important that L0 be designed for long term durability and be mathematically functional. If components in this layer can provide such attributes, components in L1 become much simpler to build and maintain.
An example of an L0 service is Shushu. Shushu provides a set of HTTP APIs that allows providers and consumers to interact with usage data. Shushu implements the following L0 attributes:
- billable event collection
- account & resource ownership
- report generation
There may be several components in a platform that will need to submit billable events to the L0 service. For instance, Heroku's runtime process manager submits events for the creation and deletion of customer processes. For each [dyno] that is requested by a customer, the process manager will open a billable event and likewise close it when the customer no longer needs the dyno. Since the billable events are the canonical source of billing information in the platform, the process manager need not concern itself with the long term durability of billing data, it is strictly handled by Shushu in L0. It should be noted that L0 does not impose a strategy for computing a bill, it's goal is to track usage. Furthermore, L0 allows for different strategies of usage tracking.
Shushu employs a transactional approach to usage tracking. With tools like database transactions, HTTP APIs and techniques like [distributed composition], maintaining accurate billing records can be simple. However, some situations may call for a more traditional yet sophisticated approach. L0 and billable events can be composed in a form similar to telephony CDRs. This will allow a heartbeat approach to billing and L1 should take into account that the closing of an event will not be entirely accurate with respect to time.
Technically speaking, billable events should be stored in such a way that state can be rebuilt for any point in time at any point in time. Shushu achieves this quality by using a PostgreSQL table as an append only log. There are only inserts issued on this table, no updates of deletes. Along with never deleting data, all of the aggregations on the billable events should be functionally coherent. That is, their output should be deterministic irregardless of other events or time.
This attribute of L0 aims to answer the following question:
Who owned what and for how long?
Billable events are decoupled from the customer who initiated the event. Thus, we need a way to attribute usage. We can do so by linking the resource in the billable event to the customer who owns the resource. This attribute also should provide the ability to handle transfers of ownership. For instance, if customer a owned resource 1 for 10 days and customer b owned resource 1 for 10 days. Each customer should pay for their respective usage. Also, this change in ownership need not bother the events storage. Thus we maintain a set of ownership records that we can aggregate with events.
L1 is depending on clean and robust interfaces from L0. To that end, L0 must provide a general purpose API so that financial reporting tools can be built in L1. The general strategy for reports coming out of L0 is to provide a document that contains meta-data alongside a list of aggregated event data to support the meta-data. Reports should be general enough that the L1 use cases far outnumber the number of L0 interfaces. Keeping a small API surface area in L0 is important for reason ability and performance.
The business integration layer should be the only layer that is truly unique to a platform service provider. Components in L1 will be comprised of web applications and service-connectors that deliver business intelligence. Since L0 has paid the cost of long-term durability, we can now reap the benefits of the cost in L1. There a several qualities that applications in L1 should exhibit:
- Reporting
- Stateless
- Reliable
The goal of business is to make money. In order to get payment from a customer, the business must submit an invoice. The invoice is a type of a report that can be generated in L1. One important note about L1 is that the data that is consumed from L0 to generate an invoice is the same data that is used for other types of reports. It is paramount to normalize the source of financial data. Without this normalization, reporting can become inconsistent.
Applications in L1 should rely on the data that is served by layers 0 & 2. For instance, the events that are delivered to L0 will be aggregated and presented to L1 in the form of report documents. These report documents will contain a list of aggregated events and their respective totals. With these report documents, applications in L1 can collect and coalesce reports to produce fine grained reports that answer specific business questions. Since L1 applications are without state, reliability can be more easily obtained.
One of the primary benifets of the FDP is that the foundations in L0 & L2 enable trivial app creation in L1. Since L1 applications can be created with ease, it is important that L1 applications be made robust and reliable.
WIP