You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/01/07 17:27:29 UTC

[airavata] branch develop updated: Updating helix standalone vars

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

machristie pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git


The following commit(s) were added to refs/heads/develop by this push:
     new 11cb76d  Updating helix standalone vars
11cb76d is described below

commit 11cb76df6bad4e22c34aa5d9b6bcc1094eb391d8
Author: Marcus Christie <ma...@iu.edu>
AuthorDate: Mon Jan 7 12:26:42 2019 -0500

    Updating helix standalone vars
---
 .../inventories/standalone/group_vars/helix/vars.yml     | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/dev-tools/ansible/inventories/standalone/group_vars/helix/vars.yml b/dev-tools/ansible/inventories/standalone/group_vars/helix/vars.yml
index f96f15a..699ede2 100644
--- a/dev-tools/ansible/inventories/standalone/group_vars/helix/vars.yml
+++ b/dev-tools/ansible/inventories/standalone/group_vars/helix/vars.yml
@@ -26,14 +26,24 @@ helix_cluster_name: "AiravataDemoCluster"
 
 snapshot_version: "0.17-SNAPSHOT"
 
+# Listening port for kafka installations
+kafka_listener_port: 9092
+kafka_rest_proxy_listener_port: 8082
+
 # Realtime Monitoring related variables
-realtime_monitor_broker_url: "CHANGEME"
+realtime_monitor_broker_url: "{{ groups['kafka'][0] }}:{{ kafka_listener_port }}"
 realtime_monitor_broker_publisher: "RealtimeProducer"
 realtime_monitor_broker_consumer_group: "monitor"
 realtime_monitor_broker_topic: "helix-airavata-mq"
 
 # Variables related to the broker in which parsed job statuses are published
-job_monitor_broker_url: "CHANGEME"
+job_monitor_broker_url: "{{ groups['kafka'][0] }}:{{ kafka_listener_port }}"
 job_monitor_broker_topic: "parsed-data"
 job_monitor_broker_consumer_group: "MonitoringConsumer"
-...
+
+# Variables related to parser framework
+parser_broker_url: "{{ groups['kafka'][0] }}:{{ kafka_listener_port }}"
+parser_broker_topic: "completed-messages"
+parser_broker_consumer_group: "ParsingConsumer"
+parser_storage_resource_id: "CHANGEME"
+parser_broker_publisher_id: "ParserProducer"