Deep dive clickstream analytic series: Data Ingestion
Sep 8, 2024 · 4 min read · Clickstream Analytics AWS Container Amazon ECS AWS CDK AWS CloudFormation ·
In this post, we will delve into the data ingestion service of our clickstream solution. This service is a vital part of the clickstream analytics system. It is designed to be reliable, resilient, high-performing, flexible, and cost-effective. It plays a key role in capturing clickstream data from various sources and …
Read More about Deep dive clickstream analytic series: Data Ingestion
This post explores the web console module of the clickstream solution. The web console allows users to create and manage projects with their data pipeline, which ingests, processes, analyzes, and visualizes clickstream data. In version 1.1, the Analytics Studio was introduced for business analysts, enabling them to …
Read More about Deep dive clickstream analytic series: Serverless web console
In the last couple of months, I led a team to build a comprehensive and open-sourced solution that helps customers analyze clickstream events on the cloud. The solution provides data autonomy, allowing users full access to raw data, near real-time ingestion, flexible configurations, and cost-effectiveness. It is a …
Read More about How to build a clickstream analytic system for small businesses to large-scale eventsAnalyzing Clickstream Events Using Amazon Athena UDFs
Aug 17, 2024 · 3 min read · Amazon Athena Analytics Athena UDF Clickstream Analytics AWS AWS Lambda ·
In today's digital age, businesses are constantly seeking ways to understand and analyze user behavior on their websites. Clickstream events provide valuable insights into how users interact with a website, and analyzing this data can help businesses make informed decisions to improve user experience and drive …
Read More about Analyzing Clickstream Events Using Amazon Athena UDFs
Amazon DynamoDB now supports AWS PrivateLink as of March 19, 2024. This feature allows you to securely access DynamoDB from your Amazon Virtual Private Cloud (VPC) without exposing your traffic to the public internet. However, unlike VPC endpoints for other AWS managed services, the AWS PrivateLink for Amazon DynamoDB …
Read More about Avoiding Pitfalls When Using Amazon DynamoDB Interface VPC Endpoints
Serverless computing is all the rage, promising pay-as-you-go magic and freedom from infrastructure woes. But what about serverless for data warehouses? Let's delve into the fascinating (and sometimes confusing) world of Redshift Serverless: its cost structure, ideal use cases, and situations where it might not be the …
Read More about Redshift Serverless: Cost Deep Dive and Use Cases
AWS CDK accelerates cloud development using common programming languages to model your applications. I had a series of posts using CDK to demonstrate Building serverless web applications with AWS Serverless. Because CDK uses a programming language to model your application, you can encapsulate your library via …
Read More about Custom compliance implementation in AWS CDK
Disclaimer: the cover image was generated by Amazon Bedrock's Titan Image Generator G1. AWS CLI is a swiss knife for orchestrating the operations of AWS resources. Especially, the filter option could help your filter and transform the output then combine with other Linux commands together. This post collects the CLI …
Read More about Awesome AWS CLIBuild serverless web application with AWS Lambda web adapter
Oct 26, 2023 · 3 min read · AWS AWS CDK AWS Lambda Lambda Web Adapter Serverless Pattern Serverless CDK Construct ·
Disclaimer: the cover image was generated by StableDiffusionXL with prompts 'cover image, spring boot, flask framework running in aws lambda'. When deploying and operating a web application on the cloud, you prefer to use your favorite programming language and web framework. Also, you want to benefit from Serverless …
Read More about Build serverless web application with AWS Lambda web adapter
When programming with the AWS SDK, developers sometimes want to debug a specific HTTP request when invoking an SDK API. Due to the poor documentation of AWS JS SDK v3, it takes a lot of work to find a way to print the verbose logging of AWS SDK by asking it to the LLMs. Below is a practical tip for enabling verbose …
Read More about Verbose logging for AWS JS SDK v3