Artem Bilan
Artem Bilan
See another reason to do this: https://github.com/spring-cloud/spring-cloud-aws/issues/491 Also here: https://github.com/spring-projects/spring-integration-aws/issues/155 Thanks
See fully similar SO question on the matter http://stackoverflow.com/questions/38355551/aws-integration-spring-extend-visibility-timeout. I'm reopening an issue since the provided solution doesn't fix the real premise.
I wonder if Spring Integration AWS SQS/SNS adapters fit the `Binder` requirements: https://github.com/spring-projects/spring-integration-aws and we should release finally M1 for `spring-cloud-stream` :smile:
Spring Integration also has cluster-like feature in face of `LockRegistry`, for example: http://docs.spring.io/spring-integration/docs/4.3.4.RELEASE/reference/html/messaging-endpoints-chapter.html#leadership-event-handling. So, I vote for `spring-cluster` to move those implementations as well.
There is already some community requirements and some ideas how to be on the matter: https://stackoverflow.com/questions/47800497/how-can-messaginggateway-be-configured-with-spring-cloud-stream-messagechannels. I've cooked some simple PoC how it works without any modifications to the Framework:...
@stebart, Please, follow this fix: https://github.com/titoc/rest-gateway/pull/1
As I said in the mentioned PR: You need to have this in the gateway configuration: ``` @ServiceActivator(inputChannel = GatewayChannels.TO_UPPERCASE_REPLY) public MyMessage getReply(MyMessage myMessage) { return myMessage; } ``` The...
``` IntegrationFlows.from(streamName) ... .channel(streamName) ``` You make a trap for yourself. So, essentially you loop messages from the channel to itself. It might work some time in your target solution,...
@rolkhas2 , there is probably some misunderstanding, but that Pulsar Spring Cloud Stream binder is not reactive. Its channel adapter implementation, though, could really be used as an inspiration for...
The AWS Kinesis binder is like this: ``` KinesisMessageChannelBinder extends AbstractMessageChannelBinder