You should also read:

Apache Superset

Instalando o Apache Superset através do Docker em um Ubuntu 18 # Docker installationapt install lsb-release &&apt update &&apt install apt-transport-https ca-certificates curl…

Apache Kafka - Anotações

Um vídeo introdutório interessante https://www.youtube.com/watch?v=Ch5VhJzaoaI Tutorial oficial https://developer.confluent.io/learn-kafka/ Melhores livros pra aprender Kafka O autor recomenda o Effective Kafka: A Hands-on Guide to…

Formatos de Autenticação HTTP/HTTPS

BasicAuth JWT OAuth2 HTTP Signatures OpenID Auth0 Ory Hydra Artigo sobre HTTP Signatures https://medium.com/@technospace/ensuring-message-integrity-with-http-signatures-86f121ac9823 GitHub do Ory Hydra https://github.com/ory/hydra

Apache Airflow

conda create --name airflowconda activate airflowconda install python3conda install python=3.7# optionalexport AIRFLOW_HOME=~/airflowpip install apache-airflowairflow initdbairflow webserver -p 8080airflow scheduler Referências https://airflow.apache.org/docs/stable/start.html