|
18 | 18 | */
|
19 | 19 | package org.apache.bookkeeper.mledger.impl;
|
20 | 20 |
|
| 21 | +import static org.apache.bookkeeper.mledger.impl.cache.RangeEntryCacheImpl.BOOKKEEPER_READ_OVERHEAD_PER_ENTRY; |
21 | 22 | import static org.mockito.ArgumentMatchers.anyInt;
|
22 | 23 | import static org.mockito.Mockito.any;
|
23 | 24 | import static org.mockito.Mockito.doAnswer;
|
@@ -686,13 +687,15 @@ void testAsyncReadWithMaxSizeByte() throws Exception {
|
686 | 687 | ManagedCursor cursor = ledger.openCursor("c1");
|
687 | 688 |
|
688 | 689 | for (int i = 0; i < 100; i++) {
|
689 |
| - ledger.addEntry(new byte[1024]); |
| 690 | + ledger.addEntry(new byte[(int) (1024)]); |
690 | 691 | }
|
691 | 692 |
|
692 |
| - // First time, since we don't have info, we'll get 1 single entry |
693 |
| - readAndCheck(cursor, 10, 3 * 1024, 1); |
| 693 | + // Since https://github.com/apache/pulsar/pull/23931 improved the performance of delivery, the consumer |
| 694 | + // will get more messages than before(it only receives 1 messages at the first delivery), |
| 695 | + int avg = (int) (BOOKKEEPER_READ_OVERHEAD_PER_ENTRY + 1024); |
| 696 | + readAndCheck(cursor, 10, 3 * avg, 3); |
694 | 697 | // We should only return 3 entries, based on the max size
|
695 |
| - readAndCheck(cursor, 20, 3 * 1024, 3); |
| 698 | + readAndCheck(cursor, 20, 3 * avg, 3); |
696 | 699 | // If maxSize is < avg, we should get 1 entry
|
697 | 700 | readAndCheck(cursor, 10, 500, 1);
|
698 | 701 | }
|
@@ -3914,13 +3917,15 @@ public void testReadEntriesOrWaitWithMaxSize() throws Exception {
|
3914 | 3917 | ledger.addEntry(new byte[1024]);
|
3915 | 3918 | }
|
3916 | 3919 |
|
3917 |
| - // First time, since we don't have info, we'll get 1 single entry |
3918 |
| - List<Entry> entries = c.readEntriesOrWait(10, 3 * 1024); |
3919 |
| - assertEquals(entries.size(), 1); |
| 3920 | + // Since https://github.com/apache/pulsar/pull/23931 improved the performance of delivery, the consumer |
| 3921 | + // will get more messages than before(it only receives 1 messages at the first delivery), |
| 3922 | + int avg = (int) (1024 + BOOKKEEPER_READ_OVERHEAD_PER_ENTRY); |
| 3923 | + List<Entry> entries = c.readEntriesOrWait(10, 3 * avg); |
| 3924 | + assertEquals(entries.size(), 3); |
3920 | 3925 | entries.forEach(Entry::release);
|
3921 | 3926 |
|
3922 | 3927 | // We should only return 3 entries, based on the max size
|
3923 |
| - entries = c.readEntriesOrWait(10, 3 * 1024); |
| 3928 | + entries = c.readEntriesOrWait(10, 3 * avg); |
3924 | 3929 | assertEquals(entries.size(), 3);
|
3925 | 3930 | entries.forEach(Entry::release);
|
3926 | 3931 |
|
@@ -5164,6 +5169,83 @@ public void findEntryFailed(ManagedLedgerException exception, Optional<Position>
|
5164 | 5169 | assertEquals(positionRef4.get(), position4);
|
5165 | 5170 | }
|
5166 | 5171 |
|
| 5172 | + @Test |
| 5173 | + public void testEstimateEntryCountBySize() throws Exception { |
| 5174 | + final String mlName = "ml-" + UUID.randomUUID().toString().replaceAll("-", ""); |
| 5175 | + ManagedLedgerImpl ml = (ManagedLedgerImpl) factory.open(mlName); |
| 5176 | + long entryCount0 = |
| 5177 | + ManagedCursorImpl.estimateEntryCountBySize(16, PositionFactory.create(ml.getCurrentLedger().getId(), 0), ml); |
| 5178 | + assertEquals(entryCount0, 1); |
| 5179 | + // Avoid trimming ledgers. |
| 5180 | + ml.openCursor("c1"); |
| 5181 | + |
| 5182 | + // Build data. |
| 5183 | + for (int i = 0; i < 100; i++) { |
| 5184 | + ml.addEntry(new byte[]{1}); |
| 5185 | + } |
| 5186 | + long ledger1 = ml.getCurrentLedger().getId(); |
| 5187 | + ml.getCurrentLedger().close(); |
| 5188 | + ml.ledgerClosed(ml.getCurrentLedger()); |
| 5189 | + for (int i = 0; i < 100; i++) { |
| 5190 | + ml.addEntry(new byte[]{1, 2}); |
| 5191 | + } |
| 5192 | + long ledger2 = ml.getCurrentLedger().getId(); |
| 5193 | + ml.getCurrentLedger().close(); |
| 5194 | + ml.ledgerClosed(ml.getCurrentLedger()); |
| 5195 | + for (int i = 0; i < 100; i++) { |
| 5196 | + ml.addEntry(new byte[]{1, 2, 3, 4}); |
| 5197 | + } |
| 5198 | + long ledger3 = ml.getCurrentLedger().getId(); |
| 5199 | + MLDataFormats.ManagedLedgerInfo.LedgerInfo ledgerInfo1 = ml.getLedgersInfo().get(ledger1); |
| 5200 | + MLDataFormats.ManagedLedgerInfo.LedgerInfo ledgerInfo2 = ml.getLedgersInfo().get(ledger2); |
| 5201 | + long average1 = ledgerInfo1.getSize() / ledgerInfo1.getEntries() + BOOKKEEPER_READ_OVERHEAD_PER_ENTRY; |
| 5202 | + long average2 = ledgerInfo2.getSize() / ledgerInfo2.getEntries() + BOOKKEEPER_READ_OVERHEAD_PER_ENTRY; |
| 5203 | + long average3 = ml.getCurrentLedgerSize() / ml.getCurrentLedgerEntries() + BOOKKEEPER_READ_OVERHEAD_PER_ENTRY; |
| 5204 | + assertEquals(average1, 1 + BOOKKEEPER_READ_OVERHEAD_PER_ENTRY); |
| 5205 | + assertEquals(average2, 2 + BOOKKEEPER_READ_OVERHEAD_PER_ENTRY); |
| 5206 | + assertEquals(average3, 4 + BOOKKEEPER_READ_OVERHEAD_PER_ENTRY); |
| 5207 | + |
| 5208 | + // Test: the individual ledgers. |
| 5209 | + long entryCount1 = |
| 5210 | + ManagedCursorImpl.estimateEntryCountBySize(average1 * 16, PositionFactory.create(ledger1, 0), ml); |
| 5211 | + assertEquals(entryCount1, 16); |
| 5212 | + long entryCount2 = |
| 5213 | + ManagedCursorImpl.estimateEntryCountBySize(average2 * 8, PositionFactory.create(ledger2, 0), ml); |
| 5214 | + assertEquals(entryCount2, 8); |
| 5215 | + long entryCount3 = |
| 5216 | + ManagedCursorImpl.estimateEntryCountBySize(average3 * 4, PositionFactory.create(ledger3, 0), ml); |
| 5217 | + assertEquals(entryCount3, 4); |
| 5218 | + |
| 5219 | + // Test: across ledgers. |
| 5220 | + long entryCount4 = |
| 5221 | + ManagedCursorImpl.estimateEntryCountBySize((average1 * 100) + (average2 * 8), PositionFactory.create(ledger1, 0), ml); |
| 5222 | + assertEquals(entryCount4, 108); |
| 5223 | + long entryCount5 = |
| 5224 | + ManagedCursorImpl.estimateEntryCountBySize((average2 * 100) + (average3 * 4), PositionFactory.create(ledger2, 0), ml); |
| 5225 | + assertEquals(entryCount5, 104); |
| 5226 | + long entryCount6 = |
| 5227 | + ManagedCursorImpl.estimateEntryCountBySize((average1 * 100) + (average2 * 100) + (average3 * 4), PositionFactory.create(ledger1, 0), ml); |
| 5228 | + assertEquals(entryCount6, 204); |
| 5229 | + |
| 5230 | + long entryCount7 = |
| 5231 | + ManagedCursorImpl.estimateEntryCountBySize((average1 * 20) + (average2 * 8), PositionFactory.create(ledger1, 80), ml); |
| 5232 | + assertEquals(entryCount7, 28); |
| 5233 | + long entryCount8 = |
| 5234 | + ManagedCursorImpl.estimateEntryCountBySize((average2 * 20) + (average3 * 4), PositionFactory.create(ledger2, 80), ml); |
| 5235 | + assertEquals(entryCount8, 24); |
| 5236 | + long entryCount9 = |
| 5237 | + ManagedCursorImpl.estimateEntryCountBySize((average1 * 20) + (average2 * 100) + (average3 * 4), PositionFactory.create(ledger1, 80), ml); |
| 5238 | + assertEquals(entryCount9, 124); |
| 5239 | + |
| 5240 | + // Test: read more than entries written. |
| 5241 | + long entryCount10 = |
| 5242 | + ManagedCursorImpl.estimateEntryCountBySize((average1 * 100) + (average2 * 100) + (average3 * 100) + (average3 * 4) , PositionFactory.create(ledger1, 0), ml); |
| 5243 | + assertEquals(entryCount10, 304); |
| 5244 | + |
| 5245 | + // cleanup. |
| 5246 | + ml.delete(); |
| 5247 | + } |
| 5248 | + |
5167 | 5249 | @Test
|
5168 | 5250 | void testForceCursorRecovery() throws Exception {
|
5169 | 5251 | TestPulsarMockBookKeeper bk = new TestPulsarMockBookKeeper(executor);
|
|
0 commit comments