Hue Notifier for Hadoop
Notify when Hue finished execution of job
Qu'est-ce que Hue Notifier for Hadoop ?
Hue Notifier for Hadoop est une extension Chrome développée par Unknown, et sa fonction principale est "Notify when Hue finished execution of job".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Hue Notifier for Hadoop
Téléchargez les fichiers d'extension Hue Notifier for Hadoop au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This is common situation when Hive query or Pig script on Hadoop requires a lot of time for executing and you are interesting in getting notification about completing process. This extension facilitate development on Hadoop platform and save your time by showing desktop notification when execution is done. Currently next tools are supported: - Hive/Impala on Cloudera (tested on CDH4) - Hive/Pig on Hortonworks (tested on HDP 1.3, HDP 2.0) IMPORTANT! Please, enable Chrome Notifications before using, read more here Read more https://support.google.com/chrome/answer/3220216?hl=en-GB
Informations de Base sur l'Extension
Nom | Hue Notifier for Hadoop |
ID | nphihgndmlbjaenficpnlmaoalpcgioi |
URL Officiel | https://chromewebstore.google.com/detail/hue-notifier-for-hadoop/nphihgndmlbjaenficpnlmaoalpcgioi |
Description | Notify when Hue finished execution of job |
Taille du Fichier | 4.88 KB |
Nombre d'Installations | 64 |
Version Actuelle | 0.2.2 |
Dernière Mise à Jour | 2013-12-10 |
Date de Publication | 2013-12-10 |
Évaluation | 4.50/5 Total 4 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/mwacc/hue-chrome |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hue Notifier for Hadoop", "short_name": "Hue Notifier", "version": "0.2.2", "author": "Kostiantyn Kudriavtsev", "manifest_version": 2, "description": "Notify when Hue finished execution of job", "permissions": [ "notifications", "tabs", "*:\/\/*\/beeswax\/results\/*", "*:\/\/*\/impala\/results\/*", "*:\/\/*\/pig\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/beeswax\/results\/*", "*:\/\/*\/impala\/results\/*", "*:\/\/*\/pig\/*" ], "js": [ "script.js" ], "run_at": "document_idle" } ], "background": { "scripts": [ "background.js" ] } } |