Tag: Performance
-
Tackling Java cold startup times on AWS Lambda with GraalVM
Posted on April 10, 2021, Level intermediate Resource Length medium
Have you ever tried running a Java application on AWS Lambda? Well, even the simplest Java application takes significant time to start up at first. The reason behind is simple. AWS has to prepare a runtime environment for your application when it executes the first time. This is called cold-start. By Arnold Galovics.
Tags java performance programming learning containers software-architecture
-
In-depth dive into security features of Intel/Windows platform secure boot process
Posted on April 7, 2021, Level advanced Resource Length long
This blog post is an in-depth dive into the security features of the Intel/Windows platform boot process. In this post I'll explain the startup process through security focused lenses, next post we'll dive into several known attacks and how they were handled by Intel and Microsoft. By Igor Bogdanov.
Tags infosec cio cloud miscellaneous learning performance
-
Initialization strategies with Testcontainers for integration tests
Posted on February 24, 2021, Level beginner Resource Length short
Testcontainers offers several initialization strategies for our Docker containers when writing integration tests. Depending on the Docker image we use for our tests, we might have to perform additional setup steps. By Philip.
Tags programming tdd java performance devops
-
How OpenX Trains and serves for a million queries per second in under 15 milliseconds
Posted on February 23, 2021, Level beginner Resource Length medium
Adtech is an industry built on latency at scale. At OpenX this means that during peak traffic periods our exchange processes more than one million requests for ads every second, most of which require a response in under 300 milliseconds. By Larry Price, OpenX.
Tags distributed software-architecture performance devops
-
Understanding Unikernels: The future of cloud computing, probably
Posted on February 21, 2021, Level beginner Resource Length medium
Having used Containers, Kubernetes and Serverless (a lot!) over the last few years, I catch myself wondering 'What next?' when it comes to more efficient, faster and secure units of computing. By Nithin Jois.
Tags distributed software-architecture linux devops performance data-science machine-learning
-
How we improved developer productivity for our DevOps teams
Posted on February 16, 2021, Level beginner Resource Length long
Across Spotify, our teams diligently strive to fulfill our mission to "unlock the potential of human creativity by giving millions of creative artists the opportunity to live off their work, and billions of fans the opportunity to enjoy and be inspired by it". Published by Maria Jernström and Jason Palmer.
Tags devops teams performance cio career
-
The RustyHermit unikernel
Posted on January 28, 2021, Level intermediate Resource Length long
RustyHermit is a unikernel, which is completely written Rust. Unikernels are application images that directly contain the kernel as a library, so they do not require an installed operating system (OS). They are typical used in virtualized environments, which build the backbone of typical cloud / edge infrastructures. By @stlankes.
Tags programming linux devops performance
-
What is neuromorphic computing?
Posted on January 12, 2021, Level beginner Resource Length medium
What is neuromorphic computing? Everything you need to know about how it is changing the future of computing. By Jo Best.
Tags miscellaneous software cloud cio performance servers
-
What is a gRPC API and How Does it Work?
Posted on January 3, 2021, Level intermediate Resource Length long
gRPC has become an important technology for implementing distributed software systems that need to run fast on a massive scale. In short, gRPC is an API framework that allows a program in one location on the internet to pass data to a distinct function in another program at another location on the internet for processing. By Bob Reselman, @CogArtTech.
Tags apis microservices app-development performance web-development
-
How to optimize large scale serverless applications for operational excellence
Posted on December 25, 2020, Level intermediate Resource Length long
Managing applications at scale often comes up as one of the biggest concerns for businesses; How can it work smoothly? How do we monitor so many resources? By Taavi Rehemägi.
Tags serverless programming devops cicd performance
-
Developing micro-microservices in C on Red Hat OpenShift
Posted on December 16, 2020, Level intermediate Resource Length long
For optimal runtime resource usage and millisecond startup times, though, it remains hard to beat C. Comparatively few people in the IT industry have experience implementing middleware components in C. This fact is ironic because C is an ideal vehicle for implementing truly micro microservices. By Kevin Boone.
Tags microservices web-development app-development performance devops cloud
-
The last guide to the useEffect Hook you'll ever need
Posted on December 14, 2020, Level intermediate Resource Length medium
Understanding how the useEffect Hook works is one of the most important concepts for mastering React today. If you have been working with React for several years, it is especially crucial to understand how working with useEffect differs from working with the lifecycle methods of class-based components. In fact, it is a wholesale shift in mindset! By Sebastian Weber.
Tags react javascript web-development app-development performance