Hue Notifier for Hadoop

Notify when Hue finished execution of job

Was ist Hue Notifier for Hadoop?

Hue Notifier for Hadoop ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Notify when Hue finished execution of job".

Erweiterungsscreenshots

screenshot
screenshot

Hue Notifier for Hadoop-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hue Notifier for Hadoop-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Hue Notifier for Hadoop Hue Notifier for Hadoop
ID nphihgndmlbjaenficpnlmaoalpcgioi
Offizielle URL https://chromewebstore.google.com/detail/hue-notifier-for-hadoop/nphihgndmlbjaenficpnlmaoalpcgioi
Beschreibung Notify when Hue finished execution of job
Dateigröße 4.88 KB
Installationsanzahl 64
Aktuelle Version 0.2.2
Letztes Update 2013-12-10
Veröffentlichungsdatum 2013-12-10
Bewertung 4.50/5 Insgesamt 4 Bewertungen
Entwickler Unknown
Zahlungsart free
Hilfeseite URL https://github.com/mwacc/hue-chrome
Unterstützte Sprachen 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"
        ]
    }
}