In the previous post, we learned what a messaging system is and the Role of Apache Kafka. In this post we will dive deep into Apache Kafka – We will learn Kafka cluster, brokers, topics, partitions, replicas, producers, consumers, consumer groups, Zookeeper, and how together make Kafka work. Most of Kafka revolves around Kafka Cluster, […]
Open up an Administrative level Command Prompt and run tasklist or netstat -ano | findstr :portNumber to see all of the running processes: C:\Users\Hussain>tasklist C:\Users\Hussain>netstat -ano | findstr :portNumber ( in this case port 3000) C:\Users\Hussain>Taskkill /PID /F Below is the screenshot of the above steps performed.
Hi All, I am starting a series of tutorials/learning for Apache Kafka. I will try to cover all aspects of Apache Kafka. I will start with Basic concepts and move on to advance features. Be ready for lot of theory and try to grasp the concepts. So What is Kafka? Apache Kafka is a fast, […]
Below is the query for searching only tables. SELECT c.name AS ‘ColumnName’ ,t.name AS ‘TableName’ FROM sys.columns c JOIN sys.tables t ON c.object_id = t.object_id WHERE c.name LIKE ‘%columnName%’ ORDER BY TableName ,ColumnName; If you want to search both tables and views – replace Sys.Columns toINFORMATION_SCHEMA.COLUMNS in the above query -Hussain Patel
Follow the below steps: git checkout develop git pull git checkout <your-branch-name> git merge develop The above steps will merge the changes from develop into your branch and probably create a new commit, with a comment making it clear that it’s a merge. There are other ways do to update the local branch, i would say […]
For Part I please refer link Part II – please refer link One we have referenced / loaded JQuery (as mentioned in Part II) either using a local copy or CDN, the next thing is to start using JQuery. the most important function of jQuery that is used a lot and we all would be […]
For Part I Please click following link Considering you have are already downloaded JQuery files (see note below) from JQuery website or you have Microsoft or Google CDN (Content Distribution Networks) link (more on this below in this post). The first thing you need to do for using JQuery is setting up JQuery reference in the […]
Introduction JQuery is one of the most popular JavaScript libraries – in many ways it helps increase the productivity, minimize the code and most importantly help solving cross browser issues. Starting we would be learning all about JQuery. The below articles / post are based on my learning, my experience in projects and my reference […]