Systems | Development | Analytics | API | Testing

Latest News

A Best-In-Class Analytics Platform: Yellowfin GM Update To Customers

Today, I’d like to share updates on the strategic direction of Yellowfin and highlight how our investment aligns with our commitment to embedded analytics and enterprise BI. We recently released Yellowfin 9.9 which continues to improve the quality of our powerful platform. In the last several years Yellowfin added many new features, and we want to make sure that they work flawlessly. Based on your positive reviews, we are pleased to report our excellent progress.

Data Migration with Microsoft SQL Server ETL Tools

Data integration and migration can be quite overwhelming and complex. It's easy to underestimate the complexities of managing data between different sources and destinations. However, diving into it without thorough planning and the right ETL (Extract, Transform, Load) setup could impact your business goals and deadlines, or even exceed your budget.

What Is a Code Review? + How to Do Code Reviews at Scale

Code review: it is an essential step in the development process for many businesses. Software developers often have a love/hate relationship with code reviews. Generally, the organizations that implement code reviews agree that they save time in the long run by catching issues and inefficiencies early. In this blog, get an overview of what a code review is and the challenges involved with them. Plus, learn how to do code reviews at scale.

What Is API Gateway Authentication?

API gateway authentication is one of the key functions of an API gateway. In carrying out this function, the API gateway manages authentication and authorization for the entire group of APIs that sit behind it. In this way, API gateway authentication safeguards your systems and information against unwanted access, data breaches, hacks, and mistakes. While the basic premise of API gateway authentication is easy enough to grasp, this guide offers a more nuanced understanding of the concept.

Slow App Performance? Here's How to Fix It

Excellent performance is key for any application, regardless of the framework or language. Today’s digital consumers demand speed and precision, and will quickly quit a sluggish app. That's why performance monitoring, especially Real User Monitoring (RUM), is important for every developer to implement. We recently launched RUM for BugSnag, providing developers the visibility they need to ensure great application performance.

Redis Tutorial: Exploring Data Types, Architecture, and Key Features

In today's digital landscape, data reigns supreme, shaping every facet of modern life. From personal pursuits to corporate endeavors, data's significance is undeniable. Its pivotal role spans industries, driving informed decisions and fueling efficient operations. Businesses harness data's power to decipher trends, understand customers, and adapt strategies. Effective data management, epitomized by Database Management Systems (DBMS), is essential.

Exploring Event-Driven Architecture: A Beginner's Guide for Cloud Native Developers

Classical request/response architecture is driven by procedure calls, where a caller waits for the call to finish, and the call continues until the work is done. Each incoming call is broken into smaller procedure calls, which may in turn call other procedures. In contrast, event-driven architecture (EDA) is driven by events such as user actions, sensor outputs, or messages from other programs/threads, which determines the execution flow.

Writing a Custom Credo Check in Elixir

Static code analysis is an important tool to ensure a project meets the right code standards and quality. In Elixir, the most popular package for this is Credo. Not only does it offer dozens of pre-made checks, but it also allows you to create your own. In this article, we will walk you through creating a Credo check. We will see how to write the code, enable the check in the Credo config, and make it nice to use. Let’s start!