Docker Installation commands In ubuntu 16.04, docker installation commands sudo apt-get -f install Install some required packages on your system for installing Docker on Ubuntu system. sudo apt-get install apt-transport-https ca-certificates curl software-properties-common Now import dockers official GPG key to verify packages signature before installing them with apt-get. Run the below command on terminal. curlContinue reading “DOCKER AND KUBERNETES IMPORTANT EXAMPLES”
Author Archives: kirantech2009
Microservices With CQRS and Event Sourcing
The main topic of this article is to describe how we can integrate an event-driven architecture with microservices using event sourcing and CQRS. Microservices are independent, modular services that have their own layered architecture. When microservices share the same database, the data model among the services can follow relationships among the tables associated with the microservices.Continue reading “Microservices With CQRS and Event Sourcing”
SQL Interfaces with Big Data systems
Big Data SQL applications provide SQL query kind of interface to query the data underlying in HDFS and other storage systems in Big Data As SQL is popular common language used across globally, big data systems can be easily accessed using SQL interface. Few are the below SQL interfaces described to access big data systemsContinue reading “SQL Interfaces with Big Data systems”