Hue Notifier for Hadoop
Notify when Hue finished execution of job
Hue Notifier for Hadoopとは何ですか?
Hue Notifier for HadoopはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Notify when Hue finished execution of job」です。
拡張機能のスクリーンショット
Hue Notifier for Hadoop拡張機能のCRXファイルをダウンロード
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" ] } } |