| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | mark all messages enqueued in the slave as 'delivered' | Matthias Radestock | 2012-11-26 | 7 | -57/+40 |
| | | | | | | | | | | which is a much better than the set_delivered logic, which we can now get rid of. In doing so it also becomes clear that having the 'delivered' flag in the #message_properties is less than ideal. It is mutable and we never bothered updating vq s.t. it sets the flag correctly. So lets get rid of it and add a parameter to bq:publish instead | ||||
| * | merge bug25324 into default | Matthias Radestock | 2012-11-24 | 1 | -1/+1 |
| |\ | |||||
| | * | 'pid' is a valid INFO_KEY | Matthias Radestock | 2012-11-24 | 1 | -1/+1 |
| |/ | | | | and some code, namely the clustering tests, rely on that | ||||
| * | merge bug25303 into default | Matthias Radestock | 2012-11-23 | 5 | -9/+93 |
| |\ | |||||
| | * | cosmetic | Matthias Radestock | 2012-11-23 | 1 | -6/+5 |
| | | | |||||
| | * | more precise signature | Matthias Radestock | 2012-11-23 | 1 | -3/+2 |
| | | | |||||
| | * | Better type signature | Emile Joubert | 2012-11-23 | 2 | -7/+3 |
| | | | | | | | | | ...and rollback amqqueue_process changes | ||||
| | * | Propagate API change | Emile Joubert | 2012-11-23 | 3 | -2/+17 |
| | | | |||||
| | * | Backing queue fold tests | Emile Joubert | 2012-11-23 | 1 | -2/+20 |
| | | | |||||
| | * | Refactor backing queue delta fold | Emile Joubert | 2012-11-23 | 1 | -39/+32 |
| | | | |||||
| | * | QC test for backing queue fold | Emile Joubert | 2012-11-22 | 2 | -5/+22 |
| | | | |||||
| | * | Merged default | Emile Joubert | 2012-11-22 | 5 | -23/+30 |
| | |\ | |||||
| | * \ | Merged default | Emile Joubert | 2012-11-22 | 1 | -0/+47 |
| | |\ \ | |||||
| | | * | | Minimal backing queue fold | Emile Joubert | 2012-11-21 | 4 | -22/+83 |
| | | | | | |||||
| * | | | | Merged bug25315 | Emile Joubert | 2012-11-23 | 7 | -151/+197 |
| |\ \ \ \ | |||||
| | * | | | | refactor: vq:ram_ack_index doesn't need to be a gb_tree | Matthias Radestock | 2012-11-23 | 1 | -12/+11 |
| | | | | | | | | | | | | | | | | | | | | | a gb_set suffices | ||||
| | * | | | | merge bug23625 into default | Matthias Radestock | 2012-11-23 | 4 | -106/+137 |
| | |\ \ \ \ | | |_|_|/ | |/| | | | |||||
| | | * | | | Explain | Simon MacMullen | 2012-11-22 | 1 | -0/+10 |
| | | | | | | |||||
| | | * | | | Don't duplicate name. | Simon MacMullen | 2012-11-22 | 1 | -1/+1 |
| | | | | | | |||||
| | | * | | | optimise | Matthias Radestock | 2012-11-16 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | | this brings perf roughly on par with default | ||||
| | | * | | | identify queues by name rather than pid in channel stats | Matthias Radestock | 2012-11-16 | 2 | -67/+86 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - in deliver_to_queues, take the result of rabbit_amqqueue:lookup and use it to a) add entries to a QPid -> QName mapping in the state for all master pids, and b) setup monitors for all master pids - for the stats creation in deliver_to_queues, map the DeliveredQPids to the associated QNames, via the mapping in the State. Note that this will ignore slave pids, hence we only get one stat per QName (which is good). Also, in the event that the master died between lookup and delivery (and the delivery was 'mandatory'), we will not record any stats at all. - in monitor_delivering_queue, which is called by basic.{consume,get} we add to the mapping - in ack/2 we use the mapping to obtain QNames from QPids, and use that in stats. Since a queue may have vanished prior to the ack/reject arriving, we need to handle the case of no entry being present in the mapping for the given QPid. - in record_sent we have the QName anyway, so can just record stats against that instead of the QPid. - in the 'DOWN' handler we use the mapping to determine the QName from the pid, and pass that to erase_queue_stats, which can now remove entries based on the QName. We then remove the entry from the mapping. | ||||
| | | * | | | propagate API change | Matthias Radestock | 2012-11-16 | 1 | -1/+1 |
| | | | | | | |||||
| | | * | | | merge default into bug23625 | Matthias Radestock | 2012-11-16 | 2 | -38/+38 |
| | | |\ \ \ | |||||
| | | | * \ \ | merge default into bug23625 | Matthias Radestock | 2012-11-16 | 4 | -89/+69 |
| | | | |\ \ \ | |||||
| | | | * \ \ \ | merge default into bug23625 | Matthias Radestock | 2012-11-15 | 2 | -38/+38 |
| | | | |\ \ \ \ | |||||
| | | | | * \ \ \ | merge default into bug23625 | Matthias Radestock | 2012-11-15 | 1 | -6/+4 |
| | | | | |\ \ \ \ | |||||
| | | | | * | | | | | reference queue by name in consumer events | Matthias Radestock | 2012-11-15 | 1 | -18/+22 |
| | | | | | | | | | | |||||
| | | | | * | | | | | emit names instead of pids in queue process' queue events | Matthias Radestock | 2012-11-15 | 2 | -20/+16 |
| | | | | | | | | | | |||||
| | | | | * | | | | | restart branch | Matthias Radestock | 2012-11-15 | 0 | -0/+0 |
| | | | | | | | | | | |||||
| | * | | | | | | | | stable to default | Simon MacMullen | 2012-11-22 | 8 | -83/+141 |
| | |\ \ \ \ \ \ \ \ | |||||
| | | * \ \ \ \ \ \ \ | merge bug25314 into default | Matthias Radestock | 2012-11-22 | 0 | -0/+0 |
| | | |\ \ \ \ \ \ \ \ | | | | |_|_|_|_|/ / | | | |/| | | | | | | |||||
| | | * | | | | | | | | Rename backing queue fold | Emile Joubert | 2012-11-22 | 5 | -11/+12 |
| | | |/ / / / / / / | |||||
| | | * | | | | | | | Merged stable | Emile Joubert | 2012-11-22 | 8 | -72/+129 |
| | | |\ \ \ \ \ \ \ | |||||
| | * | \ \ \ \ \ \ \ | Merge bug25305 | Simon MacMullen | 2012-11-22 | 3 | -13/+24 |
| | |\ \ \ \ \ \ \ \ \ | | |/ / / / / / / / | |||||
| | | * | | | | | | | | Merged bug25306 | Emile Joubert | 2012-11-22 | 2 | -11/+20 |
| | | |\ \ \ \ \ \ \ \ | |||||
| | | | * | | | | | | | | leave the ram_msg_count unchanged in BQ:fold | Matthias Radestock | 2012-11-22 | 1 | -5/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | since we are not moving messages *into the queue* | ||||
| | | | * | | | | | | | | add test for invoking bq:fold when messages are on disk | Matthias Radestock | 2012-11-21 | 1 | -0/+7 |
| | | | | | | | | | | | | |||||
| | | | * | | | | | | | | assert after fold | Matthias Radestock | 2012-11-21 | 1 | -7/+6 |
| | | | | | | | | | | | | |||||
| | | | * | | | | | | | | assertion | Matthias Radestock | 2012-11-20 | 1 | -0/+1 |
| | | | | | | | | | | | | |||||
| | * | | | | | | | | | | ack unroutable dead-lettered messages straight away | Matthias Radestock | 2012-11-20 | 1 | -12/+18 |
| | | |/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | thus plugging a leak | ||||
| * | | | | | | | | | | propagate API change | Matthias Radestock | 2012-11-22 | 1 | -4/+4 |
| | | | | | | | | | | | |||||
| * | | | | | | | | | | bq api tweak: don't include remaining message count in fetch/drop result | Matthias Radestock | 2012-11-22 | 6 | -47/+42 |
| | |_|/ / / / / / / |/| | | | | | | | | |||||
| * | | | | | | | | | merge stable into default | Matthias Radestock | 2012-11-22 | 8 | -72/+129 |
| |\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | | | | | | | | |||||
| | * | | | | | | | | refactor: simplify rabbit_exchange:serialise_events | Matthias Radestock | 2012-11-21 | 1 | -6/+2 |
| | | | | | | | | | | |||||
| | * | | | | | | | | simplify & optimise rabbit_exchange:callback/4 | Matthias Radestock | 2012-11-21 | 1 | -9/+5 |
| | | | | | | | | | | |||||
| | * | | | | | | | | Merged bug25302 | Emile Joubert | 2012-11-21 | 1 | -1/+0 |
| | |\ \ \ \ \ \ \ \ | |||||
| | | * | | | | | | | | remove unused vqstate field | Matthias Radestock | 2012-11-20 | 1 | -1/+0 |
| | | | |_|_|_|_|_|/ | | |/| | | | | | | |||||
| | * | | | | | | | | BQ quickcheck postcondition for drop | Emile Joubert | 2012-11-21 | 1 | -2/+2 |
| | | | | | | | | | | |||||
| | * | | | | | | | | some quick check tests | Matthias Radestock | 2012-11-20 | 1 | -22/+48 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | all work ok, but then again that's also the case when I completely break vq. | ||||
| | * | | | | | | | | add test of vq:drop | Matthias Radestock | 2012-11-20 | 1 | -0/+15 |
| | | | | | | | | | | |||||
