Enabling ganglia with pcluster update
See original GitHub issueEnvironment:
- aws-parallelcluster-2.4.1
- OS: centos
- Scheduler: slurm
- Master instance type: t2.micro
- Compute instance type: c5.2xlarge
Bug description and how to reproduce:
I tried enabling ganglia after first provisioning a ParallelCluster by adding extra_json = { "cluster" : { "ganglia_enabled" : "yes" } }
to the config file. However, it seems that the chef recipe is not run following a pcluster update, as it is definitely ont installed now.
Is it possible to enable ganglia after first creating the MasterServer?
Issue Analytics
- State:
- Created 4 years ago
- Comments:20 (8 by maintainers)
Top Results From Across the Web
Moving from CfnCluster to AWS ParallelCluster
pcluster list pcluster update cluster_name pcluster start cluster_name pcluster status cluster_name ... To enable ganglia, complete these steps:.
Read more >Setting Up Real-Time Monitoring with 'Ganglia' for Grids and ...
1. Enable the EPEL repository and then install Ganglia and related utilities from there: · 2. Set up authentication for the Ganglia web...
Read more >Chapter 4. The Ganglia Web Interface - O'Reilly
Ganglia contains a simple authorization system to selectively allow or deny users access to certain parts of the gweb application. We rely on...
Read more >Ganglia on Spark: cluster optimization at its best - Medium
By analyzing the Ganglia, we could understand if our cluster configuration will ... When updating to our minimum resources configuration, ...
Read more >Ganglia Users Guide - Rocks Cluster
Enabling fully aware Ganglia daemons. For maximum performance and scalability, the Ganglia gmond daemons on compute nodes in the cluster are ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Ah, I see. Then my comment is only relevant when you manually edit
/etc/chef/dna.json
to enable ganglia on the MasterServer, because then you don’t go through thepcluster
CLI.We changed the parameter from “cfncluster” to “cluster” when CfnCluster has been rebranded to AWS ParallelCluster, to remove the “cfncluster” word from the configuration file.
The code still supports the old “cfncluster” syntax, to maintain retrocompatibility with old configuration file, but we adapted the code to convert the new “cluster” syntax to “cfncluster” leaving the cookbook code untouched. See: https://github.com/aws/aws-parallelcluster/blob/v2.4.1/cli/pcluster/cfnconfig.py#L555
It means you can use “cluster” (new syntax) or “cfncluster” (old syntax) and both will be converted to “cfncluster” on the cookbook side.