What would be in the “fully fledged server framework” that’s not in the Go standard library aside from sessions which is easily added with the gorilla library
The article's POM depends on spring-boot-starter-web. Here are some of the things you get with that:
* Dependency Injection (@Autowire)
* Externalized configuration (change app settings via CLI or environment variables) with profiles (think DEV,PROD)
* Out of the box logging (think log levels, configurable per logger)
* Remote administration via JMX (runtime administration)
* An ORM (Hibernate)
* A unit testing framework with mocking (JUnit, Hamcrest, Mockito)
* Remote debugging via JVM debugging port
Going beyond the simple app, you can take full advantage of the Spring Boot ecosystem of dependencies to pick and choose only the dependencies you need, while being able to do anything that a cloud app might need to do.
If you don't need all that, you can always fall back to the simple HttpServer example he gives in the article and still get a small footprint.
The article compares Java 8 to the others. I'd love to see a comparison to Java 9, where hopefully the modularization of the JVM will lead to a smaller overall runtime and memory footprint.
JDK 9 also comes with compact strings which can reduce the heap with 5-15%[1] and with -XX:+UseStringDeduplication, AppCDS and AOT the memory footprint can be reduced even more.
I don't get it. When you limit the memory of the java process it will be a _lot_ lower. A spring boot server can be started with -Xmx64m. Setting the memory limit to 200mb is more than enough to prevent OOM kills in Kubernetes.
We run many spring boot services in that way. With absolutely no issues.
> A spring boot server can be started with -Xmx64m
That would have required the author to read the manual and think about their problem for a few minutes, which is much less fun than justifying their already-formed preference after the fact.
I believe I addressed this in the 4th paragraph of this article. I can't imagine many teams going back and optimizing their memory usage after they've deployed something to production.
Unless you have capacity in your sprint to do some fine grained optimization of these things you'll most likely be looking at extending the platform or picking up potential feature requests.
But even still, the point still stands whilst not to the same extreme. You have to actually to set this flag in order to reduce 64MB which is still 60+ times the size of a similar Go service and 3-4 times the size of a thin Java/Python application.
What you forget is: You get so many features with Spring Boot and you can actually use them without increasing the memory footprint.
Yes of course, for a single service with one endpoint that does nothing it is bloat. But which microservice does nothing?
Think about a database backend, actuator endpoints, etc. They are all possible with a memory footprint of ~200mb. It can be less is you use another language, but I doubt that Go will give you such a major framework for developing a microservice. And this will save you a lot more time than taking an hour to reduce your memory footprint.
And one thing you missed too: Using the JVM should also be combined with a basic knowledge about how the heap works. And if you do not limit it, it will get a lot bigger than required, this should be common knowledge.
Comparing this to Go it seems like a much better way. In Go there is afaik no way to limit the heap. In worst case it will grow and grow and grow.
Go comes with pretty much everything you would need for micro services in the standard library and linking those parts in isn’t likely to change the memory profile very much.
You lack imagination :) what I find hard to imagine is many teams going back and forth between microservices in go, java, python because of memory consumption.
Besides, every decent Java dev knows that it's a memory hog, comparing to most of the platforms out there; but that normally isn't a concern when you choose something Jvm based.
> You have to actually to set this flag in order to reduce 64MB which is still 60+ times the size of a similar Go service and 3-4 times the size of a thin Java/Python application.
This is a pointless way to evaluate alternatives, though, because you'll never beat BCHS[1].
This line of argument to favor Go over Python or Java is just as valid as the line of argument to favor C over Go. Benchmark OpenBSD http + FastCGI C vs. this.