Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/EMSL-MSC/NWPerf
Cluster performance visualization
https://github.com/EMSL-MSC/NWPerf
Last synced: 2 months ago
JSON representation
Cluster performance visualization
- Host: GitHub
- URL: https://github.com/EMSL-MSC/NWPerf
- Owner: EMSL-MSC
- License: other
- Created: 2012-12-20T16:44:31.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-03-06T01:06:43.000Z (11 months ago)
- Last Synced: 2024-08-02T01:26:31.382Z (6 months ago)
- Language: JavaScript
- Size: 1 MB
- Stars: 9
- Watchers: 12
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
- awesome-repositories - EMSL-MSC/NWPerf - Cluster performance visualization (JavaScript)
README
NWPerf
======Cluster performance data collection tools
Dependencies
============The NWPerf collection scripts depend heavily on the [ZeroMQ](http://www.zeromq.org/) Python modules. You can this library on various Linux Platforms:
* Ubuntu/debian:
`apt-get install python-zmq`
* Redhat:
`yum install python-zmq`
Ceph Point Storage
==================In order to use the ceph point storage tools (gen_cview,nwperf-ceph-store.py) you will need a configured [Ceph](www.ceph.com) rados system. You then create a rados pool for the cluster of points you want to store. You then need to populate the pool with these files:
* hostorder - a ordered list of hostnames that will be stored in points tables
* hostorder.sizelog - A history of size changes, initially contains only the host count
* pointdesc - descriptions of the metrics stored in the database. a basic one covering many collectl and ganglia data point is included in the examples directory
* pointindex - a list of all metrics stored in the poolPool Creation Steps
-------------------
We will create a pool for a cluster called io, with 38 nodes names io1 to io38. It is assumed that you already have some sort of collection system setup. In this case we are using the nwperf-ganglia.py script, and will gather points from it. we can gather a point list from a running ganglia on port 8649.1. Create rados pool
```
rados mkpool io.points
ceph osd pool set io.points size 3
```
It is not required to set the redundancy level to 3, the default is 2
1. Populate basic files
```
seq -f io%g 1 38 > /tmp/hostorder
echo 0 38 > /tmp/hostorder.sizelog
nc io1 8649 | grep NAME | cut -d\" -f 2 | sort -u > /tmp/pointindex
rados -p io.points put hostorder /tmp/hostorder
rados -p io.points put hostorder.sizelog /tmp/hostorder.sizelog
rados -p io.points put pointdesc ~/NWPerf/examples/pointdesc
rados -p io.points put pointindex /tmp/pointindex
rados -p io.points ls
```
The final command allows you to verify that all files are present in the rados pool.1. Collect Data
```
nwperf-ceph-store.py -n -c io -p /tmp/io.pid
```
1. Output
```
gen_cview -c io -o /dev/shm/io/ -r 60
```