Questions tagged [spring-integration-aws]

Spring Integration Extension for Amazon Web Services.

The full explanation can be found on project github page

122 questions
1
vote
1 answer

Spring integration aws (sqs) to trigger spring integration flow

I have to listen a queue using spring integration flow and intgeration sqs. Once message is received from queue it should trigger a integration flow. Below is the things which I am trying but everythings fine in but afater receiving test it is not…
1
vote
1 answer

Spring Intgergation aws - KinesisMessageHandler Direct Channel

My Message handler for publishing messages to the kinesis stream is as follows public MessageHandler kinesisMessageHandler(final AmazonKinesisAsync amazonKinesis, @Qualifier("successChannel") MessageChannel successChannel, …
1
vote
1 answer

Spring Boot , Spring Integration RabbitMQ & AWS Kinesis Integration

I have a requirement to consume messages from rabbitMQ, do some processing and finally publish messages to the Kinesis Data stream. We are already using Spring Boot, Spring Integration Core & Spring Integration AQMP 5.5.1 Integration Flows for…
1
vote
1 answer

How to send custom header from spring-cloud-stream (aws kinesis binder) to "legacy" spring integration consumer

I have two applications - the first produces messages using spring-cloud-stream/function with the AWS Kinesis Binder, the second is an application that builds off of spring integration to consume messages. Communicating between the two is not a…
1
vote
1 answer

How to add custom header in IntegrationFlow with Spring Batch Integration?

I created a pollableChannel which is listening a S3 Bucket getting files and launching a job. My classe is like this: @Bean public S3SessionFactory s3SessionFactory(AmazonS3 pAmazonS3) { return new S3SessionFactory(pAmazonS3); …
1
vote
1 answer

"For an upload InputStream with no MD5 digest metadata, the markSupported() method must evaluate to true." in Spring Integration AWS

UPDATE: There is bug in spring-integration-aws-2.3.4 I am integrating SFTP (SftpStreamingMessageSource) as source with S3 as destination. I have similar Spring Integration configuration: @Bean public S3MessageHandler.UploadMetadataProvider…
1
vote
1 answer

Spring Integration AWS Local SQS

I want to implement spring-integration-aws to send and receive messages with SQS. I am looking at localstack and would like to know the recommendation of the spring team. Which tool/api should I use for local setup of spring integration flows for…
Nikhil
  • 345
  • 2
  • 13
1
vote
1 answer

spring-integration-aws S3StreamingMessageSource how do I delete the remotefile?

i currently work with the S3StreamingMessageSource from spring integration aws. I pass the stream on to an integration flow. public MessageSource s3InboundStreamingMessageSource() { S3StreamingMessageSource messageSource = new…
Philipp K.
  • 25
  • 3
1
vote
1 answer

DynamoDB unlock errors during application stop when spring kinesis binder tries to release lock

When the application stops, kinesis binder tries to unlock dynamoDB and throws unlock failed exception. I followed this original post with the similar issue and updated spring-integration-aws version to v2.3.1.RELEASE. But still seeing the same…
1
vote
1 answer

Spring Integration - Async service activator for SQS messages

I am trying to implement an Integration flow for a sqs queue using a void async service activator but the handling logic is never triggered. The message is received in the flow, succesfuly converted by my custom transformer but the async handling…
1
vote
1 answer

Migrate SqsConsumer from spring-coud-aws-messaging to spring-integration-aws

I want to use spring-integration-aws to send messages to AWS SNS and to receive messages from AWS SQS. I am having some troubles understanding how to migrate my application from spring-coud-aws-messaging to use it. My code is basically a SQS config…
1
vote
1 answer

Why is my handler method not triggered when defined as a lambda?

I am defining an IntegrationFlow to stream from SFTP to S3 with the DSL syntax this way : return IntegrationFlows.from(Sftp.inboundStreamingAdapter(remoteFileTemplate) .remoteDirectory("remoteDirectory"), e ->…
1
vote
1 answer

Can't poll from S3 with a custom endpoint configuration

I try to use spring-integration-aws to poll from a S3 bucket to trigger a spring-batch job. My S3 bucket is not hosted on Amazon, it's on a local minio server, so I got a custom configuration : @Bean public AmazonS3 amazonS3(ConfigProperties…
1
vote
1 answer

Spring Aws Kinesis Messages are not consumed in order

I am pushing 100 messages on to stream with 1 shrad. spring: cloud: stream: bindings: myOutBound: destination: my-stream contentType: application/json I am pushing messages in loop for testing…
Patan
  • 17,073
  • 36
  • 124
  • 198
1
vote
1 answer

Spring Cloud Aws kinesis Binder load balancing

I was trying to implement the load balancing for Aws kinesis stream consumers As per documentation I am trying to implement spring: cloud: stream: instanceIndex: 1 instanceCount: 3 bindings: RollUpInboundStream: …
Patan
  • 17,073
  • 36
  • 124
  • 198
1
2
3
8 9