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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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"
        ]
    }
}