You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: IO/src/main/java/org/ohnlp/backbone/io/local/CSVExtract.java
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,13 @@ public class CSVExtract extends ExtractToMany {
52
52
)
53
53
privatebooleanskipFirstRow;
54
54
55
+
@ConfigurationProperty(
56
+
path = "fanout",
57
+
desc = "Whether to reshuffle records after read. Defaults to false. Set to true if fanout is needed (i.e., if your individual CSV files are very large)",
58
+
required = false
59
+
)
60
+
privatebooleanfanout = false;
61
+
55
62
@ConfigurationProperty(
56
63
path = "schema",
57
64
desc = "CSV File Schema"
@@ -65,11 +72,11 @@ public class CSVExtract extends ExtractToMany {
0 commit comments