Questions tagged [message-queuing]

49 questions
2
votes
2 answers

Process names in MS Message Analyzer

I am trying to set up the Message Analyzer viewer exactly like it is explained in this reference, but instead of steady process names I got some weird numbers, both in ProcessName and ProcessID columns. I use standard Wireless scenario and…
2
votes
1 answer

Sent emails never reach destination. ESM Message Tracking Center shows nothing after "Submitted to Categorizer"

A couple of users (out of 150) are experiencing an issue where they send out emails or message invitations, but they are never received by the recipients. When i go into Exchange System Monitor, and into the Message History for the email, it shows…
user44650
  • 137
  • 4
  • 11
2
votes
2 answers

Installing MS Message Queuing on Windows XP by Command Line

I developed an application that needs MS Message Queuing to work. But it's really boring to have to go to the control panel of every computer where it's going to be running and go to Control Panel - Add/Remove Programs - Windows Components - Install…
1
vote
0 answers

Service Bus for Windows - Performance and Scalability

We are building out a system using Service Bus for Windows 1.1 for pub/sub. If we were on Azure, we could use partitioning to scale it out. However, the on-premise version does not support partitioning. Instead, all nodes in a farm seem to use the…
1
vote
1 answer

Recover errored message from SQL Server Service Broker

We've been using SSSB 2008 for the past year, and it's been wonderful. (Well, compared to MSMQ anyways.) However, we've only been using same-database queueing, not the routing features. Some changes in our app now require that we route messages. Up…
MichaelGG
  • 1,739
  • 8
  • 25
  • 30
1
vote
1 answer

Which server should I put my message queue on: my worker server or my application server?

I have two EC2 servers. One is the application server (serving HTTP/S requests) and one is a "worker" server processing jobs. I am wanting to move to use Huey (a task queue) which uses Redis as a backend. I don't want to spin up another server just…
awidgery
  • 131
  • 5
1
vote
1 answer

Beanstalkd and multiple workers on a tube

If I have two workers listening on a single tube and a job comes through, will both workers attempt to handle the same job, or will it get claimed only by one?
Ian
  • 1,498
  • 4
  • 26
  • 32
1
vote
1 answer

Postfix timeout for unsent emails

I am using Postfix for send about 20 000 – 30 000 e-mail per day. For messages not ended into a spam, the script is running with 1 second break every email send. As a result, e-mail are sending about 5 - 8 hours. When an error occurs on the server…
Adam Lesiak
  • 111
  • 3
1
vote
1 answer

HA for Resque & Redis

Trying to avoid SPOFs for Resque and Redis. Ultimately the client is going to be PHP via (https://github.com/chrisboulton/php-resque). After going through and finding some workable HA for nginx+php-fpm and MySQL (mysql master-master setup as a way…
Chris Go
  • 135
  • 1
  • 4
1
vote
1 answer

RabbitMQ - unexpected empty and unsynchronized queues after cluster node failure

I have downloaded and installed RabbitMQ in cluster on Windows: downloaded and installed ERLANG and RABBITMQ on two servers (for example Alpha and Bravo) installed management plugin, set custom tcp_listener port (to increase security) and add…
Tomáš Jecha
  • 33
  • 1
  • 6
1
vote
3 answers

win2008 r2 enterprise "Message Queuing" "Access is denied" "The list of messages cannot be retrieved"

on my win7, I run compmgmt.msc and drill to a private queue folder ... when I click "Queue messages" or "Journal messages", I either see the messages, or "There are no items to show in this view". BUT, on win2008 R2 Enterprise, I run compmgmt.msc…
gerryLowry
  • 185
  • 3
  • 13
1
vote
3 answers

Do MTAs always queue mails when they can't connect to dest MX server?

At our (small) office we're deciding whether to have our MX record point to our local Exchange server. I was a bit worried about downtime, so thought that I ought to set up a backup MX server. Then I did a bit of research, and found a couple of…
Andy
  • 274
  • 2
  • 8
1
vote
3 answers

Is Msmq reliable?

Maybe a subjective question, but is Msmq reliable compared to JMS solutions?
Lieven Cardoen
  • 517
  • 2
  • 8
  • 17
1
vote
1 answer

Message Queueing broken - Configuration MMC is missing now too

Help! I have a Windows Server 2003 partition that was running yesterday with no problems. It has the message queueing component installed, and I had four private message queues in it. I did some work with attaching and detaching SQL Server 2005…
1
vote
1 answer

How can I track user requests to my external API on AWS?

I'm a bit of a beginner but I'm working on creating an external API with AWS SAM (using API Gateway and Lambda), and I want a way to track & monitor usage. Some options I was considering: 1. Store the requests in a database Pro: It would allow me to…