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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } } |