amazon-sqs-java-messaging-lib
amazon-sqs-java-messaging-lib copied to clipboard
This Amazon SQS Java Messaging Library holds the Java Message Service compatible classes, that are used for communicating with Amazon Simple Queue Service.
I've attempted to configure this library with Wildfly 8.2.0 using its generic JMS support. The generic JMS glue code makes some calls to the following methods which raise "method not...
The [`com.amazon.sqs.javamessaging.acknowledge.AcknowledgeMode`](https://github.com/awslabs/amazon-sqs-java-messaging-lib/blob/master/src/main/java/com/amazon/sqs/javamessaging/acknowledge/AcknowledgeMode.java) has a private `originalAcknowledgeMode` field. Enum members are global singletons, so having a mutable private field in this case makes no sense. Demonstration of the issue: ``` final...
If any of the message attributes have a custom data type set, this results in their data type coming in with the sqs message as "SimpleType.CustomType" Thus if you select...
Currently using 1.0.4 and I'm interested in getting the SentTimestamp property from SQSTextMessage, but unfortunately only ApproximateReceiveCount is mapped across as "JMSXDeliveryCount" at `SQSMessage.java:125` Attributes that I can see coming...
Hi all, **I have the requirement to set up the SNS(Region: us-east-2) on my project. For this purpose first, I have upgraded the SDK version to 1.11.63. But existing Sqs...
SQS message attribute custom type is optional free text. [com.amazon.sqs.javamessaging.message.SQSMessage.JMSMessagePropertyValue.getObjectValue](https://github.com/awslabs/amazon-sqs-java-messaging-lib/blob/master/src/main/java/com/amazon/sqs/javamessaging/message/SQSMessage.java#L1193-L1216) only allows - String without custom type: [STRING.equals(type)](https://github.com/awslabs/amazon-sqs-java-messaging-lib/blob/master/src/main/java/com/amazon/sqs/javamessaging/message/SQSMessage.java#L1194) - Number with a hard-coded list of customer types: int, Boolean, byte,...
This issue still seem to be occurring, despite two similar issues were closed. Below is my POM dependencies with JDK 1.7. Help please!! maven-compiler-plugin 1.7 1.7 com.amazonaws aws-java-sdk-simpleworkflow 1.11.78 com.amazonaws...
We've been facing high CPU utilization after putting in SQS JMS based implementation on production. The root cause turned out to SQS connectivity issues and the use of CacheLevel: CACHE_CONSUMER...
At the moment, the maximum value for the delaySeconds field is 900 seconds (15 minutes). I was wondering, why can't we increased it to 1 hour at least? Many thanks,...
Is there any way to make this implementation less aggressive (i.e. for Long Polling)? We are using the async MessageListener interface and it becomes more aggressive over time. After about...