Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Java containers are better viewed as the forerunners to general-purpose PaaSes. They load and health-check the app, route traffic, capture logs, inject services and the like.

Containers are a great building block for PaaSes. Red Hat have built their latest OpenShift on Kubernetes, for example. My own employers, Pivotal, are the majority contributor to Cloud Foundry, another containerising PaaS using a different container system.

Even in Java, folk are moving towards apps that bundle their own container. Spring Boot does with Tomcat by default. It turns out that the giant Java app servers were great, but eventually wound up with the same problem as previous generations of highly shared services: without strong isolation guarantees, it becomes necessary to heavily gateway production to prevent outages or degradations. That backpressure creates de facto waterfall.



> It turns out that the giant Java app servers were great, but eventually wound up with the same problem as previous generations of highly shared services: without strong isolation guarantees, it becomes necessary to heavily gateway production to prevent outages or degradations.

Are you talking about app isolation on an app server? I.e. running multiple WARs/EARs on a single server and not having one app destabilize the whole thing?


Essentially this. In theory it could be done, but I've only seen placs where they wound up with a app-container-per-production-WAR rule.

OS containers are a similar pattern for a similar reason. Stronger isolation simplifies production deployment and management.


What is PaaSes?


PaaS is "Platform as a Service"

https://en.wikipedia.org/wiki/Platform_as_a_service

Think Heroku, Google App Engine, AWS Beanstalk, etc. Cloud providers that give you something like a managed runtime.

As distinct from Infrastructure as a Service which provides lower level infrastructure. Examples are AWS EC2, Google Compute Engine, etc.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: