Operations | Monitoring | ITSM | DevOps | Cloud

March 2023

OpenSearch vs Elasticsearch: Which One Is Better to Use?

Whenever we start a search consulting project from scratch, the obvious question is: which search engine to use? We’ve talked about Elasticsearch vs Solr before, but here we’ll compare Elasticsearch with its fork, OpenSearch. Chances are, if you need to decide between the two, you’ll be looking at a few dimensions.

First Input Delay (FID) Explained in 4 Minutes

In this video, we will discuss First Input Delay, one of the most important metrics in website performance optimization. We'll explain what FID is, why it matters, and some of the most common issues that can impact your website's FID score. We'll also show you some practical solutions to improve your FID score. So if you're looking for a way to monitor your website's performance and improve your Core Web Vitals, this video is for you.

Server Monitoring Best Practices: 9 Tips to Improve Health and Performance

Businesses that have mission-critical applications deployed on servers often have operations teams dedicated to monitoring, maintaining, and ensuring the health and performance of these servers. Having a server monitoring system in place is critical, as well as monitoring the right parameters and following best practices. In this article, I’ll look at the key server monitoring best practices you should incorporate into your operations team’s processes to eliminate downtime.

What To Do When Elasticsearch Data Is Not Spreading Equally Between Nodes

Elasticsearch (ES) is a powerful tool offering multiple search, content, and analytics capabilities. You can extend its capacity and relatively quickly horizontally scale the cluster by adding more nodes. When data is indexed in some Elasticsearch index, the index is not typically placed in one node but is spread across different nodes such that each node contains a “shard” of the index data. The shard (called primary shard) is replicated across the cluster into several replicas.

Key Elastic Dev Commands for Troubleshooting Disk Issues

Disk-related issues with Elasticsearch can present themselves through various symptoms. It is important to understand their root causes and know how to deal with them when they arise. As an Elasticsearch cluster administrator, you are likely to encounter some of the following cluster symptoms.

The Best Tips and Tricks for Apache SOLR

Apache Solr is a great open-source search engine with a steep learning curve. In this video, we will cover 6 tips and tricks used by those who work with Solr in production environments on a daily basis. If you want your Apache Solr Cluster to return relevant results as quickly as possible, be sure to follow along with these tips and tricks.

Java Logging Frameworks Comparison: Log4j vs Logback vs Log4j2 vs SLF4j Differences

Any software application or a system can have bugs and issues in testing or production environments. Therefore, logging is essential to help troubleshoot issues easily and introduce fixes on time. However, logging is useful only if it provides the required information from the log messages without adversely impacting the system’s performance. Traditionally, implementing logging that satisfies these criteria in Java applications was a tedious process.

10+ Best Status Page Tools: Free, Open source & Paid [2023 Comparison]

Communication with our users is very important. You want them to be aware of the new features that your platform exposes, exciting news about the company, but also about the status of the services that you are building for them. This includes information about all the functionalities and the infrastructure and applications behind them – when they work correctly and efficiently and when they don’t.

Python Logging Tutorial: How-To, Basic Examples & Best Practices

Logging is the process of keeping records of activities and data of a software program. It is an important aspect of developing, debugging, and running software solutions as it helps developers track their program, better understand the flow and discover unexpected scenarios and problems. The log records are extremely helpful in scenarios where a developer has to debug or maintain another developer’s code.