コード例 #1
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 /**
  * Blocking call with a different behavior based on the flush mode. PleaseThrottleException is
  * managed by this method and will not be thrown, unlike {@link AsyncKuduSession#apply}.
  *
  * <p>
  *
  * <ul>
  *   <li>AUTO_FLUSH_SYNC: the call returns when the operation is persisted, else it throws an
  *       exception.
  *   <li>AUTO_FLUSH_BACKGROUND: the call returns when the operation has been added to the buffer.
  *       This call should normally perform only fast in-memory operations but it may have to wait
  *       when the buffer is full and there's another buffer being flushed. Row errors can be
  *       checked by calling {@link #countPendingErrors()} and can be retrieved by calling {@link
  *       #getPendingErrors()}.
  *   <li>MANUAL_FLUSH: the call returns when the operation has been added to the buffer, else it
  *       throws an exception such as a NonRecoverableException if the buffer is full.
  * </ul>
  *
  * @param operation operation to apply
  * @return an OperationResponse for the applied Operation
  * @throws Exception if anything went wrong
  */
 public OperationResponse apply(Operation operation) throws Exception {
   while (true) {
     try {
       Deferred<OperationResponse> d = session.apply(operation);
       if (getFlushMode() == FlushMode.AUTO_FLUSH_SYNC) {
         return d.join(getTimeoutMillis());
       }
       break;
     } catch (PleaseThrottleException ex) {
       try {
         ex.getDeferred().join(getTimeoutMillis());
       } catch (Exception e) {
         // This is the error response from the buffer that was flushing,
         // we can't do much with it at this point.
         LOG.error("Previous batch had this exception", e);
       }
     } catch (Exception e) {
       throw e;
     }
   }
   return null;
 }
コード例 #2
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public int countPendingErrors() {
   return session.countPendingErrors();
 }
コード例 #3
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public RowErrorsAndOverflowStatus getPendingErrors() {
   return session.getPendingErrors();
 }
コード例 #4
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public boolean isIgnoreAllDuplicateRows() {
   return session.isIgnoreAllDuplicateRows();
 }
コード例 #5
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public void setIgnoreAllDuplicateRows(boolean ignoreAllDuplicateRows) {
   session.setIgnoreAllDuplicateRows(ignoreAllDuplicateRows);
 }
コード例 #6
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public boolean hasPendingOperations() {
   return session.hasPendingOperations();
 }
コード例 #7
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public void setExternalConsistencyMode(ExternalConsistencyMode consistencyMode) {
   session.setExternalConsistencyMode(consistencyMode);
 }
コード例 #8
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public void setTimeoutMillis(long timeout) {
   session.setTimeoutMillis(timeout);
 }
コード例 #9
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public boolean isClosed() {
   return session.isClosed();
 }
コード例 #10
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public void setFlushInterval(int interval) {
   session.setFlushInterval(interval);
 }
コード例 #11
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public long getTimeoutMillis() {
   return session.getTimeoutMillis();
 }
コード例 #12
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public void setMutationBufferLowWatermark(float mutationBufferLowWatermarkPercentage) {
   session.setMutationBufferLowWatermark(mutationBufferLowWatermarkPercentage);
 }
コード例 #13
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public void setMutationBufferSpace(int size) {
   session.setMutationBufferSpace(size);
 }
コード例 #14
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public void setFlushMode(AsyncKuduSession.FlushMode flushMode) {
   session.setFlushMode(flushMode);
 }
コード例 #15
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 @Override
 public FlushMode getFlushMode() {
   return session.getFlushMode();
 }
コード例 #16
0
ファイル: KuduSession.java プロジェクト: eddieesquivel/kudu
 /**
  * Blocking call that flushes the buffers (see {@link #flush()} and closes the sessions.
  *
  * @return List of OperationResponse, one per operation that was flushed
  * @throws Exception if anything went wrong. If it's an issue with some or all batches, it will be
  *     of type DeferredGroupException.
  */
 public List<OperationResponse> close() throws Exception {
   return session.close().join(getTimeoutMillis());
 }