MuleSoft Announces Next Generation Integration Platform-as-a-Service
A couple of weeks ago, MuleSoft opened its beta program for a new Integration Platform-as-a-Service (iPaaS) dubbed Mule iON. iON is a multi-tenant ESB hosted in the Cloud which enables secure connection between the enterprise and cloud based solutions (SaaS, Services or Social Platforms).
The SaaS and PaaS are re-creating the silos of IT and as more and more data is moving to Cloud based solutions, so does the need to synchronize and replicate data. Ross Masson, CTO of MuleSoft, notes:
- [Using] SOAP or REST maks the connectivity problem easier to manage but also restricts us in how we can architecture a solution (i.e. stateless, no widely accepted way of doing transactions, etc)
- SaaS solutions are more fined grained than before
- The acquisition of a new SaaS solution [or Service invocation] is dangerously easy compared to the traditional way of procuring enterprise software
- There is a large number of problems to solve around security, identity management, repudiation, visibility, control...
Ross adds:
the SOA-ification of web applications means that the way new applications are being built is through composition of services, augmenting existing functionality within our own apps and leveraging the treasure trove of infrastructure and data services available on the web.
There has been several attempts to solve Cloud based integration problems, Boomi which was recently purchased by Dell, WSO2 ESB-as-a-Service, RunMyProcess, or the Azure Service Bus to name a few. How do you see integration in cloud evolving over the next few years? How will core data organizations and solutions evolve to meet the challenges created by the Cloud?
Integration is the only way out on Cloud!
by
mani doraisamy
Naturally, integration is the "only" standard way to get data in & out of the applications. So this segment is bound to grow. But it is also important for the cloud applications to adopt REST as a first class citizen for even for its own user interface to counter the data lock-in threat & be open to iPaaS: manidoraisamy.blogspot.com/2008/06/jsr-286-now-...
Re: Integration is the only way out on Cloud!
by
Jean-Jacques Dubray
could you explain how REST helps integration? Integration is about synchronization and replication based on pub/sub and orchestration patterns. I have never seen REST being strong in these kinds of scenarios. If you are talking about HTTP and JSON as a protocol and neutral data format, why not. Other than that, I don't see how REST principles help in any way.
Re: Integration is the only way out on Cloud!
by
mani doraisamy
Significant number of enterprise deployments use database-to-database integration. Not SOA. The reason is simple: SQL is a common minimum denominator. Every access that you have done in your application is available to the integration/ETL tools.
In the absence of database access on cloud, i am suggesting that the same be repeated in the middle tier: Dont spit a single line of HTML code from the server. Let the server's standard communication mechanism be REST (JSON or XML), irrespective of its own user interface or iPaaS.
Some operations might be too fine fine-grained for iPaaS. But thats how SQL is to ETL tools. It doesnt need to be perfect. It needs to be practical. Integration is futuristic problem - Not a problem that you can design it once, provide API and be done with it.
This way, every feature that you add in your application will be available for integration automatically. Thats the only way to be a truly open "aaS" to counter the lock-in threat, IMO.
Re: Integration is the only way out on Cloud!
by
Jean-Jacques Dubray
a) REST = Data Access Layer (as opposed to Service Access Layer) I think this is true
b) we should be porting the mistakes and inefficiencies of the past to the Cloud. Is that what you call "practical"?
c) "Integration is futuristic problem - Not a problem that you can design it once, provide API and be done with it. " do you understand how to manage the future in the present? do you understand that without a versioning strategy the future is doomed. Is that enough of a reason to be "practical"?
REST has no contract. Is that a way, your way to manage integration?
d) "every feature that you add in your application will be available for integration automatically." Could you elaborate? I am not quite sure I see how things a "automatically available"
Re: Integration is the only way out on Cloud!
by
mani doraisamy
b) we should be porting the mistakes and inefficiencies of the past to the Cloud. Is that what you call "practical"?
Practicality is this: You can not predict, which part of the business function will be part of the same application today Vs what will be outside tomorrow, for you to build integration endpoints today.
And, it is not a mistake to have something i.e. fine grained APIs, instead of nothing i.e. coarse grained APIs designed for that business function.
c) "Integration is futuristic problem - Not a problem that you can design it once, provide API and be done with it. " do you understand how to manage the future in the present? do you understand that without a versioning strategy the future is doomed. Is that enough of a reason to be "practical"?
I am talking about things that are not predictable, by its very nature. Not sure how versioning strategy is related to this.
REST has no contract. Is that a way, your way to manage integration?
This sounds like a REST Vs SOAP discussion. It is my choice, when to have an integration point that needs truck load of service description & when not to. Not all integration points need them.
d) "every feature that you add in your application will be available for integration automatically." Could you elaborate? I am not quite sure I see how things a "automatically available"
When your user interface itself one of the consumers of the REST interface, the functionality that you provide for the end users will naturally available for integration as well.
Re: Integration is the only way out on Cloud!
by
Jean-Jacques Dubray
again, I am not sure why architecturally a UI bound service interface would be "automatically" reused for integration scenarios. The patterns are very different. In integrations things are more event driven, or plain batch load. I don't see the benefit of using these UI bound interfaces, they are very inefficient for integration and may not contain the information necessary for synchronizing with another system. Integration is not just about "emulating" a user typing at a keyboard.
I think in general you are not talking about "integration". Not surprising coming from somebody who things REST is such a great thing.
An again, if it is true that you cannot predict the future, you can prepare yourself today such that some class of changes in the interfaces will not disrupt existing integration scenarios if they don't have to. Having a non breaking versioning strategy is paramount to a successful integration strategy, in the cloud or within the enterprise. Something that the RESTafarians never quite understood.
Re: Integration is the only way out on Cloud!
by
mani doraisamy
I am not a RESTafarian. But i am disappointed with SOA specs that have not helped enterprises to move beyond CSV uploads & database updates, due to its sheer masochistic attitude.
Re: Integration is the only way out on Cloud!
by
Maurizio Turatti
On the other hand...
2) I do think neither SOAP (call it RPC) nor REST (call it resource-oriented) styles have much to do with actual integration problems. Integration happens at the technical services layer, while architectural styles applies at the business services layer.
I still think integration is about asynchronous event detection and processing, That's why fine-grained, flexible solutions like Mule or Apache Camel are growing in their adoption. IMHO the REST thing is very interesting but its about application development than integration of legacy systems, while SOAP is a competing paradigm that almost failed because of the unmanageable complexity of the WS-* babel.
No integration without Queuing
by
Hermann Schmidt
I've seen too many naive synchronous WS integrations without timeout handling. REST doesn't come with a solution right out of the box. A naive programmer can screw that up too.
I tried to get my head around the Atom protocols as described in Webber et al "REST in practice", which define pub-sub mechanism The amount of plumbing code and the complexity of the protocols is appalling IMO.
Re: No integration without Queuing
by
mani doraisamy
Re: No integration without Queuing
by
Hermann Schmidt
Coupling all services synchronously in an enterprise is total madness. Decoupling the creation time of data from its usage time, through buffering in queues for instance, makes a service/application network a lot more robust.
Re: No integration without Queuing
by
mani doraisamy
Re: No integration without Queuing
by
Hermann Schmidt
I consider synchronous service collaboration with distributed transactions across the web as a serious anti pattern.
Re: No integration without Queuing
by
mani doraisamy
Re: No integration without Queuing
by
Hermann Schmidt
My point was to emphasize that I see no stable large scale integration without asynchronous communication and that async requires a different kind of processing on the service and the client side. Feel free to disagree with me and try using two phase commit instead. That's up to you. Good luck with that.
Re: No integration without Queuing
by
mani doraisamy
You should be changing your application datamodel to store ChangeSummary of data. Assuming that your integration endpoint is coarse grained, the changesummary will span across multiple entities. Reapplying changesummary into the transactional data, that is modified concurrently by users in the meantime, is what database has been trying to implement for years with transaction logs.
But, if you are one of those super SOA architects, who feel that you will get this right inside your application & this is less headache, pls go ahead. But, pls dont make generic statements like "synchronous communications are fragile" for mortals like me. I would rather be happy implementing idempotent REST calls.
Educational Content
Concurrency in Clojure
Stuart Halloway May 17, 2013
Confessions of an Agile Addict
Ole Friis Østergaard May 16, 2013
Web Development: You're Doing It Wrong
Stefan Tilkov May 16, 2013
Programming The Feynman Way
Ben Evans May 15, 2013





Hello stranger!
You need to Register an InfoQ account or Login to post comments. But there's so much more behind being registered.Get the most out of the InfoQ experience.
Tell us what you think