You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2023/03/31 13:08:12 UTC

[hop] branch master updated: added default batch size of 1000 to Neo4j Graph Output. fixes #2782

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

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new b7f81cb12a added default batch size of 1000 to Neo4j Graph Output. fixes #2782
     new 72b9361c97 Merge pull request #2798 from bamaer/2782
b7f81cb12a is described below

commit b7f81cb12aae26f677086ef09278d9771ac9378a
Author: Bart Maertens <ba...@know.bi>
AuthorDate: Fri Mar 31 14:19:09 2023 +0200

    added default batch size of 1000 to Neo4j Graph Output. fixes #2782
---
 .../java/org/apache/hop/neo4j/transforms/graph/GraphOutputMeta.java  | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/plugins/tech/neo4j/src/main/java/org/apache/hop/neo4j/transforms/graph/GraphOutputMeta.java b/plugins/tech/neo4j/src/main/java/org/apache/hop/neo4j/transforms/graph/GraphOutputMeta.java
index 8248c532d8..aaa347fc83 100644
--- a/plugins/tech/neo4j/src/main/java/org/apache/hop/neo4j/transforms/graph/GraphOutputMeta.java
+++ b/plugins/tech/neo4j/src/main/java/org/apache/hop/neo4j/transforms/graph/GraphOutputMeta.java
@@ -128,6 +128,11 @@ public class GraphOutputMeta extends BaseTransformMeta<GraphOutput, GraphOutputD
     return GraphOutputDialog.class.getName();
   }
 
+  @Override
+  public void setDefault(){
+    batchSize = "1000";
+  }
+
   @Override
   public void getFields(
       IRowMeta rowMeta,