Github user cestella commented on a diff in the pull request:
https://github.com/apache/incubator-metron/pull/188#discussion_r70703025
--- Diff:
metron-platform/metron-common/src/main/java/org/apache/metron/common/writer/BulkWriterComponent.java
---
@@ -34,21 +34,37 @@
import java.util.function.Function;
public class BulkWriterComponent<MESSAGE_T> {
- public static final Logger LOG = LoggerFactory
- .getLogger(BulkWriterComponent.class);
+ public static final Logger LOG =
LoggerFactory.getLogger(BulkWriterComponent.class);
private Map<String, Collection<Tuple>> sensorTupleMap = new HashMap<>();
private Map<String, List<MESSAGE_T>> sensorMessageMap = new HashMap<>();
private OutputCollector collector;
private boolean handleCommit = true;
private boolean handleError = true;
+ private Long lastFlushTime;
+ private Long flushIntervalInMs;
+ private boolean flush = false;
+
+
public BulkWriterComponent(OutputCollector collector) {
this.collector = collector;
+ this.lastFlushTime = System.currentTimeMillis();
+ this.flush = false;
}
public BulkWriterComponent(OutputCollector collector, boolean
handleCommit, boolean handleError) {
this(collector);
this.handleCommit = handleCommit;
this.handleError = handleError;
+ this.lastFlushTime = System.currentTimeMillis();
+ this.flush = false;
+ }
+
+ public void setFlush(boolean flush) {
--- End diff --
Since you're deciding whether to flush based on variables in the global
config, we don't need member variables and setters for `flush` and
`flushInterval`. I don't like setting a member variable in the class every
time we call write and we don't need it, they can be local variables to write
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---