You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by jm...@apache.org on 2023/02/27 18:07:41 UTC

[accumulo-examples] branch sampexpfix created (now b5ebce4)

This is an automated email from the ASF dual-hosted git repository.

jmark99 pushed a change to branch sampexpfix
in repository https://gitbox.apache.org/repos/asf/accumulo-examples.git


      at b5ebce4  Add flush command following use of batchwriter

This branch includes the following new commits:

     new b5ebce4  Add flush command following use of batchwriter

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[accumulo-examples] 01/01: Add flush command following use of batchwriter

Posted by jm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jmark99 pushed a commit to branch sampexpfix
in repository https://gitbox.apache.org/repos/asf/accumulo-examples.git

commit b5ebce40f7ec7ec157f91b3d758db1d2024a1c28
Author: Mark Owens <jm...@apache.org>
AuthorDate: Mon Feb 27 12:55:42 2023 -0500

    Add flush command following use of batchwriter
    
    Add a flush command following use of batchWriter addMutaion command in
    SampleExample.java.
---
 src/main/java/org/apache/accumulo/examples/sample/SampleExample.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/org/apache/accumulo/examples/sample/SampleExample.java b/src/main/java/org/apache/accumulo/examples/sample/SampleExample.java
index 2e27811..6b5e3c8 100644
--- a/src/main/java/org/apache/accumulo/examples/sample/SampleExample.java
+++ b/src/main/java/org/apache/accumulo/examples/sample/SampleExample.java
@@ -111,6 +111,7 @@ public class SampleExample {
         // update a document in the sample data
         bw.addMutation(createMutation("2317", "milk, eggs, bread, parmigiano-reggiano, butter",
             "file://groceries/9/txt"));
+        bw.flush();
 
         System.out.println(
             "Scanning sample after updating content for docId 2317 (should see content change in sample data) : ");