I built Kubernetes Event Watcher
Kubernetes triggers events whenever there is a state change within your cluster. These are stored somewhere in the cluster and have a limited retention time...
I share articles on various programming topic. You can find more articles like these here: medium.com/@theoneamin.
Kubernetes triggers events whenever there is a state change within your cluster. These are stored somewhere in the cluster and have a limited retention time...
I recently wrote a small fun project where I wanted to explore transaction dataset I found on kaggle. I`ll take you through what I did to implement a system to monitor transactions for fraud. All the source code and the example dataset can be found here...
Kafka is a distributed event log and messages come and get processed in the order they get added. A poison pill is a message that our application is unable to process. This can lead to our consumer failing and if more messages are getting...
Most software relies on other services and systems to function. This introduces the inevitable possibility that failures might occur within your system that are not your fault. For such scenarios you would want to attempt whatever is failing...
Testing is often seen as a tedious and time-consuming task by many developers. However, in this article, I aim to change that perspective. I firmly believe that tests are a fundamental part of the development process, and not only do they bring...
In this article, we’ll take a look at an introduction to Spring Batch. Spring Batch is a framework designed to process large amounts of data or batches of data...