Stream Processing 101 | Basics
10:17
2 жыл бұрын
Find Nearby Friends | System Design
27:11
Leaderless Database Replication
18:05
Leader Follower Database Replication
16:10
Database Replication Explained
10:34
2 жыл бұрын
Design YouTube | System Design
40:20
2 жыл бұрын
Пікірлер
@giovanninavarro4832
@giovanninavarro4832 4 күн бұрын
Thank you for publishing this! Hoping for some guidance: My wallet on OKX has some Tether USDT, and I know the seedphrase: -clean- -party- -soccer- -advance- -audit- -clean- -evil- -finish -tonight- -involve- -whip- -action-. What’s the best way can I go about sending them to Coinbase Exchange?
@AFY321
@AFY321 7 күн бұрын
Nice
@swm7f137
@swm7f137 9 күн бұрын
Can work offline?
@TechVibes099
@TechVibes099 12 күн бұрын
So with that when I send a couples of messages it will take long time to respond?
@DinhGiaBaoK18HCM
@DinhGiaBaoK18HCM 14 күн бұрын
First of all, i want to give all of my heart for you because this is the content i am looking forward. With my scenario, i have applied as a Backend Intern, and my mission is to learn and doing a CLI Programme connect with S3 to help end user in backing up files, managing files just by basic cli command. With my situation, do you have any reccommendation for me to go the right direction for my real project. And i wonder if i could get advise from you about documentation as well. Thank you a lot. ❤❤❤
@kirillzlobin7135
@kirillzlobin7135 18 күн бұрын
20:15 What does it mean - column keeps changing.... when new data added? or what?
@kirillzlobin7135
@kirillzlobin7135 18 күн бұрын
So it gets value from DB with O(1)? Or it uses binary search O(logn)?
@MrNinethsense
@MrNinethsense 19 күн бұрын
which tool are you using in the video, its nicely presented.
@khanhtuongtranlam9141
@khanhtuongtranlam9141 21 күн бұрын
Thank you so much bro 😃
@annerwenji6018
@annerwenji6018 24 күн бұрын
Very useful video, Thanks!
@mhmmdmustafayev8216
@mhmmdmustafayev8216 25 күн бұрын
Really great channel. Keep it up please
@PriyanshuDayal-q6n
@PriyanshuDayal-q6n 27 күн бұрын
bro please give teh code also
@vivekdalsaniya9358
@vivekdalsaniya9358 Ай бұрын
Any specific reason why we have used Cassandra and not any other key-value db?
@pranavch17
@pranavch17 Ай бұрын
Concise Video. Thank you!
@ashwinurewar5006
@ashwinurewar5006 Ай бұрын
how does threshold distance based filtering happen? can someone please explain?
@ChrismedMadzou
@ChrismedMadzou Ай бұрын
subscribed, you deserve more
@irtizahafiz
@irtizahafiz Ай бұрын
Thank you so much!
@CruxfromAI
@CruxfromAI Ай бұрын
Hey, Wondering if you could share the code please?
@irtizahafiz
@irtizahafiz Ай бұрын
Sure. Here you go: github.com/irtiza07/langchain-tutorials/tree/master/youtube_tuts/example_memory
@CruxfromAI
@CruxfromAI Ай бұрын
@ thanks …your explanation is to the point, crisp and clear.
@anuragdubey8294
@anuragdubey8294 Ай бұрын
You explain really well. Thanks
@irtizahafiz
@irtizahafiz Ай бұрын
Glad it was helpful!
@AyeshaSiddiki-c6v
@AyeshaSiddiki-c6v Ай бұрын
Amazing
@irtizahafiz
@irtizahafiz Ай бұрын
Thanks! Appreciate it.
@MansriMohamedAmin
@MansriMohamedAmin Ай бұрын
good job , where is the code ?
@irtizahafiz
@irtizahafiz Ай бұрын
Here you go: github.com/irtiza07/langchain-tutorials/tree/master/youtube_tuts/example_memory
@PleinuCrellMadzou
@PleinuCrellMadzou Ай бұрын
A gold in system design explaination is here
@irtizahafiz
@irtizahafiz Ай бұрын
Glad you found it helpful!
@PleinuCrellMadzou
@PleinuCrellMadzou Ай бұрын
A gold this introduction to system design
@irtizahafiz
@irtizahafiz Ай бұрын
Thanks, appreciate it!
@say.xy_
@say.xy_ Ай бұрын
That's some Solid way to architect my code base; wondering would same flow going for langgraph's state config? And I appreciate the quality content you producing.
@irtizahafiz
@irtizahafiz Ай бұрын
Great question! Unfortunately, I don't have much knowledge about LangGraph yet.
@say.xy_
@say.xy_ Ай бұрын
@@irtizahafiz no worries, im all here to wait for it while expanding knowledge of other areas through you. Keep it going 🦾
@wgllgw
@wgllgw Ай бұрын
Very good video series, I love that you took time to illustrate the different examples. I have a question.. instead of creating different tables with the cluster key of ascending/descending order.. is it possible for cassandra to do SQL like queries where SELECT * FROM simple_temp_v2 ORDER BY time_created ASC Cheers
@irtizahafiz
@irtizahafiz Ай бұрын
You can, if time_created is part of the clustering key. Also, the sort order has to be the same as the cluster key order you gave when creating the table. Additionally, your query needs a WHERE clause on a partition key AFAIK. Otherwise, Cassandra won't be happy needing to sort across partitions.
@wgllgw
@wgllgw Ай бұрын
@@irtizahafiz oh yes.. thanks for pointing that out! would have been a very expensive query without including the partition key!
@priyantynurulfatimah6408
@priyantynurulfatimah6408 Ай бұрын
Hi, so this is my JSON to create debezium connector but it returned error. Could you please help me troubleshoot? I am still learning and already look out for the solving but to no avail. Y^Y JSON: { "name": "source-transactions-connector", "config": { "connector.class": "io.debezium.connector.postgresql.PostgresConnector", "plugin.name": "pgoutput", "database.hostname": "postgres", "database.port": "5432", "database.user": "etl", "database.password": "demopass", "database.dbname": "dvdrental", "database.server.name": "postgres", "key.converter.schemas.enable": "false", "value.converter.schemas.enable": "false", "transforms": "unwrap", "transforms.unwrap.type": "io.debezium.transforms.ExtractNewRecordState", "key.converter": "org.apache.kafka.connect.json.JsonConverter", "value.converter": "org.apache.kafka.connect.json.JsonConverter", "table.include.list": "public.rental_streaming", "slot.name": "deb_rental_transaction_slot" } } ERROR: ERROR || Failed testing connection for jdbc:postgresql://postgres:5432/dvdrental with user 'etl': The connection attempt failed. [io.debezium.connector.postgresql.PostgresConnector]
@irtizahafiz
@irtizahafiz Ай бұрын
Do you have Postgres running locally in port 5432? And, are you confident about the user credentials you are using?
@priyantynurulfatimah6408
@priyantynurulfatimah6408 Ай бұрын
@@irtizahafiz hi, yes.. I am confident about the user credentials.. the thing is I tried to connect my local postgres to docker.. I think this is why the docker cannot connect to postgres localhost since postgres is outside of docker.. do you have any idea how to solve this?
@akshayd82
@akshayd82 Ай бұрын
You can combine the inventory and rate tables
@sahilratnaparkhi5917
@sahilratnaparkhi5917 Ай бұрын
can you make a video on streaming data from cassandra to kafka using debezium
@irtizahafiz
@irtizahafiz Ай бұрын
Noted. I will try to put something together.
@shaohuiyang3034
@shaohuiyang3034 2 ай бұрын
The note pdf is not available. Can you reupload it? Thanks.
@irtizahafiz
@irtizahafiz Ай бұрын
Unfortunately, they were removed from the server. I don't have a copy.
@dewaldesterhuysen712
@dewaldesterhuysen712 2 ай бұрын
Thank you
@totsubo2000
@totsubo2000 2 ай бұрын
How would this system handle scalability? For example if we need to horizontally scale the rate limiter service.
@irtizahafiz
@irtizahafiz 2 ай бұрын
It depends. One way can be to add more instances and then route the traffic using a round-robin or some other routing algorithm.
@ldas1111
@ldas1111 2 ай бұрын
Thank you for the great tutorial! I really appreciate it. I did find the background music a bit distracting-would you mind considering leaving it out in the future?
@irtizahafiz
@irtizahafiz 2 ай бұрын
Appreciate the feedback! Multiple others found it annoying as well, so I have gone ahead and removed it. Cheers!
@daymaker_trading
@daymaker_trading 2 ай бұрын
Amazing, thank you
@irtizahafiz
@irtizahafiz 2 ай бұрын
Thank you for watching
@leinah3671
@leinah3671 2 ай бұрын
Tooltip doesn't work now on v5
@irtizahafiz
@irtizahafiz 2 ай бұрын
Ah, sorry. I think dependencies have changed since I last posted.
@leinah3671
@leinah3671 2 ай бұрын
@@irtizahafiz Found the solution. Use the react-simple-maps v3. But what I did is I used nextui tooltip
@D.Dee_
@D.Dee_ 2 ай бұрын
Hello, great video. I am interested in taking this entire course. However, I am having trouble figuring out the arrangement/progression of the entire course in your playlist. Please could you kindly number each of the videos in this series (e.g. #0, #1, etc.) or perhaps reorganise the playlist? This would really help me and others who are finding it difficult to know the correct sequence to follow. Thank you.
@irtizahafiz
@irtizahafiz 2 ай бұрын
Hi! Unfortunately, I didn't end up with a fixed sequence. Feel free to browse around and see which topics interest you the most. I don't think there's any inherent ordering. If it helps, I would start with the conceptual videos at first, before moving to practical examples.
@Lisa-kk6go
@Lisa-kk6go 2 ай бұрын
Why do we need both unique checkout_id and token? Shouldn't the unique checkout_id be good enough?
@irtizahafiz
@irtizahafiz 2 ай бұрын
It depends on your implementation. The goal with this video was to provide a high level idea only.
@smkhan007
@smkhan007 2 ай бұрын
Scheduled job won't work if the consumers logs in after 1 year
@josephabetang3334
@josephabetang3334 2 ай бұрын
I just heard of Debezium few months ago because we use it at work. Your explanation was clear. Thank you!
@jeffsaremi
@jeffsaremi 2 ай бұрын
Is there a way to shut down the background music?
@irtizahafiz
@irtizahafiz 2 ай бұрын
Unfortunately, no :( I was trying out a different style, which clearly didn't do well haha.
@FarukHossain-bs3ni
@FarukHossain-bs3ni 2 ай бұрын
Awesome, Make a complete RAG application with some text file.
@irtizahafiz
@irtizahafiz 2 ай бұрын
Already flimed ;) Got RAG videos coming up for text file, PDF, CSV, Cassandra, Reddit and many other formats. Hope you enjoy them.
@FarukHossain-bs3ni
@FarukHossain-bs3ni 2 ай бұрын
Hi this is Faruk from India, You are doing awesome.
@irtizahafiz
@irtizahafiz 2 ай бұрын
Thank you so much! Hope you are getting value.
@AyeshaSiddiki-c6v
@AyeshaSiddiki-c6v 2 ай бұрын
Love it!
@irtizahafiz
@irtizahafiz 2 ай бұрын
Thank you! Appreciate your constant support.
@AyeshaSiddiki-c6v
@AyeshaSiddiki-c6v 2 ай бұрын
@ big fan since 2010 sir
@NishatEshika
@NishatEshika 2 ай бұрын
👍
@irtizahafiz
@irtizahafiz 2 ай бұрын
Thank you!
@rfz4151
@rfz4151 2 ай бұрын
Im try this command "docker run --tty --network postgres_debezium_cdc_default confluentinc/cp-kafkacat kafcakat -b kafka:9092 -C -s key=s -s value=avro -r schema-registry:8081 -t postgres.public.student" and get issue => docker: Error response from daemon: network postgres_debezium_cdc_default not found. When i check docker network im found this network, ee5c820a3e14 debezium-network bridge local b4dadb00d632 debezium_default bridge local when im tried using one of them, get issue: docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "kafcakat": executable file not found in $PATH: unknown. how to solve?
@RajkumarS-p1f
@RajkumarS-p1f Ай бұрын
facing same problem, how to solve this probelm
@looppp
@looppp 2 ай бұрын
How did you get umami.track to work? It says it's missing umami installation
@jaggyjut
@jaggyjut 2 ай бұрын
great tutorial. Used Claude AI to figure out the dependencies and how to setup the OpenAI API Key for the simple_prompts file.
@irtizahafiz
@irtizahafiz 2 ай бұрын
Thank you for watching! Claude AI is so good for programming-related questions. Very surprised!
@marwen1983-t1s
@marwen1983-t1s 2 ай бұрын
thank you very much. i really appreciate your approach to discussing this topic
@irtizahafiz
@irtizahafiz 2 ай бұрын
You're very welcome!
@RajkumarS-p1f
@RajkumarS-p1f Ай бұрын
did you the error docker run --tty --network postgres_debezium_cdc_default confluentinc/cp-kafkacat kafcakat -b kafka:9092 -C -s key=s -s value=avro -r schema-registry:8081 -t postgres.public.student" and get issue => docker: Error response from daemon: network postgres_debezium_cdc_default not found.
@AyeshaSiddiki-c6v
@AyeshaSiddiki-c6v 2 ай бұрын
Welcome back! This is amazing, very informative, and easy to understand
@irtizahafiz
@irtizahafiz 2 ай бұрын
Thank you! I appreciate it.
@jamieridenour1275
@jamieridenour1275 2 ай бұрын
so this is transactional replication but for each individual table?
@irtizahafiz
@irtizahafiz 2 ай бұрын
I am not sure I understand what you mean by transactional replication. And yes, you can do it for individual tables.
@vidhya821
@vidhya821 3 ай бұрын
I am sorry but that bgm is really irking me
@irtizahafiz
@irtizahafiz 2 ай бұрын
I appreciate the feedback and suggestions. Will work on it.
@B-Billy
@B-Billy 3 ай бұрын
Woow, you have even shared your noted!! That's perfectly perfect!