HBASE-13628 Use AtomicLong as size in BoundedConcurrentLinkedQueue

Conflicts:
	hbase-server/src/test/java/org/apache/hadoop/hbase/util/TestBoundedConcurrentLinkedQueue.java
This commit is contained in:
zhangduo 2015-05-06 14:48:08 +08:00
parent 426c7eef09
commit a64b3da63b
2 changed files with 117 additions and 34 deletions

View File

@ -19,6 +19,7 @@ package org.apache.hadoop.hbase.util;
import java.util.Collection; import java.util.Collection;
import java.util.concurrent.ConcurrentLinkedQueue; import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicLong;
import org.apache.hadoop.hbase.classification.InterfaceAudience; import org.apache.hadoop.hbase.classification.InterfaceAudience;
import org.apache.hadoop.hbase.classification.InterfaceStability; import org.apache.hadoop.hbase.classification.InterfaceStability;
@ -30,7 +31,7 @@ import org.apache.hadoop.hbase.classification.InterfaceStability;
@InterfaceStability.Stable @InterfaceStability.Stable
public class BoundedConcurrentLinkedQueue<T> extends ConcurrentLinkedQueue<T> { public class BoundedConcurrentLinkedQueue<T> extends ConcurrentLinkedQueue<T> {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
private volatile long size = 0; private final AtomicLong size = new AtomicLong(0L);
private final long maxSize; private final long maxSize;
public BoundedConcurrentLinkedQueue() { public BoundedConcurrentLinkedQueue() {
@ -42,33 +43,42 @@ public class BoundedConcurrentLinkedQueue<T> extends ConcurrentLinkedQueue<T> {
this.maxSize = maxSize; this.maxSize = maxSize;
} }
@Override
public boolean add(T e) {
return offer(e);
}
@Override @Override
public boolean addAll(Collection<? extends T> c) { public boolean addAll(Collection<? extends T> c) {
size += c.size(); // Between here and below we might reject offers, for (;;) {
if (size > maxSize) { // if over maxSize, but that's ok long currentSize = size.get();
size -= c.size(); // We're over, just back out and return. long nextSize = currentSize + c.size();
if (nextSize > maxSize) { // already exceeded limit
return false; return false;
} }
if (size.compareAndSet(currentSize, nextSize)) {
break;
}
}
return super.addAll(c); // Always true for ConcurrentLinkedQueue return super.addAll(c); // Always true for ConcurrentLinkedQueue
} }
@Override @Override
public void clear() { public void clear() {
super.clear(); // override this method to batch update size.
size = 0; long removed = 0L;
while (super.poll() != null) {
removed++;
}
size.addAndGet(-removed);
} }
@Override @Override
public boolean offer(T e) { public boolean offer(T e) {
if (++size > maxSize) { for (;;) {
--size; // We didn't take it after all long currentSize = size.get();
if (currentSize >= maxSize) { // already exceeded limit
return false; return false;
} }
if (size.compareAndSet(currentSize, currentSize + 1)) {
break;
}
}
return super.offer(e); // Always true for ConcurrentLinkedQueue return super.offer(e); // Always true for ConcurrentLinkedQueue
} }
@ -76,7 +86,7 @@ public class BoundedConcurrentLinkedQueue<T> extends ConcurrentLinkedQueue<T> {
public T poll() { public T poll() {
T result = super.poll(); T result = super.poll();
if (result != null) { if (result != null) {
--size; size.decrementAndGet();
} }
return result; return result;
} }
@ -85,30 +95,28 @@ public class BoundedConcurrentLinkedQueue<T> extends ConcurrentLinkedQueue<T> {
public boolean remove(Object o) { public boolean remove(Object o) {
boolean result = super.remove(o); boolean result = super.remove(o);
if (result) { if (result) {
--size; size.decrementAndGet();
} }
return result; return result;
} }
@Override @Override
public int size() { public int size() {
return (int) size; return (int) size.get();
} }
public void drainTo(Collection<T> list) { public void drainTo(Collection<T> list) {
long removed = 0; long removed = 0;
T l; for (T element; (element = super.poll()) != null;) {
while ((l = super.poll()) != null) { list.add(element);
list.add(l);
removed++; removed++;
} }
// Limit the number of operations on a volatile by only reporting size // Limit the number of operations on size by only reporting size change after the drain is
// change after the drain is completed. // completed.
size -= removed; size.addAndGet(-removed);
} }
public long remainingCapacity() { public long remainingCapacity() {
long remaining = maxSize - size; return maxSize - size.get();
return remaining >= 0 ? remaining : 0;
} }
} }

View File

@ -18,14 +18,15 @@
package org.apache.hadoop.hbase.util; package org.apache.hadoop.hbase.util;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.Random;
import java.util.concurrent.atomic.AtomicBoolean;
import org.apache.hadoop.hbase.testclassification.SmallTests; import org.apache.hadoop.hbase.testclassification.SmallTests;
import org.junit.After;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
import org.junit.experimental.categories.Category; import org.junit.experimental.categories.Category;
@ -41,10 +42,6 @@ public class TestBoundedConcurrentLinkedQueue {
this.queue = new BoundedConcurrentLinkedQueue<Long>(CAPACITY); this.queue = new BoundedConcurrentLinkedQueue<Long>(CAPACITY);
} }
@After
public void tearDown() throws Exception {
}
@Test @Test
public void testOfferAndPoll() throws Exception { public void testOfferAndPoll() throws Exception {
// Offer // Offer
@ -82,4 +79,82 @@ public class TestBoundedConcurrentLinkedQueue {
assertEquals(0, queue.size()); assertEquals(0, queue.size());
assertEquals(CAPACITY, queue.remainingCapacity()); assertEquals(CAPACITY, queue.remainingCapacity());
} }
@Test
public void testClear() {
// Offer
for (long i = 1; i <= CAPACITY; ++i) {
assertTrue(queue.offer(i));
assertEquals(i, queue.size());
assertEquals(CAPACITY - i, queue.remainingCapacity());
}
assertFalse(queue.offer(0L));
queue.clear();
assertEquals(null, queue.poll());
assertEquals(0, queue.size());
assertEquals(CAPACITY, queue.remainingCapacity());
}
@Test
public void testMultiThread() throws InterruptedException {
int offerThreadCount = 10;
int pollThreadCount = 5;
int duration = 5000; // ms
final AtomicBoolean stop = new AtomicBoolean(false);
Thread[] offerThreads = new Thread[offerThreadCount];
for (int i = 0; i < offerThreadCount; i++) {
offerThreads[i] = new Thread("offer-thread-" + i) {
@Override
public void run() {
Random rand = new Random();
while (!stop.get()) {
queue.offer(rand.nextLong());
try {
Thread.sleep(1);
} catch (InterruptedException e) {
}
}
}
};
}
Thread[] pollThreads = new Thread[pollThreadCount];
for (int i = 0; i < pollThreadCount; i++) {
pollThreads[i] = new Thread("poll-thread-" + i) {
@Override
public void run() {
while (!stop.get()) {
queue.poll();
try {
Thread.sleep(1);
} catch (InterruptedException e) {
}
}
}
};
}
for (Thread t : offerThreads) {
t.start();
}
for (Thread t : pollThreads) {
t.start();
}
long startTime = System.currentTimeMillis();
while (System.currentTimeMillis() - startTime < duration) {
assertTrue(queue.size() <= CAPACITY);
Thread.yield();
}
stop.set(true);
for (Thread t : offerThreads) {
t.join();
}
for (Thread t : pollThreads) {
t.join();
}
assertTrue(queue.size() <= CAPACITY);
}
} }