Hue Notifier for Hadoop
Notify when Hue finished execution of job
Cos'è Hue Notifier for Hadoop?
Hue Notifier for Hadoop è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Notify when Hue finished execution of job".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hue Notifier for Hadoop
Scarica i file di estensione Hue Notifier for Hadoop in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Hue Notifier for Hadoop |
ID | nphihgndmlbjaenficpnlmaoalpcgioi |
URL Ufficiale | https://chromewebstore.google.com/detail/hue-notifier-for-hadoop/nphihgndmlbjaenficpnlmaoalpcgioi |
Descrizione | Notify when Hue finished execution of job |
Dimensione del File | 4.88 KB |
Conteggio Installazioni | 64 |
Versione Corrente | 0.2.2 |
Ultimo Aggiornamento | 2013-12-10 |
Data di Pubblicazione | 2013-12-10 |
Valutazione | 4.50/5 Totale 4 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/mwacc/hue-chrome |
Lingue Supportate | 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" ] } } |