Github user HeartSaVioR commented on a diff in the pull request:
https://github.com/apache/storm/pull/2467#discussion_r158658318
--- Diff:
external/storm-solr/src/main/java/org/apache/storm/solr/mapper/SolrMapper.java
---
@@ -26,6 +26,7 @@
import java.util.List;
public interface SolrMapper extends Serializable {
+ void configure();
--- End diff --
Is there no chance to add it to some kind of configurations (with proper
default) and move out of interface? Just to find alternatives which don't break
backward compatibility.
---