Systems | Development | Analytics | API | Testing

Demo

Kubernetes Native API Management: Create and Deploy APIs with WSO2 APK

Commence an exploration into Kubernetes Native API Management with WSO2 in this enlightening session. Guiding you through the details of creating and deploying APIs, we commence the exploration of the robust WSO2 API Platform for Kubernetes (APK). Discover an innovative AI-powered health and wellness coach application, unraveling the process of exposing microservices as managed APIs in a Kubernetes environment. The setup involves deploying WSO2 APK alongside microservices, providing a comprehensive view of API creation methodologies.

What's new in 2.6 | Cost Savings and Developer Improvement

Data engineers and analysts need a self-service way to build data movement flows to get critical data to where it needs to be. Cloudera DataFlow enables self-service by introducing fine grained access control with projects. Projects allow users to group flow drafts and deployments and give access to team members as needed.

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.

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.