Тёмный

Data pipeline using Kafka - Elasticsearch - Logstash - Kibana | ELK Stack | Kafka 

CodeWithRajRanjan
Подписаться 20 тыс.
Просмотров 51 тыс.
50% 1

The current world is heavily dependent on data. Everyone is generating large amount. It is becoming challenge reading large amount of data and then process it and finally perform some action on that data.
In this post we will be creating a data pipeline where in we will be performing three responsibilities
Read data from Kafka topic
Process it using Logstash
Dump the data to elastic search and then visualize the data using Kibana
Links :
- Elasticsearch and Kibana Installation
selftuts.in/ela...
• Install Elasticsearch ...
- Logstash Installation
selftuts.in/ins...
• Install Logstash on Ub...
- Kafka Installation
selftuts.in/ins...
- Kafka for beginners
• Part 1 - What is Kafka...
- Data pipeline using Kafka and elasticsearch
selftuts.in/cre...

Опубликовано:

 

1 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 66   
@lucaspendola7696
@lucaspendola7696 3 года назад
version: "3.3" services: elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:7.4.0 container_name: elasticsearch restart: always environment: - xpack.security.enabled=false - discovery.type=single-node ulimits: memlock: soft: -1 hard: -1 nofile: soft: 65536 hard: 65536 cap_add: - IPC_LOCK volumes: - elasticsearch-data:/usr/share/elasticsearch/data ports: - 9200:9200 kibana: container_name: kibana image: docker.elastic.co/kibana/kibana:7.4.0 restart: always environment: - ELASTICSEARCH_HOSTS=elasticsearch:9200 # address of elasticsearch docker container which kibana will connect ports: - 5601:5601 depends_on: - elasticsearch # kibana will start when elasticsearch has started volumes: elasticsearch-data:
@lucaspendola7696
@lucaspendola7696 3 года назад
version: "3" services: zookeeper: image: zookeeper restart: always container_name: zookeeper hostname: zookeeper ports: - 2181:2181 environment: ZOO_MY_ID: 1 kafka: image: wurstmeister/kafka container_name: kafka ports: - 9092:9092 environment: KAFKA_ADVERTISED_HOST_NAME: [machine-ip-address] KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 kafka_manager: image: hlebalbau/kafka-manager:stable container_name: kakfa-manager restart: always ports: - "9000:9000" environment: ZK_HOSTS: "zookeeper:2181" APPLICATION_SECRET: "random-secret" command: -Dpidfile.path=/dev/null
@vineethkumar7803
@vineethkumar7803 2 года назад
@@lucaspendola7696 Thanks for sharing. Saves lot of time when the website provided in description is down.
@dannotes9396
@dannotes9396 Месяц назад
Thanks for the video bro, very informative :) One non-related query, what font do you configured in the jet brains IDE? :)
@gouravkhatter2520
@gouravkhatter2520 3 года назад
Informative, easily and cleanly explained.... subscribed (you owned) 😀 Can I have reference guide for processing data before sending to elasticsearch?
@shridarshanramanand4766
@shridarshanramanand4766 4 месяца назад
This is best video i have ever been seen . Cool nice thank you . point to point any videos for ansible script patching or provision linux server through vmware clone ?
@sakshivats7574
@sakshivats7574 Год назад
How do I start logstash using cmd or shell . Bcs systemctl doesn’t work
@anupamchowdhury0
@anupamchowdhury0 11 месяцев назад
How logstash connect to secure kafka using keycloak?
@saisharath5515
@saisharath5515 2 года назад
Your website is not reachable
@rvpandey99
@rvpandey99 2 года назад
your website is down.
@Vivek.1011
@Vivek.1011 2 года назад
the links are broken, can you update them
@leamon9024
@leamon9024 3 года назад
Awesome. Looking forward to more in-depth contents about ELK stack
@ksavinash
@ksavinash Год назад
@SelfTuts please share the working docker-compose setup lagstash as well Note: The video shows logstash local setup its working fine for me in a local setup. I'm trying add logstash to docker compose file as well but I'm unable connect to Kafka
@skidrow406
@skidrow406 4 месяца назад
great, thanks
@BhavinShahBlog
@BhavinShahBlog Год назад
Excellent post. The only problem is the pace is very fast.. I guess using AI it can be re-recorded with slower pace professionally
@nicwhites
@nicwhites Год назад
15:30 You should simply do a lambda instead of created a one line function. Other than that, good video!
@hemantjain9850
@hemantjain9850 3 года назад
website is down
@lalitshukla6585
@lalitshukla6585 Год назад
Thanks Sir, do we have to pay or take youtube subscription for accessing your website ?
@shaiovadia5766
@shaiovadia5766 2 года назад
Great tutorial - extensive enough and doen't skip any step. excellent work !
@dmcp3261
@dmcp3261 3 года назад
subscribed - awesome content.
@satishchhatpar
@satishchhatpar 3 года назад
your website is not working. Gives error "Error establishing a database connection"
@AbhimanyuKumar-ko1ih
@AbhimanyuKumar-ko1ih 4 года назад
Very informative thanks
@codewithrajranjan
@codewithrajranjan 4 года назад
Thanks
@preethikannan98
@preethikannan98 2 года назад
Given links are not reachable
@edgarnaula2835
@edgarnaula2835 3 года назад
All services get up except kafka. Any idea why that happens?
@localboyvijay9628
@localboyvijay9628 2 года назад
website is not working, Can you please check
@uploadvoice
@uploadvoice 3 года назад
Excellent !!! Great video
@balinasuryachandra9337
@balinasuryachandra9337 3 года назад
Hey SelfTuts Awesome explanation i have small doubt, i installed kafka, elk environment on different instances IN AWS to establish a connection between kafka and logstash which ip address should i provide either public IP or private IP in conf directory of logstash
@ElHiro03
@ElHiro03 3 года назад
subscribed. Great tutorial and amazing channel. Saludos desde Argentina.
@pavankumard5276
@pavankumard5276 5 месяцев назад
Really good video, I have subscribed to your channel looking forward to more such videos👍
@codewithrajranjan
@codewithrajranjan 5 месяцев назад
Awesome, thank you!
@shafiquegkhan6400
@shafiquegkhan6400 6 месяцев назад
Great video. Thnx 4 sharing
@tatavarthyvenkatesh4390
@tatavarthyvenkatesh4390 4 года назад
Can we monitor.. consumer lag , fetch lag and all.. using logstach and kibana?
@himanshuagarwal7628
@himanshuagarwal7628 2 года назад
why your site is currently not reachable?
@AnthonyPinero
@AnthonyPinero Год назад
Hi nice tutorial, do you think you can share the sources in any repository?
@pholohohlaha10
@pholohohlaha10 5 месяцев назад
Wonderful work my brother, this has helped me a lot, what a presentation.
@codewithrajranjan
@codewithrajranjan 5 месяцев назад
Thanks
@rabithbo7089
@rabithbo7089 Год назад
A very useful tutorial 😘🙏
@HindiEditzCountdown
@HindiEditzCountdown 2 года назад
so nice tutoorial bro
@salihuumar3138
@salihuumar3138 Год назад
A wonderful video
@harrydam_
@harrydam_ 3 года назад
Does Your website still down?
@86Saurabh1
@86Saurabh1 3 года назад
Hello, great tutorial. I am having some issues when both containers are running. I can see that all the 5 services are running when using command "docker ps" but when I try to open the UI for either kibana or kafka_manager , both won't open, only one would open. When I run the containers one at a time then kibana or kafka_manager would open, depending upon which service is running, but not together. Any help would be appreciated.
@86Saurabh1
@86Saurabh1 3 года назад
Issue seems to be with Kafka Manager service, as without this service I can run Kibana and other services. Need to find an alternative to this.
@sany2k8
@sany2k8 2 года назад
Great tutorials, subscribed
@davidmadronalsanchez4377
@davidmadronalsanchez4377 2 года назад
links are down?
@ajay-lu5gh
@ajay-lu5gh Год назад
Thanks a lot!
@hemp_gaming
@hemp_gaming 3 года назад
Hello, can you do a video about api connections in kafka, About real-time, data processing.
@aj_abdel7113
@aj_abdel7113 2 года назад
Best videos!
@rufianarchamdani3848
@rufianarchamdani3848 3 года назад
good very cool
@stockmarketBullsVsBears
@stockmarketBullsVsBears 4 года назад
Can you add ssl info for secure data transfer
@praveenchakravarthula8806
@praveenchakravarthula8806 2 года назад
This is the one of the best video tutorial I have seen for education. very intuitive and required level of details
@AshuToshSharma99
@AshuToshSharma99 2 года назад
Facing issues with cmak unable to create topic can you help
@billmcguire6128
@billmcguire6128 3 года назад
Great video - thanks
@mosseery8118
@mosseery8118 3 года назад
Awesome
@srikanthchitturi7283
@srikanthchitturi7283 3 года назад
Excellent explanation. Good job
@srikanthjnr
@srikanthjnr 3 года назад
very good video! keep it up!
@freefallinu3446
@freefallinu3446 3 года назад
Cool!
@satishchhatpar
@satishchhatpar 3 года назад
Very good demo. Thank you
@krystian-magdziarz
@krystian-magdziarz 3 года назад
Amazing.
@dheerajasnani7918
@dheerajasnani7918 3 года назад
Great tutorial, just what i was looking for. Thanks
@joepoptiya
@joepoptiya 3 года назад
@selftuts, did you know your website is down?
@codewithrajranjan
@codewithrajranjan 3 года назад
Thanks it's up now
@mohammadsalehsaeidi378
@mohammadsalehsaeidi378 3 года назад
@@codewithrajranjan it's down again.
@lalitshukla6585
@lalitshukla6585 Год назад
@@codewithrajranjan still down