Cloud Foundry: Design and Architecture
Derek Collison discusses the goals, the design premises and patterns employed in creating the architecture of Cloud Foundry, VMware’s open source PaaS, unveiling internal architectural details.
The content has been bookmarked!
There was an error bookmarking this content! Please retry.
How would you like to view the presentation?
Architectures You've Always Wondered About @QCon New York
App Server Evolution: REST, Cloud, and DevOps Support in Resin 4
Good Relationships: The Spring Data Neo4J Guide Book
Branching & Merging Efficiently: A Guide to Using Process-Based Promotional Patterns
If you're interested in other upcoming videos from Strange Loop, the full release schedule is here and all slides are here. If you want to be notified about Strange Loop announcements in the future, sign up for the mailing list.
The principle that I use, which I think holds for all these examples, is: a software solution lies in the middle between the problem domain (user stories, requirements, etc) and the solution domain (database, functional, OO, ORM, REST, CORBA, etc). The closer to the problem domain, the better solution it is albeit less efficient (in general) and vice versa.
It's easy to see how this applies to the goto statement.
In regard to the object middleware and the idea of functional 'wrappers', I think that's a completely wrong idea. I don't think the purpose of functional programming is to remove the need for object middleware (or object models) but the idea is to replace object models with a functional models that claim to have better composability, reusablity and closer representation of the problem domain but definitely not in order to gain efficiency. For efficiency you just need to be closer to the solution domain, or in other words, closer to the machine and not use functional nor object programming but C or assembly.
It seemed that a lot of the advice was based on edge cases. Yes, there are edge cases where a goto makes sense, 99.5% of the time it makes code harder to read and can introduce subtle bugs (e.g. jumping over cleanup code). Yes, writing raw SQL can make your app faster. But raw SQL is harder to understand then a well defined method name. If you need to raw SQL in spots to get the speed that you need then use the ORMs ability to drop down to the native level in that one section.
And remember that these "premature optimization" are going to be maintained by the new intern and you don't want him thinking that a goto would be perfect to fix that stack overflow.
There are cases where spaces in identifiers are useful. Javascript has the same property.
var o = {
"identifier with spaces" : function () { return 0; }
};
console.log(o["identifier with spaces"]);
Derek Collison discusses the goals, the design premises and patterns employed in creating the architecture of Cloud Foundry, VMware’s open source PaaS, unveiling internal architectural details.
Andrew Watson talks about the work of the OMG, where CORBA is alive and well (hint: in your car), UML and UML Profiles vs. custom Modeling languages, DDS and other middleware, and much more.
Sohil Shah discusses creating iPhone and Android enterprise mobile applications based on cloud services using the open source platform OpenMobster.
Paul Sanford presents the transformations supported by data throughout its life cycle, and how that can be better done with Splunk, an engine for monitoring and analyzing machine-generated data.
A common “best practice” for unit tests is to only write a one assertion in each test. I intend to question this advice by showing that multiple assertions per test are both necessary and beneficial.
John Rauser presents the architectural and technological evolution of Amazon retail websites starting with 1994 and ending with adopting Amazon Web Services.
Michael Stal discusses system architecture quality, how to avoid architectural erosion, how to deal with refactoring, and design principles for architecture evolution.
Every developer has had to integrate with another system, API or component. Tis article provides strategies to handle the change and for he separating system boundaries.
4 comments
Watch Thread Reply