INDIGO CLUES ============ CLUES is an elasticity manager system for HPC clusters and Cloud infrastructures that features the ability to power on/deploy working nodes as needed (depending on the job workload of the cluster) and to power off/terminate them when they are no longer needed. Official GitBook documentation: https://www.gitbook.com/book/indigo-dc/clues-indigo/details Check worker nodes status ************************* To check worker node status: :: # sudo clues status node state enabled time stable (cpu,mem) used (cpu,mem) total ----------------------------------------------------------------------------------------------- vnode-1 powon enabled 00h02'54" 0,0.0 1,1073741824.0 vnode-2 off enabled 00h41'00" 0,0.0 1,1073741824.0 CLUES commands: :: # clues --help The CLUES command line utility Usage: clues [-h] [status|resetstate|enable|disable|poweron|poweroff|nodeinfo|shownode|req_create|req_wait|req_get] [-h|--help] - Shows this help * Show the status of the platform Usage: status * Reset the state of one or more nodes to idle Usage: resetstate - names of the nodes whose state want to be reset * Enable one or more nodes to be considered by the platform Usage: enable - names of the nodes that want to be enabled * Disable one or more nodes to be considered by CLUES Usage: disable - names of the nodes that want to be disabled * Power on one or more nodes Usage: poweron - names of the nodes that want to be powered on * Power off one or more nodes Usage: poweroff - names of the nodes that want to be powered off * Show the information about node(s), to be processed in a programmatically mode Usage: nodeinfo [-x] [-x|--xml] - shows the information in XML format - names of the nodes whose information is wanted to be shown * Show the information about node(s) as human readable Usage: shownode - names of the nodes whose information is wanted to be shown * Create one request for resources Usage: req_create --cpu --memory [--request ] [--count ] --cpu|-c - Requested CPU --memory|-m - Requested Memory [--request|-r] - Requested constraints for the nodes [--count|-n] - Number of resources (default is 1) * Wait for a request Usage: req_wait [timeout] - Identifier of the request to wait [timeout] - Timeout to wait * Get the requests in a platform Usage: req_get Check worker nodes deployment ***************************** Worker node deployment log are available to: ``/var/log/clues2/clues2.log`` Troubleshooting *************** Invalid Token ------------- Symptoms: Galaxy jobs stuck in ``This job is waiting to run`` and stay gray in the Galaxy history. The worker nodes are not correctly instantiated, due to an ``Invalid Token``. Check ``/var/log/clues2/clues2.log``: :: urllib3.connectionpool;DEBUG;2017-10-31 10:52:33,288;"GET /orchestrator/deployments/48126bd4-14d8-494d-970b-fb581a3e13b2/resources?size=20&page=0 HTTP/1.1" 401 None [PLUGIN-INDIGO-ORCHESTRATOR];ERROR;2017-10-31 10:52:33,291;ERROR getting deployment info: {"code":401,"title":"Unauthorized","message":"Invalid token: eyJraWQiOiJyc2ExIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiI3REU4Qjg4MC1DNEQwLTQ2RkEtQjQxMS0wQTlCREI3OUYzOTYiLCJpc3MiOiJodHRwczpcL1wvaWFtLXRlc3QuaW5kaWdvLWRhdGFjbG91ZC5ldVwvIiwiZXhwIjoxNTA5NDQ0NDY2LCJpYXQiOjE1MDk0NDA4NjYsImp0aSI6IjAyZmE5YmM0LTBkMjctNGJkZi1iODVjLTJlMjM2NjNjNmY5OCJ9.QqjYzVs0h5kuqoBZQf5PPcYrsRJksTFyZO5Zpx8xPcfjruWHwwOnw9knQq8Ex3lwAXgi5qxdmqBDi4EIZAOaoFsPirlM7K6fCBE0-M_btm4nTbUvTSaUAfjki41DnPoEjLqXTTy8XLPUrCSmHVeqvSHHFipeSkP9OxKltlUadPc"} Solution: #. Stop CLUES: ``sudo systemctl stop cluesd``. #. Edit the file ``/etc/clues2/conf.d/plugin-ec3.cfg`` and change the value of the ``INDIGO_ORCHESTRATOR_AUTH_DATA`` parameter with the new token. #. Restart CLUES ``sudo systemctl start cluesd``. #. You also have to open the CLUES DB with sqlite3 command: ``sqlite3 /var/lib/clues2/clues.db`` and delete old refreshed token: ``DELETE FROM orchestrator_token;``. To exit from sqlite just type: ``.exit``.