You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@kudu.apache.org by "Jean-Daniel Cryans (Code Review)" <ge...@ip-10-146-233-104.ec2.internal> on 2016/01/27 20:27:07 UTC

[kudu-CR] KUDU-1250. [java client] Track row errors in KuduSession when AUTO_FLUSH_BACKGROUND

Jean-Daniel Cryans has uploaded a new change for review.

  http://gerrit.cloudera.org:8080/1924

Change subject: KUDU-1250. [java client] Track row errors in KuduSession when AUTO_FLUSH_BACKGROUND
......................................................................

KUDU-1250. [java client] Track row errors in KuduSession when AUTO_FLUSH_BACKGROUND

This patch adds a critically missing piece in the Java sync client.
It was impossible to track row errors when using AUTO_FLUSH_BACKGROUND.
You could still do it with the async client by attaching callbacks.

The APIs are named the same as in the C++ client.

Change-Id: I0216619f3a49f2b70b8719dac99a787cf46202a1
---
M java/kudu-client/src/main/java/org/kududb/client/AsyncKuduSession.java
M java/kudu-client/src/main/java/org/kududb/client/KuduSession.java
M java/kudu-client/src/main/java/org/kududb/client/SessionConfiguration.java
M java/kudu-client/src/test/java/org/kududb/client/TestRowErrors.java
4 files changed, 86 insertions(+), 24 deletions(-)


  git pull ssh://gerrit.cloudera.org:29418/kudu refs/changes/24/1924/1
-- 
To view, visit http://gerrit.cloudera.org:8080/1924
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0216619f3a49f2b70b8719dac99a787cf46202a1
Gerrit-PatchSet: 1
Gerrit-Project: kudu
Gerrit-Branch: master
Gerrit-Owner: Jean-Daniel Cryans