[JCBC-194] TAP client within spymemcached does not get all items from cluster Created: 17/Jan/12 Updated: 19/Dec/12 Resolved: 19/Dec/12 |
|
| Status: | Resolved |
| Project: | Couchbase Java Client |
| Component/s: | library |
| Affects Version/s: | None |
| Fix Version/s: | None |
| Security Level: | Public |
| Type: | Improvement | Priority: | Major |
| Reporter: | Perry Krug | Assignee: | Michael Nitschinger |
| Resolution: | Won't Fix | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Description |
|
From the customer:
TapClient client = new TapClient(baseURIs, "default", "default", ""); Operation op = client.tapDump("test tap client"); while (client.hasMoreMessages()) { ResponseMessage message = client.getNextMessage(); if (message != null) { System.out.println(message.getKey()); } } I made the client point to a cluster that has 60 M records . The client printed out about 8M and stopped without error, when I tried again it stopped at 10M. |