Details
-
Type:
Improvement
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Won't Fix
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: library
-
Security Level: Public
-
Labels:None
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.
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.
Activity
- All
- Comments
- Work Log
- History
- Activity
- Gerrit Reviews