Hue Notifier for Hadoop
Notify when Hue finished execution of job
Hue Notifier for Hadoop là gì?
Hue Notifier for Hadoop là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Notify when Hue finished execution of job".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Hue Notifier for Hadoop
Tải xuống các tệp mở rộng Hue Notifier for Hadoop dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Hue Notifier for Hadoop |
ID | nphihgndmlbjaenficpnlmaoalpcgioi |
URL Chính Thức | https://chromewebstore.google.com/detail/hue-notifier-for-hadoop/nphihgndmlbjaenficpnlmaoalpcgioi |
Mô tả | Notify when Hue finished execution of job |
Kích Thước Tệp | 4.88 KB |
Số Lần Cài Đặt | 64 |
Phiên Bản Hiện Tại | 0.2.2 |
Cập Nhật Lần Cuối | 2013-12-10 |
Ngày Phát Hành | 2013-12-10 |
Đánh Giá | 4.50/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/mwacc/hue-chrome |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } } |