Systems | Development | Analytics | API | Testing

Latest Videos

What's New in Kong Gateway 3.6

Kong Gateway 3.6 delivers a variety of new capabilities, enhanced UX and a brand new feature that we can't talk about yet. There are new Consumer Group capabilities, increased security when working with Hashicorp Vault or OpenID Connect, and there will even be a live demo of the brand new feature. Join Michael Heap (Sr Director of Developer Experience) and Veena Rajarathna (Staff Product Manager) as they walk you through what's new in the 3.6 release. You don’t want to miss this session!

Introduction to Ozone on Cloudera Data Platform

When considering whether Ozone is the right fit for your company, view it from several different angles. You can look at it from the perspective of Lower TCO, or reducing the carbon footprint of your Data Center. Other things to consider are how much your data is increasing and at what rate, and if you have enough hardware to cover that growth.

Job Offer Negotiation: Know Your Worth and Then Start Negotiating | Ashutosh Garg | #shorts

In this video, Ashutosh delves into the essential steps for initiating negotiations, starting with understanding your own value in the job market before you even start negotiating and why it is essential. 🔍 Key Insights Covered: Don't settle for less than you deserve. Learn how to navigate job offer negotiations with confidence and assertiveness, ensuring you receive fair compensation for your skills and experience.

What is the Event Sourcing Pattern? | Designing Event-Driven Microservices

Event Sourcing is a pattern of storing an object's state as a series of events. Each time the object is updated a new event is written to an append-only log. When the object is loaded from the database, the events are replayed in order, reapplying the necessary changes. The benefit of this approach is that it stores a full history of the object. This can be valuable for debugging, auditing, building new models, and a variety of other situations. It is also a technique that can be used to solve the dual-write problem when working with event-driven architectures.