arvindshmicrosoft commented on a change in pull request #270: Support Accumulo 
installs on Microsoft Azure
URL: https://github.com/apache/fluo-muchos/pull/270#discussion_r313100476
 
 

 ##########
 File path: conf/muchos.props.example.azure
 ##########
 @@ -0,0 +1,180 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+[general]
+# Cluster type (Azure, ec2, or existing)
+cluster_type = azure
+# Cluster user name (install command will SSH to cluster using this user)
+# Leave default below if launching cluster in AWS
+cluster_user = azureuser
+# Cluster user group
+cluster_group = %(cluster_user)s
+# Cluster user home directory
+user_home = /home/%(cluster_user)s
+# Install directory where Hadoop, Accumulo, etc will be installed
+install_dir = %(user_home)s/install
+# Hostname of proxy node that Muchos will use to direct installation of 
cluster.  Will be given
+# public IP if launching in EC2.  If not launching in EC2, node must have 
public IP that can be reached
+# from your machine. Hostname can be chosen from "nodes" section below.
+proxy_hostname = leader1
+# If set, a SOCKS proxy will be created on the specified port when connecting 
to proxy using 'muchos ssh <cluster>'
+#proxy_socks_port = 38585
+# Accumulo Instance name
+accumulo_instance = muchos
+# Accumluo Password
+accumulo_password = secret
+# Software versions (set sha-256 in conf/checksums)
+hadoop_version = 2.8.5
+zookeeper_version = 3.4.14
+spark_version = 2.2.2
+fluo_version = 1.2.0
+fluo_yarn_version = 1.0.0
+accumulo_version = 1.9.3
+# Specifies if software should be downloaded. If 'False', tarballs of the 
software above should be in conf/upload/
+download_software = True
+# Install Hub (for GitHub)
+install_hub = True
+# Nameservice ID for NN HA - can be modified by user
+nameservice_id = accucluster
+
+[azure]
+resource_group = accumulo-rg
+vnet = vnet1
+vnet_cidr = "10.0.0.0/8"
+subnet = subnet1
+subnet_cidr = "10.1.0.0/16"
+numnodes = 8
+vm_sku = Standard_D8s_v3
 
 Review comment:
   @keith-turner thanks for your efforts to review this. The vm_sku only 
controls the VM size (CPU/ RAM). For the OS, we are indeed using CentOS as the 
underlying OS for the cluster nodes themselves and that is is currently 
hard-coded into the ansible/roles/azure/tasks/create_vmss.yml file:
   
   image:
         offer: CentOS
         publisher: OpenLogic
         sku: 7.5

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to