Тёмный
Sriw World of Coding
Sriw World of Coding
Sriw World of Coding
Подписаться
Hey All,
Welcome to my channel Sriw World of Coding. Hope you all find it useful.

Through this channel I tried to simplified learning and solve the challenges faced by students and professionals.I have made several playlist on Python, Azure, Docker, Shell, Talend, Jenkins , Leetcode questions ,Flutter and Terraform

Please support me by clicking LIKE and SUBSCRIBE button to be notified for new videos :)

Support me to create more videos : buymeacoffee.com/sriw

pythonoperator   Made with Clipchamp
12:01
3 месяца назад
BranchPythonOperator in Apache Airflow
6:16
4 месяца назад
Aiirflow Trigger Rules
7:23
5 месяцев назад
Mastering SQL Sensor Operator in Airflow
7:19
5 месяцев назад
Mastering Catchup & Backfill in Apache Airflow
14:07
5 месяцев назад
Комментарии
@ganesanj7579
@ganesanj7579 7 дней назад
It is amazing.
@sriwworldofcoding
@sriwworldofcoding 7 дней назад
Please support me by subscribing to my channel🙏
@TCubers11
@TCubers11 13 дней назад
can you share the datajson?
@aditya234567
@aditya234567 15 дней назад
Say i have a dag run happening and i change the code changes in tasks without changing dag id. Will currently running dag run reflect new code ?? Sah the tasks involve importing a library and i update the library while the dag run is happening!
@sriwworldofcoding
@sriwworldofcoding 15 дней назад
When a DAG run starts, it uses the code that was present at the time the DAG run was triggered. Any code changes made after the DAG run has started will only be picked up by future DAG runs, not the one currently in progress....
@xiztspike81
@xiztspike81 15 дней назад
Thanks son much!, love you 🤗♥
@sriwworldofcoding
@sriwworldofcoding 15 дней назад
Please support by subscribing to my channel
@karanneelkanth8318
@karanneelkanth8318 20 дней назад
Sir i have made service file but is not running what can I do?
@sriwworldofcoding
@sriwworldofcoding 18 дней назад
Hey karan can u please briefly elaborate what exact error u are facing
@CodeGoz
@CodeGoz 22 дня назад
Thanks Brother you solve my problem 🤗🤗
@sriwworldofcoding
@sriwworldofcoding 18 дней назад
Happy to help... Please subscribe to my channel
@blessedby_Melonity
@blessedby_Melonity Месяц назад
hi bro, pls help me, evertime when i try to create db, i get endless loading, why???? PLS HELP ME(im sub:)
@sriwworldofcoding
@sriwworldofcoding Месяц назад
Can u please elaborate what your actual error is.... Are u creating db using pgadmin Or postgres shell...
@blessedby_Melonity
@blessedby_Melonity Месяц назад
@@sriwworldofcoding Im press create db in pgadmin, insert db name and get endless loading, thx u for help!
@blessedby_Melonity
@blessedby_Melonity Месяц назад
Спасибо брат помог
@sriwworldofcoding
@sriwworldofcoding 29 дней назад
Please support by subscribing to my channel 🙏🙏
@ErrorEagle-z6r
@ErrorEagle-z6r Месяц назад
thanku sir
@sriwworldofcoding
@sriwworldofcoding Месяц назад
Please support by subscribing to my channel🙏
@Aman-lv2ee
@Aman-lv2ee Месяц назад
I bought your course on udemy for Airflow, great course but only thing thats missing is real world scenarios and examples, can you include them and also include some projects for data engineers, thanks
@sriwworldofcoding
@sriwworldofcoding Месяц назад
Thank you so much for purchasing my Udemy course on Airflow and for taking the time to provide feedback. I'm glad you enjoyed the course! I appreciate your suggestion about including real-world scenarios and examples. That's a great idea, and I'm currently working on updating the course with more practical examples and projects tailored specifically for data engineers. Your feedback helps me improve the content to better meet your needs. I'll keep you updated on when these additions will be available. In the meantime, feel free to reach out if you have any specific scenarios or projects you'd like to see covered, or if you have any other questions. Thanks again for your support....
@Aman-lv2ee
@Aman-lv2ee Месяц назад
@@sriwworldofcoding sure I will, thanks
@ChamaCR23
@ChamaCR23 2 месяца назад
How about utility scripts, can we create a Common folder and put them there? Will the other Dag scripts be able to reference them?
@sriwworldofcoding
@sriwworldofcoding 2 месяца назад
Hello... Within dags folder u can create numerous folders and airflow scheduler will parse the dags... If u dont want to parse the folder u can use the .airflowignore file to prevent scheduler from parsing the folder Yes other scripts can be imported inside main dags scripts Let's say u are keeping temp.py inside common folder.. U can import using From common.temp import <function>
@harikrishna6021
@harikrishna6021 2 месяца назад
Hello sir I need to contact you can you send to mail
@sriwworldofcoding
@sriwworldofcoding 2 месяца назад
If u are still facing error while connecting to Postgres database using pgAdmin : Unable to connect to server. connection failed: FATAL: password authentication failed for user "postgres" connection to server at "127.0.0.1", port 5432 failed: FATAL: password authentication failed for user "postgres" 1. Open WSL and switch to postgres user using command : sudo -i -u postgres 2. Open psql shell using : psql 3.Update the password of postgres user using: \password postgres 4. Enter the password as postgres and retype the same password Now u will be able to connect Postgres database using pgAdmin
@lionelmockel3935
@lionelmockel3935 2 месяца назад
than you, it seems to work!
@sriwworldofcoding
@sriwworldofcoding 2 месяца назад
Please support by subscribing to my channel🙏
@lionelmockel3935
@lionelmockel3935 2 месяца назад
​@@sriwworldofcodingdone!
@maximeaubry2613
@maximeaubry2613 2 месяца назад
unfortunately, i still have this error
@sriwworldofcoding
@sriwworldofcoding 2 месяца назад
Can u please tell what error u are facing
@lionelmockel3935
@lionelmockel3935 2 месяца назад
Unable to connect to server: cnnection failed: connection to server at 127.0.0.1, port 5432 failed: password authentification failed for user "postgres" .... I think it has a problem with my username but how can I know what would be my username? Thank you
@sriwworldofcoding
@sriwworldofcoding 2 месяца назад
Kindly follow the steps to setup connection to pgadmin in case of error : 1. Open WSL and switch to postgres user using command : sudo -i -u postgres 2. Open psql shell using : psql 3.Update the password of postgres user using: \password postgres 4. Enter the password as postgres and retype the same password Now u will be able to connect Postgres database using pgAdmin
@adityaawari2483
@adityaawari2483 3 месяца назад
can you please share the dag file
@VinayBe-c8t
@VinayBe-c8t 3 месяца назад
excellent brother
@sriwworldofcoding
@sriwworldofcoding 3 месяца назад
Please support by subscribing to my channel
@ali-f4x
@ali-f4x 3 месяца назад
thnx bro 🥺🥺🥺🥺🥺🥺
@sriwworldofcoding
@sriwworldofcoding 3 месяца назад
Please support by subscribing to my channel
@MYUCE555
@MYUCE555 3 месяца назад
thx brother
@sriwworldofcoding
@sriwworldofcoding 3 месяца назад
Please support by Subscribing to my channel 🙏
@pastelteaaniiii
@pastelteaaniiii 3 месяца назад
Thank you very much😊 it worked 👍
@sriwworldofcoding
@sriwworldofcoding 3 месяца назад
Thanks a lot. kindly support by subscribing to my channel
@dp2468
@dp2468 3 месяца назад
Bhai what are you doing? 😠
@andrewblaze6930
@andrewblaze6930 3 месяца назад
psql server is not runnign actually in my wsl. and also im seeing some permission issues too "andrew@ANDREW-BLAZE:~$ sudo -u postgres psql -c 'SHOW config_file' could not change directory to "/home/andrew": Permission denied config_file ----------------------------------------- /etc/postgresql/14/main/postgresql.conf (1 row) ". finally in the pg admin it is saying unable to connect to the 127...... 5432.... password authentication failed can u help me?
@sriwworldofcoding
@sriwworldofcoding 3 месяца назад
U can start running psql using command : sudo systemctl start postgresql default password to connect with postgresql is "postgres" itself. Please let me know if u are still facing the issue .
@sriwworldofcoding
@sriwworldofcoding 2 месяца назад
Kindly follow the steps to setup connection to pgadmin in case of error : 1. Open WSL and switch to postgres user using command : sudo -i -u postgres 2. Open psql shell using : psql 3.Update the password of postgres user using: \password postgres 4. Enter the password as postgres and retype the same password Now u will be able to connect Postgres database using pgAdmin
@sriwworldofcoding
@sriwworldofcoding 4 месяца назад
If u are still facing error which connecting to Linux distro using Winscp : 1. First run command is WSL : sudo service ssh status If output of above command shows status inactive 2. Start Ssh service using command : sudo systemctl enable ssh 3. Enable Ssh service permanently using command : sudo systemctl enable ssh 4. If Despite starting the ssh service doest work , restart the ssh service using : sudo service ssh --full-restart
@hardrived009
@hardrived009 4 месяца назад
Any WSL filesystem can be accessed via File Explorer out of the box.
@sriwworldofcoding
@sriwworldofcoding 4 месяца назад
yes true
@shaikfahim1232
@shaikfahim1232 4 месяца назад
are not showing in tje storage account
@sriwworldofcoding
@sriwworldofcoding 4 месяца назад
Can u please elaborate what error u are actually facing
@iExamineLife
@iExamineLife 5 месяцев назад
dont work this command?!
@sriwworldofcoding
@sriwworldofcoding 4 месяца назад
Can u please let us know what error u are facing
@surzkc2298
@surzkc2298 2 месяца назад
--set - version < distro> 2
@iExamineLife
@iExamineLife 2 месяца назад
Thanks for that reply guys, I gave up and just start using wsl on command line 😄 Will gave that a go when I try next time thanks 🙏
@AMITDAS-mr8xj
@AMITDAS-mr8xj 5 месяцев назад
Hi Bhaiya, I need your help!! I receiving error message while implementing email operator to send me a mail(it is the last task of my dag) could you pls help me to fix. I am stuck at this point for more than a week now
@sriwworldofcoding
@sriwworldofcoding 5 месяцев назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-xJrcExbQzKE.html Kindly have a look at this video to configure notification in case of task failrure. Kindly support by subscribing to my channel.
@AMITDAS-mr8xj
@AMITDAS-mr8xj 5 месяцев назад
@@sriwworldofcoding hii thanks for responding. I have already fixed the issue. Coming back to your content, hv subscribed already. Keep going! Love your content
@pepperpie98
@pepperpie98 5 месяцев назад
clear explanation, thank you.
@sriwworldofcoding
@sriwworldofcoding 5 месяцев назад
Glad you liked it. Please support by subscribing to my channel
@shubhamsaxena839
@shubhamsaxena839 6 месяцев назад
voice is too low
@tarungupta8836
@tarungupta8836 6 месяцев назад
Do i need to install the python or just download and keep it
@sriwworldofcoding
@sriwworldofcoding 6 месяцев назад
It's necessary to install python first
@tarungupta8836
@tarungupta8836 6 месяцев назад
@@sriwworldofcoding thanks now it's working
@sohamdeo1866
@sohamdeo1866 6 месяцев назад
M getting error whole executing spark sql
@sriwworldofcoding
@sriwworldofcoding 6 месяцев назад
Can u please ellaborate and paste the error
@ramapriyanpriyan6488
@ramapriyanpriyan6488 7 месяцев назад
Hi I am getting this error while importing spark session - "ImportError: cannot import name 'MutableMapping' from 'collections' (C:\Users\user\anaconda3\Lib\collections\__init__.py)" cn you please suggest on this
@AnshumanJana-t6y
@AnshumanJana-t6y 7 месяцев назад
thanks a lot
@sriwworldofcoding
@sriwworldofcoding 7 месяцев назад
Happy to help Please support by subscribing to my channel
@Ghumakkar_desi_ladka
@Ghumakkar_desi_ladka 7 месяцев назад
Thanks man
@sriwworldofcoding
@sriwworldofcoding 7 месяцев назад
Please support by subscribing to my channel
@Maryumx
@Maryumx 7 месяцев назад
Thankyou!
@sriwworldofcoding
@sriwworldofcoding 7 месяцев назад
Glad I could help. Please support by subscribing to my channel
@Adityadarde
@Adityadarde 8 месяцев назад
thanks bro ....i was totally frustrated
@sriwworldofcoding
@sriwworldofcoding 7 месяцев назад
Glad I could help. Please support by subscribing to my channel
@pranayvenkat2496
@pranayvenkat2496 8 месяцев назад
you are really a saviour bro .
@sriwworldofcoding
@sriwworldofcoding 8 месяцев назад
Thanks please support by subscribing 🙏
@MarziehKianiani
@MarziehKianiani 8 месяцев назад
You do not describe well. You jumped from many parts.
@sriwworldofcoding
@sriwworldofcoding 8 месяцев назад
Thanks for your feedback... Will take care from now onwards
@Ribhav.Singla
@Ribhav.Singla 9 месяцев назад
thanks
@abhinavsinha9239
@abhinavsinha9239 9 месяцев назад
i want to take input from the user and then feed it to the machine learning program , how to do it
@gamingbeast710
@gamingbeast710 9 месяцев назад
how to consume https on local network LAN ??? it keeps showing error of SSL exception !! any ideas?
@Khanzaki1
@Khanzaki1 9 месяцев назад
Great tutorial thanks
@sriwworldofcoding
@sriwworldofcoding 9 месяцев назад
Glad you liked it
@pranroy9309
@pranroy9309 10 месяцев назад
Thank you.. Your videos were really helpful
@sriwworldofcoding
@sriwworldofcoding 9 месяцев назад
You are welcome!
@RizkyBintangOrlandoSiahaan
@RizkyBintangOrlandoSiahaan 10 месяцев назад
thanks for this video
@sriwworldofcoding
@sriwworldofcoding 10 месяцев назад
Most welcome. Kindly do subscribe to my channel😀
@andresurrea7817
@andresurrea7817 10 месяцев назад
hi bro, could you give me theses url or the data structure od the dtabase. thaks for all
@sriwworldofcoding
@sriwworldofcoding 10 месяцев назад
U can host the data anywhere like github, heroku etc
@Priming-AI
@Priming-AI 10 месяцев назад
BRONZE , SILVER , GOLD !
@Priming-AI
@Priming-AI 10 месяцев назад
Copy transformation ? use dataflow ! tanks !
@aaomms7986
@aaomms7986 10 месяцев назад
It's cool but it too small.
@aaomms7986
@aaomms7986 10 месяцев назад
This is so useful thank you so much!!!
@sriwworldofcoding
@sriwworldofcoding 10 месяцев назад
You're so welcome!
@notes7000
@notes7000 10 месяцев назад
nice , this is what i am looking for
@sriwworldofcoding
@sriwworldofcoding 10 месяцев назад
Glad I could help
@mohdsarim6023
@mohdsarim6023 11 месяцев назад
Thanks for the video. I tried several resources, but yours is the first one where I was successful in installing and running spark on my laptop
@sriwworldofcoding
@sriwworldofcoding 11 месяцев назад
Great to hear!