A comprehensive management system for Apache Kafka®
https://www.confluent.io/product/control-center/
#kafka #confluent #monitoring
https://www.confluent.io/product/control-center/
#kafka #confluent #monitoring
Fraud Detection
on credit card using Apache Kafka KSQL
:CREATE TABLE possible_fraud AS
SELECT card_number, count(*)
FROM authorization_attempts
WINDOW TUMBLING (SIZE 5 SECONDS)
GROUP BY card_number
HAVING count(*) > 3;
The above query creates a moving window in 5 seconds timeframe and check whether there are more than 3 authorization attempt on a
specific credit card, real time!
KSQL is a good fit for identifying patterns or anomalies on real-time data. By processing the stream as data arrives you can identify and properly surface out of the ordinary events with millisecond latency.
#apache #kafka #ksql #fraud_detection
https://www.confluent.io/blog/beginners-perspective-kafka-streams-building-real-time-walkthrough-detection?mkt_tok=eyJpIjoiTXpoak1USTRZVEF5TjJKayIsInQiOiIxb2dDdEpJallUVzhPeWF6T3I3NXBtNHFqYVh1V0xGa3hONHlKQ2ptc0JtVzFLXC8rbHQxVys5MWprQjNWZGpLUGR2N2hkS0poakNRdURhb0pndjd2QXVYOEtYbjczSFdRVGVSUHhGelVHXC9QT0t5QXNsYUdwSlgyN0ZcL3NjQmpkeSJ9
#kafka #streams #kafka_streams
#kafka #streams #kafka_streams
Confluent
A Beginner’s Perspective on Kafka Streams: Building Real-Time Walkthrough Detection | Confluent
Here at Zenreach, we use Kafka Streams to generate walkthrough counts. This post describes our use case, architecture and lessons we learned along the way.
https://www.youtube.com/watch?t=1890&v=IR1NLfaq7PU&feature=youtu.be
#kafka #event_driven #microservice
#kafka #event_driven #microservice
YouTube
Building event-driven (Micro)Services with Apache Kafka by Guido Schmutz
This session will begin with a short recap of how we created systems over the past 20 years, up to the current idea of building systems, using a Microservices architecture. What is a Microservices architecture and how does it differ from a Service-Oriented…
https://podcasts.google.com/?feed=aHR0cHM6Ly9zb2Z0d2FyZWVuZ2luZWVyaW5nZGFpbHkuY29tL2NhdGVnb3J5L3BvZGNhc3QvZmVlZC8&ep=14&episode=aHR0cDovL3NvZnR3YXJlZW5naW5lZXJpbmdkYWlseS5jb20vP3A9MTAzNzY
#kafka #podcast #alternative
#kafka #podcast #alternative
Google Podcasts
Podcast – Software Engineering Daily - Redpanda: Kafka Alternative with Alexander Gallego
Kafka has achieved widespread popularity as a popular distributed queue and event streaming platform, with enterprise adoption and a billion dollar company (Confluent) built around it. But could there be value in building a new platform from scratch? Redpanda…