summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2012-02-14 16:04:36 +0000
committerAlan Conway <aconway@apache.org>2012-02-14 16:04:36 +0000
commitc550c9d4c7b4653648a1d8b3fabf86d9a5689720 (patch)
tree0e2b60286c10c9c3b3d16c47aad07e7ec6da3e9c
parentc0d907729d06f7cbd4e4bcabb7f3ee6c35f2af2d (diff)
downloadqpid-python-c550c9d4c7b4653648a1d8b3fabf86d9a5689720.tar.gz
QPID-3603: Fix race condition in setting initial position of ReplicatingSubscription.
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/qpid-3603-6@1244053 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/broker/Queue.cpp9
-rw-r--r--qpid/cpp/src/qpid/broker/Queue.h1
-rw-r--r--qpid/cpp/src/qpid/ha/ReplicatingSubscription.cpp18
3 files changed, 8 insertions, 20 deletions
diff --git a/qpid/cpp/src/qpid/broker/Queue.cpp b/qpid/cpp/src/qpid/broker/Queue.cpp
index 5ee2440b59..1a3b6ade84 100644
--- a/qpid/cpp/src/qpid/broker/Queue.cpp
+++ b/qpid/cpp/src/qpid/broker/Queue.cpp
@@ -1613,15 +1613,6 @@ class FindLowest
};
}
-bool Queue::getOldest(qpid::framing::SequenceNumber& oldest)
-{
- //Horribly inefficient, but saves modifying Messages interface and
- //all its implementations at present:
- FindLowest f;
- eachMessage(boost::bind(&FindLowest::process, &f, _1));
- return f.getLowest(oldest);
-}
-
Queue::UsageBarrier::UsageBarrier(Queue& q) : parent(q), count(0) {}
bool Queue::UsageBarrier::acquire()
diff --git a/qpid/cpp/src/qpid/broker/Queue.h b/qpid/cpp/src/qpid/broker/Queue.h
index 9644be7183..f30a4196db 100644
--- a/qpid/cpp/src/qpid/broker/Queue.h
+++ b/qpid/cpp/src/qpid/broker/Queue.h
@@ -421,7 +421,6 @@ class Queue : public boost::enable_shared_from_this<Queue>,
uint32_t getDequeueSincePurge() { return dequeueSincePurge.get(); }
void setDequeueSincePurge(uint32_t value);
- bool getOldest(framing::SequenceNumber& result);
};
}
}
diff --git a/qpid/cpp/src/qpid/ha/ReplicatingSubscription.cpp b/qpid/cpp/src/qpid/ha/ReplicatingSubscription.cpp
index 00be587fe4..8df24f2dfc 100644
--- a/qpid/cpp/src/qpid/ha/ReplicatingSubscription.cpp
+++ b/qpid/cpp/src/qpid/ha/ReplicatingSubscription.cpp
@@ -98,24 +98,21 @@ ReplicatingSubscription::ReplicatingSubscription(
// Note that broker::Queue::getPosition() returns the sequence
// number that will be assigned to the next message *minus 1*.
- // this->position is inherited from ConsumerImpl. It tracks the
- // position of the last message browsed on the local (primary)
- // queue, or more exactly the next sequence number to browse
- // *minus 1*
- qpid::framing::SequenceNumber oldest;
- position = queue->getOldest(oldest) ? --oldest : queue->getPosition();
-
// this->backupPosition tracks the position of the remote backup
// queue, i.e. the sequence number for the next delivered message
// *minus one*
backupPosition = 0;
+
+ // FIXME aconway 2011-12-15: ConsumerImpl::position is left at 0
+ // so we will start consuming from the lowest numbered message.
+ // This is incorrect if the sequence number wraps around, but
+ // this is what all consumers currently do.
}
// Message is delivered in the subscription's connection thread.
bool ReplicatingSubscription::deliver(QueuedMessage& m) {
// Add position events for the subscribed queue, not for the internal event queue.
- if (m.queue && m.queue->getName() == getQueue()->getName()) {
- QPID_LOG(trace, "HA: replicating message to backup: " << QueuePos(m));
+ if (m.queue && m.queue == getQueue().get()) {
assert(position == m.position);
{
sys::Mutex::ScopedLock l(lock);
@@ -130,6 +127,7 @@ bool ReplicatingSubscription::deliver(QueuedMessage& m) {
}
backupPosition = position;
}
+ QPID_LOG(trace, "HA: replicating message to backup: " << QueuePos(m));
}
return ConsumerImpl::deliver(m);
}
@@ -213,7 +211,7 @@ void ReplicatingSubscription::dequeued(const QueuedMessage& m)
{
sys::Mutex::ScopedLock l(lock);
dequeues.add(m.position);
- QPID_LOG(trace, "HA: Will dequeue " << QueuePos(m) << " on " << getName());
+ QPID_LOG(trace, "HA: Dequeued " << QueuePos(m) << " on " << getName());
}
notify(); // Ensure a call to doDispatch
if (m.position > position) {