Created
October 25, 2019 15:00
-
-
Save kgorman/4accaa93715c3c29fb51c92ffc7c184f to your computer and use it in GitHub Desktop.
sample2.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- detect multiple auths in a short window and | |
-- send to lock account topic/microservice | |
SELECT card, | |
MAX(amount) as theamount, | |
TUMBLE_END(eventTimestamp, interval '5' minute) as ts | |
FROM payments | |
WHERE lat IS NOT NULL | |
AND lon IS NOT NULL | |
GROUP BY card, TUMBLE(eventTimestamp, interval '5' minute) | |
HAVING COUNT(*) > 4 -- >4==fraud |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment