Elasticsearch is a robust and reliable technology that can handle and analyze large volumes of data efficiently. Complementing Elasticsearch, Kibana provides a visual interface where you can create, manage, and visualize your...
Blog
Elasticsearch provides REST API methods for deleting documents or an entire index. There are two main ways to delete documents. One by using a query to find documents and other is deleting document by its ID. How ES documents...
JVM metrics monitoring is important when you’re want to know how your JVM-based applications will behave in production at scale. Some main areas you would want to foucus are Garbage collection, Number of threads, JVM memory...
What is Redis? Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker. Redis provides data structures such as strings, hashes, lists, sets, sorted sets with range...
There are many instances where you’ll want to tag your docker image to a certain stable version and use it for your application. This tagging by version would prevent any untested/ breaking changes being deployed directly to...
If you don’t have any data persistence policies set for your Redis cache which has been deployed in your Kubernetes cluster and you intend to move your data from one Redis pod to another or maybe you’re just curious about how...
During my master’s program in Computer Science Engineering, I took the Full Stack Web Application Development ( CS5610 – Prof Jose Annunziato). Learned full stack development using Angular for the Front End and NodeJS...