Hue Notifier for Hadoop
Notify when Hue finished execution of job
O que é Hue Notifier for Hadoop?
Hue Notifier for Hadoop é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Notify when Hue finished execution of job".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hue Notifier for Hadoop
Baixe arquivos de extensão Hue Notifier for Hadoop no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Hue Notifier for Hadoop |
ID | nphihgndmlbjaenficpnlmaoalpcgioi |
URL Oficial | https://chromewebstore.google.com/detail/hue-notifier-for-hadoop/nphihgndmlbjaenficpnlmaoalpcgioi |
Descrição | Notify when Hue finished execution of job |
Tamanho do Arquivo | 4.88 KB |
Contagem de Instalações | 64 |
Versão Atual | 0.2.2 |
Última Atualização | 2013-12-10 |
Data de Publicação | 2013-12-10 |
Classificação | 4.50/5 Total de 4 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/mwacc/hue-chrome |
Idiomas Suportados | 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" ] } } |