Github user anandsubbu commented on a diff in the pull request:
https://github.com/apache/metron/pull/817#discussion_r147587694
--- Diff:
metron-deployment/packaging/ambari/metron-mpack/src/main/resources/common-services/METRON/CURRENT/package/scripts/indexing_master.py
---
@@ -82,6 +82,13 @@ def start(self, env, upgrade_type=None):
self.configure(env)
commands = IndexingCommands(params)
commands.start_indexing_topology(env)
+ # Install elasticsearch templates
+ try:
+ if not commands.is_elasticsearch_template_installed():
+ self.elasticsearch_template_install(env)
+ commands.set_elasticsearch_template_installed()
--- End diff --
Thank you @nickwallen . Sure, done!
---