-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- use AK official image (fix path to tools) - added superset container
- Loading branch information
Showing
4 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
GREEN=\033[0;32m | ||
NC=\033[0m # No Color | ||
|
||
base: create topic tables validate info | ||
base: create topic tables validate superset-setup info | ||
|
||
create: | ||
docker compose build --no-cache | ||
|
@@ -51,7 +51,7 @@ create: | |
@printf "$(GREEN)✔$(NC) 🪲 Kafka is ready!\n" | ||
|
||
topic: | ||
docker exec kafka kafka-topics.sh \ | ||
docker exec uncorking-pinot-kafka kafka-topics.sh \ | ||
--bootstrap-server localhost:9092 \ | ||
--create \ | ||
--topic rated_movies | ||
|
@@ -79,11 +79,17 @@ validate: | |
exit 1; \ | ||
fi; \ | ||
|
||
superset-setup: | ||
docker exec superset-pinot superset fab create-admin --username admin --firstname Superset --lastname Admin --email [email protected] --password admin | ||
docker exec superset-pinot superset db upgrade | ||
docker exec superset-pinot superset init | ||
|
||
info: | ||
@printf "\n==========================================================\n" | ||
@printf "🍷 Pinot Query UI: \033[4mhttp://localhost:9000\033[0m\n" | ||
@printf "🦊 Redpanda Console: \033[4mhttp://localhost:9080\033[0m\n" | ||
@printf "🐿️ Flink Console: \033[4mhttp://localhost:8081\033[0m\n" | ||
@printf "📊 Superset Dashboard \033[4mhttp://localhost:8088\033[0m\n" | ||
@printf "==========================================================\n" | ||
|
||
destroy: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters