0
votes
0answers
12 views

AWS SQS C# The server encountered an error processing the request

In my project, I'm trying to send a message to my SQS. The following code works on my localhost, AmazonSQS sqs = AWSClientFactory.CreateAmazonSQSClient(RegionEndpoint.EUWest1); ...
1
vote
1answer
44 views

Ideas for scaling chat in AWS?

I'm trying to come up with the best solution for scaling a chat service in AWS. I've come up with a couple potential solutions: Redis Pub/Sub - When a user establishes a connection to a server that ...
0
votes
1answer
46 views

Kafka or SNS or something else?

Sorry if it is a newbie question. But I'm trying to understand what should I use. As far as I understand Kafka is : Apache Kafka is a distributed publish-subscribe messaging system. And SNS is ...
0
votes
1answer
36 views

List<Message> contains only one Message though I pass many

When I send multiple messages to my SQS and read it like //Sending message to queue SendMessageRequest smr = new SendMessageRequest(queueUrl, "one"); sqs.sendMessage(smr); smr = new ...
1
vote
2answers
43 views

Shall I call CreateQueue whenever I need to send a message to Amazon SQS?

I somehow see this phrase in Wikipedia:SQS that it writes: Amazon reserves the right to delete an entire queue without notification if it has not been accessed for 30 consecutive days. Is this ...
0
votes
1answer
42 views

sqs message between a client and a server

I need to setup a client which will send sqs to a server: client side: ... sqs = AWS::SQS.new q = sqs.queues.create("q_name") m = q.send_message("meta") ... but how the server could read the ...
1
vote
0answers
49 views

Creating AWS SQS Request in Javascript with IAM user

I have created an IAM User that has only SendMessage privilege on one SQS queue. I would like to distribute this IAM user's credentials to my client's browser so that messages may be sent to this SQS ...
0
votes
2answers
53 views

SNS and SQS Technical architecture

I am working on a blueprint to send and Receive email messages.I looking for best practice. We have to send , for example 1000 messages on click of a button. How to Use SNS and SQS to send messages ...
1
vote
1answer
43 views

How to get new messages SQS without send the private key

We want to use SNS + SQS to create a push-alike service to our system. We know we can do it and we are currently doing it, the problem is this: The client will ask to the channel (SQS Queue) if there ...
1
vote
3answers
132 views

How should Amazon SQS be used? Import / Process Scenario

I want to co-ordinate telling Server B to start a process from Server A, and then when its complete, run an import script on Server A. I'm having a hard time working out how I should be using SQS ...
0
votes
2answers
45 views

Amazon SQS - Communicating URL between servers

I was wondering if I could get some help with Amazon SQS. In my example I am trying to set up a queue on Server A and query it from Server B. The issue I’m having is that when I create a queue on ...
1
vote
0answers
105 views

AWS SQS SendMessage Auth Signature Version 2

I've been going crazy over this for hours. I'm trying to use the SendMessage API call to the Amazon SQS message queue. I'm following the Signature Version 2 method ...
1
vote
1answer
63 views

SQS: How can I read the sent time of an SQS message using Python's boto library

I can see messages have a sent time when I view them in the SQS message view in the AWS console. How can I read this data using Python's boto library?
0
votes
1answer
43 views

Why I don't see metrics for all SQS queues in CloudWatch

I want to set up CloudWatch alarm on the size of specific queue, but I can only see metrics for one queue in the list. How can I see metrics for all queues?
1
vote
2answers
137 views

Reading data consecutively in a AWS SQS queue

I am very new to AWS SQS queues and I am currently playing around with boto. I noticed that when I try to read a queue filled with messages in a while loop, I see that after 10-25 messages are read, ...
2
votes
1answer
189 views

Connecting to Shared SQS Queue using boto

I've run into a particularly vexing problem. I can easily connect to a native (one owned by my AWS account credentials) SQS queue using the boto SQS module. However, it appears AWS offers the ...
0
votes
1answer
161 views

Amazon SQS(Simple Queuing Service) Speed?

What is speed of Amazon SQS(Simple Queuing Service) for queuing, in format like n MB/KB per second.
0
votes
0answers
87 views

Is it possible to use Amazon Web Services and Game Center for matchmaking/stats?

For a turn-based game--for simplicity's sake, we'll call it a Words with Friends clone--on iOS, is it feasible or sound to launch it initially employing Game Center for matchmaking and stat-tracking, ...
0
votes
1answer
124 views

Amazon SQS SIgnature error

The string I use to sign is as follows GET sqs.us-east-1.amazonaws.com /XXXXXXXXXXX/Localhost ...
0
votes
1answer
277 views

Using AWS SQS for Job Queuing but minimizing “workers” uptime

I am designing my first Amazon AWS project and I could use some help with the queue processing. This service accepts processing jobs, either via an ASP.net Web API service or a GUI web site (which ...
0
votes
3answers
108 views

Is there an in-memory SQS?

I'm looking for something that mimics the REST API of SQS and is usable for robust/non-flaky, small, logic/unit tests.
2
votes
0answers
51 views

Source or Assembly for AWS SQS WCF channel transport

There is reference to a project that creates a channel transport for WCF based on the AWS SQS service. All references end in dead url's. Based on the fact that there were these references I assume ...
1
vote
1answer
628 views

What is the difference between Amazon SNS and Amazon SQS?

I don't understand when I would use SNS and when SQS, and why is it always coupled together?
2
votes
0answers
160 views

Apache Camel AWS/SQS component

Camel v2.8 (camel-aws/sqs) is it possible to send messages to a shared queue using camel aws-sqs component? I am able to send directly to myQueue but not other Queues which I have access to via ...
0
votes
0answers
151 views

Running multiple rails tasks on heroku with the same worker that resque runs

With the command below, I start a worker running the resque heroku ps:scale worker=1 But I want to know: Since I will be paying for a whole worker only to run resque, why can't run multiple running ...
2
votes
1answer
277 views

Should I have a heroku worker dyno for poll a AWS SQS?

Im confusing about where should I have a script polling an Aws Sqs inside a Rails application. If I use a thread inside the web app probably it will use cpu cycles to listen this queue forever and ...
1
vote
1answer
141 views

Amazon SQS queue: getting a response from queue

Image processing system. User uploads a photo to the S3. Image processing application takes the photo from S3 and starts processing on it and returns an output. Process: Webserver is sending SQS ...
1
vote
0answers
83 views

How to have long running threads in heroku to listen to multiple aws sqs queues inside rails?

I have two tasks named task "sqs:listen_converted" and task "sqs:listen_failed". The first one listens to converted files and create a record for it in postgres. The second set a flag in file record ...
2
votes
2answers
69 views

Getting an SQS message state in boto

I have a SQS producer and lots of consumers. It would be very helpful to know if the producer can tell if a particular message has been deleted by a consumer or not. Is there a way of doing this? I'm ...
1
vote
1answer
90 views

Finding certain messages in SQS

I know SQS ain't build for that, but I'm curious is it possible to find messages in a queue that meet some criteria? I can pull messages in a loop, search the message bodies for some pattern (without ...
0
votes
2answers
922 views

Working with Amazon SQS & SNS in Java

For the first time I have come across Amazon SQS and Amazon SNS. I will be working with these at my work place in Java. I have a few questions about these, I don't have that much of Java ...
3
votes
1answer
298 views

How can I use a JMS adapter to listen Amazon SQS

Is there any way to setup an Amazon SQS Queue or Amazon SNS Topic in order to work as a native XA JMS Resource Adapter? The idea is to replace the use of activemq in a large application with SQS, but ...
0
votes
0answers
83 views

Expose Amazon SQS directly to clients or via an Webservice as proxy

I would like to use Amazon SQS in my application to queue requests from other external systems that don't belong to me. What is the better way of doing this, directly expose the SQS Queue and the ...
2
votes
1answer
275 views

Rate-limiting my program from sending too many SES emails via SQS

I want to send 10000s of individual mails at once; possibly from a large for loop: for user in _10000_users: msg = generate_message( user) if(ses.can_send_more_messages == False): ...
0
votes
3answers
129 views

Max AWS SQS Queues

Does anyone know what the maximum amount of queues I can create is? I've look around on AWS and can't seem to find the answer. I might have almost 50 different queues at the end of this project and ...
1
vote
1answer
245 views

Change visibility timeout for an SQS message using ruby aws-sdk [ruby newbie]

could someone help with an example how to change visibility timeout for an sqs message using ruby aws-sdk ? here is the code that I've used for my tests using the method ...
0
votes
1answer
64 views

undefined method `batch_change_message_visibility' with AWS-SDK for Ruby

I'm trying to write a ruby script to change a message error but I'm getting the error batch_change_message_visibility is not a defined method. Here is the code : require 'rubygems' require 'aws-sdk' ...
10
votes
1answer
1k views

Push notifications in PHP using Amazon SNS/SQS?

On my site I'd like to do push notifications of comments like Stackoverflow does. Amazon SNS/SQS seems to provide a framework to do this but I'm having difficulty finding any code/explanation on the ...
0
votes
1answer
232 views

Amazon SQS message queue

I have the following scenario: for jobs that need to be processed, a message containing the job description is sent to an Amazon SQS message queue i have different processes that have to do the jobs ...
0
votes
1answer
244 views

tracking a message in an SQS queue

I have a request queue and a response queue. I would like to take the message out of the request queue and put it into the response queue. I would like to be able to identify that the same message ...
1
vote
2answers
635 views

Processing SQS queues with boto

I have a python script using the boto library on ec2 instance which is part of an autoscaling group. The script processes messages from a SQS queue: import boto from boto.sqs.message import Message ...
1
vote
1answer
162 views

Is there a command line tool to use SQS on an AWS ec2?

How do I interact with SQS on ec2 via the command line? I cannot find an SQS tool in AWS developer tools.
0
votes
1answer
124 views

Is it possible to configure multiple Timer EJBs

I have an EJB that uses the @Schedule annotation to perform some enterprise logic in a cron like manner. I am using JBoss 7.1 final. The problem is that this method is consuming messages from an ...
0
votes
1answer
628 views

AWS upload to S3 with SQS - PHP syntax

Would uploading to S3 using SQS make the process more fault tolerant? If so, i am having a hard time with syntax, trying to combine creating a queue then uploading to S3.If my logic is not correct, ...
1
vote
0answers
111 views

Setting up service to execute tasks in web clustered environment

I am looking for ways to reliably execute a task (just one time at certain date/time) in web clustered environment: for example to send an email reminder to user after 7 days since initial ...
1
vote
2answers
816 views

AWS SQS SNS protocol using PHP

The following code allows me to send SNS with (queue) SQS but i cant seem to choose the protocol like in amazons management console * the keys are all random strings <?php ...
0
votes
0answers
209 views

Message Queue with AWS

Im writing an app using the AWS framework. It would be the perfect framework if the SQS had FIFO access! I am using SNS to publish messages to queues, and the order of the messages is important. ...
0
votes
1answer
387 views

Deleting SQS Message with Receipt Handle

I am currently using amazon's SQS, and am having issues when trying to delete queue messages that are currently "In Flight". Below is some example code: ReceiveMessageRequest queueRequest = new ...
1
vote
1answer
237 views

Cakephp work queue

i'm looking for use a work queue to delegate some jobs. I know that some service like Amazon SQS or Beanstalkd are perfect for this problem. But, in both I have to create a daemon that poll the ...
2
votes
1answer
355 views

Amazon SNS -> SQS message body

I'm sending a message from an SNS topic to an SQS. When I'm checking the body of the SQS message on my client, the whole of the message metadata is being sent in the SQS body. I.E. if I'm sending a ...

1 2