Complete Guide To Amazon RDS, Scaling With Read Replicas and EF Core

Поділитися
Вставка
  • Опубліковано 17 гру 2024

КОМЕНТАРІ • 22

  • @MilanJovanovicTech
    @MilanJovanovicTech  4 місяці тому +19

    Get the source code for this video for FREE → the-dotnet-weekly.ck.page/aws-rds
    Want to master Clean Architecture? Go here: bit.ly/3PupkOJ
    Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt

  • @bphatness3924
    @bphatness3924 4 місяці тому +6

    I never miss a Milan video. All serious developers who want to get better should listen to this guy

  • @josecarlosferrerbermudez5423
    @josecarlosferrerbermudez5423 4 місяці тому +2

    Hello men, you just saved me in a project at my work. Excellent content
    Excellent work
    Keep making videos like this this is very helpful

  • @trannhan1432
    @trannhan1432 4 місяці тому +1

    Thanks Milan. It's really helpful!

  • @levitran99
    @levitran99 4 місяці тому +1

    Hello milan .I hope you are doing well. Thanks for the helpful videos

  • @alexmadnix
    @alexmadnix 4 місяці тому

    It was very helpful in understanding the Replica DB service.
    Thank you milan.

  • @Filipekuhn11
    @Filipekuhn11 4 місяці тому

    Excellent content!

  • @MrWTFNETWORK
    @MrWTFNETWORK 4 місяці тому

    What if there are schema changes that we create using ef core migrations on the primary database, will the read replica get these changes automatically?

    • @MilanJovanovicTech
      @MilanJovanovicTech  4 місяці тому +1

      No, you'll have to sync the schema changes manually on the read replica

  • @СвояЛиния-щ2в
    @СвояЛиния-щ2в 4 місяці тому

    Hi, Milan. I've watched your videos about Result pattern recently and implemented it in my project. It's working good, but I got an issue, where I have a repetitive pattern all over my code: I create some value object (for example: Email) which has a static factory method that returns Result and I have to check if the result is failure, if it is I return the error. If I have entities containing lots of value objects, I have to check every time for the condition in my command handlers. The code becomes cumbersome and messy. How would you deal with this problem? I haven't found any good solution for this problem.

    • @MilanJovanovicTech
      @MilanJovanovicTech  4 місяці тому

      "I have to check every time for the condition in my command handlers" - Unfortunately, yes. That is a downside of this approach. It becomes pretty cumbersome when you have many levels of calls all returning a Result.

  • @diwa007
    @diwa007 4 місяці тому

    Hey Milan. What's the latency between replicas in RDS? In our environment, we use EC2 replicas and latency is about 3-5 seconds. Any idea how to reduce the high latency?

    • @MilanJovanovicTech
      @MilanJovanovicTech  4 місяці тому

      That sounds strange, typically it should be less than 1s. Do you have a very high number of writes?

    • @diwa007
      @diwa007 4 місяці тому

      @@MilanJovanovicTech A lot of writes, yes.

  • @parkerwarner8688
    @parkerwarner8688 4 місяці тому

    Does azure have a similar replication service?

    • @MilanJovanovicTech
      @MilanJovanovicTech  4 місяці тому

      It's not an AWS/Azure feature, it's a database feature. But yes - Azure also supports this.