You are here
Home > Search Results for "aws" (Page 2)

Use Amazon CloudSearch to quickly search through data

was-cloudsearch

Amazon CloudSearch provides a number of powerful search capabilities, including full-text search, faceted search, and customizable relevance ranking. In this post, we’ll see what CloudSearch is

How To Generate Parquet Files in Java

parquet logo

The Parquet file format has become very popular lately. In this post, we’ll see what it is, and how to create Parquet files in Java using Spring Boot.

How to build a simple data lake using Amazon Kinesis Data Firehose and Amazon S3

data lake

In this post, we’ll see how we can create a very simple, yet highly scalable data lake using Amazon’s Kinesis Data Firehose and Amazon’s S3.

Overriding Spring Boot properties in Amazon Lambda

person using iMac

In this post, we’ll see how we can maintain Spring Boot properties in an Amazon Lambda function without making code changes.

Emulating Apache Kafka with Amazon SNS and SQS

We’ll learn how to introduce the concept of consumer groups from Kafka in the AWS world using Amazon SNS and Amazon SQS.

Publishing messages to Amazon SNS from a Spring Boot application

We’ll learn how we can publish messages to an SNS topic from a Spring Boot application. This can be done from any Java code or framework.

Receiving messages from Amazon SQS in a Spring Boot application

In this post, we'll see how we can receive messages from an Amazon SQS queue in a Spring Boot application. This is a continuation of the previous post where we talked about how we can send messages to an SQS queue. The obvious next part of that is how do we receive those messages. So in this post, we'll do just that. If you don't have an Amazon SQS queue created already, checkout the previous post on how to do it. Here, I'll assume that you already have that pipeline setup. So I'm going to skip that part of the post. We'll jump right into the code. The Code The first thing we need to add in our Spring Boot application is the

Top