From 1738f07b6abb31dcbe731f802cde6b362af2fa34 Mon Sep 17 00:00:00 2001 From: Tomas Coufal Date: Wed, 2 Dec 2020 12:07:23 +0100 Subject: [PATCH] feat: Add Data catalog components --- frontend/public/images/hue.svg | 39 +++++++++++++++++++ routes/api/components/available-components.js | 18 +++++++++ 2 files changed, 57 insertions(+) create mode 100644 frontend/public/images/hue.svg diff --git a/frontend/public/images/hue.svg b/frontend/public/images/hue.svg new file mode 100644 index 0000000000..8baed936b3 --- /dev/null +++ b/frontend/public/images/hue.svg @@ -0,0 +1,39 @@ + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/routes/api/components/available-components.js b/routes/api/components/available-components.js index 8b7efa8ecd..7d8df585f7 100644 --- a/routes/api/components/available-components.js +++ b/routes/api/components/available-components.js @@ -84,4 +84,22 @@ module.exports = [ img: "images/airflow.svg", docsLink: "https://airflow.apache.org/", }, + { + key: "hue", + label: "Hue", + description: "Data exploration platform for Hive and S3 storage", + kfdefApplications: ["hue"], + route: "hue", + img: "images/hue.svg", + docsLink: "https://docs.gethue.com/", + }, + { + key: "thriftserver", + label: "Spark SQL Thrift Server", + description: "Expose Spark data frames modeled as Hive tables through a JDBC connection", + kfdefApplications: ["thriftserver"], + route: "thriftserver", + img: "images/spark.svg", + docsLink: "https://spark.apache.org/docs/latest/sql-distributed-sql-engine.html", + } ];