Hue Notifier for Hadoop
Notify when Hue finished execution of job
Что такое Hue Notifier for Hadoop?
Hue Notifier for Hadoop - это расширение Chrome, разработанное Unknown, и его основная функция - "Notify when Hue finished execution of job".
Снимки экрана расширения
Скачать файл CRX расширения Hue Notifier for Hadoop
Скачайте файлы расширений Hue Notifier for Hadoop в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Hue Notifier for Hadoop |
ID | nphihgndmlbjaenficpnlmaoalpcgioi |
Официальный URL | https://chromewebstore.google.com/detail/hue-notifier-for-hadoop/nphihgndmlbjaenficpnlmaoalpcgioi |
Описание | Notify when Hue finished execution of job |
Размер файла | 4.88 KB |
Количество установок | 64 |
Текущая Версия | 0.2.2 |
Последнее Обновление | 2013-12-10 |
Дата публикации | 2013-12-10 |
Рейтинг | 4.50/5 Всего 4 оценок |
Разработчик | Unknown |
Тип оплаты | free |
URL страницы помощи | https://github.com/mwacc/hue-chrome |
Поддерживаемые языки | 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" ] } } |