"Message queue" is a design pattern or software engineering component that defines discipline or API for communication between two or more interrelated processes or systems. The message queue enforces asynchronous processing and loose coupling. Depending on the implementation they may also provide ...

learn more… | top users | synonyms (1)

0
votes
0answers
2 views

MassTransit MSMQ remote queues not reachable

We've developed a MassTransit based demo which is working well as long as all processes run on the same server. However, as sonn as my receiver wants to subscribe himself at another machine it hangs ...
0
votes
1answer
20 views

Which data type should send to AMQP broker (like RabbitMQ)

I can't decide this. Should I sent only just database row ID or full database object as a message to RabbitMQ. The first choice is good for queueing but require to fetch database rows to process it ...
0
votes
0answers
10 views

How to monitor and avoid over-filling a message queue (posix)

I'm trying to avoid overfilling the message queue so here are few questions I have When using mq_attr When is mq_curmsgs full? when it's 0 or max_msgs When it's full, do i need to flush it? Would ...
0
votes
2answers
27 views

Message queue in java

I am looking for a message queue system in java which has following properties. High availability/No single point of failure (Ability to use cassandra as backend) Ensure "deliver once and exactly" ...
2
votes
2answers
36 views

What is the point of the immediate multiple retries in messaging systems?

I've recently been reading up on messaging systems and have specifically looked at both RabbitMQ and NServiceBus. As I have understood it, if a message fails for some reason it is tried again ...
0
votes
1answer
27 views

Implementing queues using SQLite database in Android

I want to implement queues in one of my app. I've been investigating few options like file based queues and database queues. File based doesn't look like a right choice when data grows really big. I'm ...
1
vote
0answers
29 views

Are there any free or open-source persistent publish/subscribe (PPS) systems?

I've been working with QNX lately and found their Persistent Publish/Subscribe (PPS) to be very useful. Does anyone know if there are any systems that are similar to QNX PPS that might work with the ...
0
votes
1answer
14 views

Django-celery doesn't restore all tasks after restart

I'm using django ORM as a celery broker, when I schedule tasks and kill celery worker (by hitting ctr+c) before tasks completion, and restart celery again, it doesn't restore all the tasks!! why is ...
0
votes
0answers
26 views

POSIX Message Queue is supported on which linux Kernel

I could successfully implement POSIX Message Queue on Ubuntu 10.04 (Kernel version 2.6.38). But the code fails when (built and) run on same version of Ubuntu 10.04 (Kernel version 2.6.37) on ARM ...
2
votes
0answers
54 views

ServiceStack: repalce web service with message queue

I'm working on a project that provides some API for getting information about our partners' products. Every search request to our site has to make n other requests to partners sites, collect and ...
-1
votes
1answer
44 views

Send data to another process

I have to make a C program in unix. I have to simulate the results tables of a car race, I already made a code to create some cars (with a fork) and now I'm trying to send the results to another ...
0
votes
0answers
14 views

No single point of failure realtime messaging system?

Is there anything out there that is like a Cassandra, but in the world of realtime messaging? Relatively simple API would be a plus, HTTP maybe, something as Amazon SQS?
0
votes
1answer
28 views

Android: How to Switch on Runnable in Message Queue?

I have searched the java API on Thread, Handler, HandlerThread, Looper , as well as SO, and cannot find an answer. Of course, I have also used Eclipse's debugger to step and inspect my 'msg'. ...
1
vote
0answers
35 views

rabbit mq message listener

Im using @Autowired RabbitTemplate temp; temp.convertAndSend("aQueue", msg); for sending and @Autowired RabbitTemplate temp; return temp.receiveAndConvert("aQueue"); for receving ...
0
votes
1answer
41 views

Is there a way to deserialize raw byte[] back into thrift object without knowing its thrift type?

I'm running a project that requires inter-communication between different programming languages (mostly java, c++). could serialize/deserialize into both binary format and json format. IDL to ...

1 2 3 4 5 74
15 30 50 per page