unarmedcivilian / dataroaster

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DataRoaster

DataRoaster is open source data platform running on Kubernetes.

DataRoaster Architecture

DataRoaster Architecture

DataRoaster has a simple architecture. There are several operators in DataRoaster to install data platform components easily.

Data Platform Components supported by DataRoaster

Components supported by DataRoaster:

  • Hive Metastore: standard data catalog in data lakehouses.
  • Spark Thrift Server: hive server compatible interface through which hive queries will be executed on spark.
  • Trino: popular query engine in data lakehouses.
  • Redash: popular BI tool.
  • Jupyterhub: multi-user version of jupyter notebook.
  • Kafka: popular event streaming platform.
  • Airflow: popular workflow.

Install DataRoaster

helm repo add dataroaster-operator https://cloudcheflabs.github.io/dataroaster-operator-helm-repo/
helm repo update;

helm install \
dataroaster-operator \
--create-namespace \
--namespace dataroaster-operator \
--version v3.0.8 \
--set image=cloudcheflabs/dataroaster-operator:4.3.0 \
--set dataroastermysql.storage.storageClass=oci \
dataroaster-operator/dataroaster-operator;

dataroastermysql.storage.storageClass is mysql storage class which needs to be replaced with one of your kubernetes cluster.

You need to copy the randomly generated admin password which will be used to access dataroaster api.

kubectl logs -f $(kubectl get pod -l app=dataroaster-operator -o jsonpath="{.items[0].metadata.name}" -n dataroaster-operator) -n dataroaster-operator | grep "randomly generated password for user";

Output looks like this.

...
randomly generated password for user 'admin': 9a87f65688a64e999e62c8c308509708
...

9a87f65688a64e999e62c8c308509708 is the temporary admin password which can be used for the first time and should be changed in the future.

To access DataRoaster from local, port-forward the service of dataroaster-operator-service.

kubectl port-forward svc/dataroaster-operator-service 8089 -n dataroaster-operator;

DataRoaster REST API

To access DataRoaster with REST, see DataRoaster REST API for more details.

DataRoaster Trino Controller

DataRoaster Trino Controller is used to control all the trino ecosystem components to build a trino gateway easily.

See DataRoaster Trino Controller for more details.

DataRoaster Trino Gateway

DataRoaster Trino Gateway is used to route the trino queries dynamically to downstream trino clusters.

See DataRoaster Trino Gateway for more details.

DataRoaster Trino Operator

DataRoaster Trino Operator is used to create/delete trino clusters easily.

See DataRoaster Trino Operator for more details.

DataRoaster Helm Operator

DataRoaster Helm Operator is used to install / upgrade / uninstall applications of helm charts easily.

See DataRoaster Helm Operator for more details.

DataRoaster Spark Operator

DataRoaster Spark Operator is used to submit and delete spark applications on kubernetes using custom resources easily. Not only spark batch job but also endless running applications like spark streaming applications can be deployed using dataroaster spark operator.

See DataRoaster Spark Operator for more details.

Community

License

The use and distribution terms for this software are covered by the Apache 2.0 license.

About

License:Apache License 2.0


Languages

Language:Java 97.0%Language:Dockerfile 1.5%Language:Shell 1.3%Language:Python 0.1%Language:Smarty 0.1%