Earlier quoted context omitted.
How you will send request to FE and back if you have java in BE?
I'm not trying to be harsh, but it genuinely sounds like you have no idea what you're talking about
How Netflix uses Java
71–80 of 205 posts
Re: How Netflix uses Java
#72>Netflix observed a 20% increase of CPU usage on JDK 17 compared to JDK 8. This was mostly due to the improvements in the G1 garbage collector. Help me here, why do GC improvements cause CPU increase?
Re: How Netflix uses Java
#73>Netflix observed a 20% increase of CPU usage on JDK 17 compared to JDK 8. This was mostly due to the improvements in the G1 garbage collector. Help me here, why do GC improvements cause CPU increase?
Re: How Netflix uses Java
#74Interesting, no mention of Scala at all. Did Netflix say goodbye to Scala altogether?
Re: How Netflix uses Java
#75Is this the talk? Looks like this is it https://www.youtube.com/watch?v=5dpLVvRpPPs
Re: How Netflix uses Java
#76>Netflix observed a 20% increase of CPU usage on JDK 17 compared to JDK 8. This was mostly due to the improvements in the G1 garbage collector. Help me here, why do GC improvements cause CPU increase?
> Help me here, why do GC improvements cause CPU increase? In Java 8 (afaik) there were pretty much no generational or concurrent garbage collectors, so garbage collector would happen in a stop-the-world manner: all work gets put on a halt, garbage collection happens, then the work can resume. If you have a better GC, you have shorter and less frequent needs to do a stop the world pause. Hence the code can run on cpu…
Re: How Netflix uses Java
#77Spring Boot and Spring cloud for backend & graphql for the win. ;-)
No, just no. Performance and debugging are just plain horrible. The spring team loves to force you into their automagic shit and this bean stuff is so annoying. You almost got no compile time safety in this stack. It's the bane of my existence. I'd like to know that a compiled program will run. That seems virtually impossible with java/spring boot.
Re: How Netflix uses Java
#78Earlier quoted context omitted.
No, just no. Performance and debugging are just plain horrible. The spring team loves to force you into their automagic shit and this bean stuff is so annoying. You almost got no compile time safety in this stack. It's the bane of my existence. I'd like to know that a compiled program will run. That seems virtually impossible with java/spring boot.
[flagged]
Whereas your comment from throwaway account is blabbering nonsense.
Re: How Netflix uses Java
#79Earlier quoted context omitted.
[flagged]
"This person" makes rather relevant comment on Spring boot's severe shortcomings. Whereas your comment from throwaway account is blabbering nonsense.
Re: How Netflix uses Java
#80Earlier quoted context omitted.
I'm not trying to be harsh, but it genuinely sounds like you have no idea what you're talking about
You can be harsh — it is pretty dumb to come here shitting on a whole platform, when they don’t even know the basics.
Sorry but it seems that you have no idea how netflix really works.