-
Notifications
You must be signed in to change notification settings - Fork 0
/
FeedlySavedForLater1701691966152.json
1922 lines (1922 loc) · 178 KB
/
FeedlySavedForLater1701691966152.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "AWS re:Invent 2023 - 1.5 million requests per second—a story from the Brazilian elections (WPS305)",
"url": "https://www.youtube.com/watch?v=WhNiKtKbRzQ",
"summary": "Delivering critical public events at mass scale requires an infrastructure like no other. In this session, learn how AWS supported the 2022 Brazilian elections and implemented the infrastructure for the voting application for citizens, which supported more than 100 million users and a CDN solution for voting results that handled 1.5 million requests per second. Explore the unique context and user",
"time": "Sun, 03 Dec 2023 20:20:06 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Advanced AWS CDK: Lessons learned from 4 years of use (COM302)",
"url": "https://www.youtube.com/watch?v=Wzawix9bMAE",
"summary": "Released in July 2019, AWS CDK has become a powerful infrastructure-as-code tool to help companies build complex systems on AWS. Its greatest strength, using general purpose languages to define your infrastructure, can also be its greatest weakness. This is because there are many different ways to write your code. Should you use a single stack or multiple? How can you use external data to define y",
"time": "Sun, 03 Dec 2023 21:27:31 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - How to use Amazon Verified Permissions for authorization inside apps (SEC241)",
"url": "https://www.youtube.com/watch?v=ptzb-oBwjxM",
"summary": "When you decouple policy authoring from application development, you can move faster than before. Amazon Verified Permissions simplifies authorization within your applications using policy stores, policy templates, and policy testing. Join this session to learn about new features for Verified Permissions that further simplify schema editing and policy analysis. Also explore how these features help",
"time": "Sun, 03 Dec 2023 22:00:45 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Generative AI: Architectures and applications in depth (BOA308)",
"url": "https://www.youtube.com/watch?v=aEA6X_IElpc",
"summary": "In the fast-paced AI world, advanced generative AI concepts are crucial. To stay competitive and innovative, businesses must grapple with understanding and implementing complex methodologies. Yet, due to the nascent stage of these discussions, clear and comprehensive resources can be sparse, causing difficulties in effective utilization. This session addresses this problem by providing an in-depth",
"time": "Sun, 03 Dec 2023 23:24:55 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Best practices for container observability (COP319)",
"url": "https://www.youtube.com/watch?v=obvOzws2EOE",
"summary": "In the fast-paced world of containerized applications and environments, achieving comprehensive observability is crucial for ensuring optimal performance, reliability, and user experience. Join this session to delve into the best practices for container observability. Discover how to effectively monitor, analyze, and troubleshoot your Amazon EKS and Amazon ECS environments with AWS observability.",
"time": "Sun, 03 Dec 2023 23:40:38 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Building for the future with AWS serverless services (CON320)",
"url": "https://www.youtube.com/watch?v=kxvVDFFiXj8",
"summary": "AWS serverless services help organizations accelerate their path from idea to production, allowing them to build and run modern applications at scale, all while lowering costs and driving agility. Join Holly Mesrobian, VP of Serverless Compute at AWS, to hear about the innovations AWS is making with serverless compute and containers to help organizations achieve superior outcomes for their busines",
"time": "Sun, 03 Dec 2023 23:42:43 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Reducing TCO and downtime by migrating to AWS Fargate (CON322)",
"url": "https://www.youtube.com/watch?v=XzX1LJZWtbc",
"summary": "Many companies, including large financial services organizations, are in the midst of cloud-enabled innovation through large-scale application modernization. These companies are often looking to lower their total cost of ownership (TCO) without compromising on their applications’ scalability, security, or operational efficiency. In this session, explore various pathways, such as AWS Fargate, that",
"time": "Sun, 03 Dec 2023 23:52:32 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Securing containerized workloads on Amazon ECS and AWS Fargate (CON325)",
"url": "https://www.youtube.com/watch?v=RLWuoAHSdis",
"summary": "This session provides an overview of using Amazon ECS integrations with the AWS Cloud, using AWS security services, and the benefits of AWS Fargate’s single-tenancy architecture, to help you securely run containerized workloads. Dive deep into AWS Fargate’s security considerations and discover ways to improve your security posture against potential threats and events using AWS Fargate’s latest fea",
"time": "Sun, 03 Dec 2023 23:53:55 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Securing Kubernetes workloads in Amazon EKS (CON335)",
"url": "https://www.youtube.com/watch?v=iyMcOpXRVWk",
"summary": "In this session, learn about features that can help you secure your Amazon EKS clusters. Get guidance on how security practitioners and cluster administrators can protect information, systems, and assets that are reliant on Amazon EKS, while delivering business value to their customers. This session covers security guidance specific to Amazon EKS on managing access to Kubernetes, AWS Identity and",
"time": "Sun, 03 Dec 2023 23:54:53 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Building highly resilient applications with Amazon DynamoDB (DAT333)",
"url": "https://www.youtube.com/watch?v=ZrFb4PMNGjM",
"summary": "Join this session to explore how resiliency features of Amazon DynamoDB help you build scalable, reliable applications. Learn how to prepare for the unexpected with DynamoDB capabilities like redundant storage, automatic throughput scaling, and multi-active, multi-Region data replication to achieve your business continuity goals at scale. Additionally, Amazon Advertising shares why they chose to m",
"time": "Sun, 03 Dec 2023 23:57:11 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - [LAUNCH] Deep dive on Amazon S3 Express One Zone storage class (STG230)",
"url": "https://www.youtube.com/watch?v=TJp4ayDC8m0",
"summary": "The Amazon S3 Express One Zone storage class delivers one of the fastest and lowest-latency cloud object storage for performance-critical applications that demand consistent single-digit millisecond latency and the ability to scale to millions of requests per minute for frequently accessed datasets. In this session, learn about this new single Availability Zone storage class, its new S3 directory",
"time": "Mon, 04 Dec 2023 24:12:59 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Amazon VPC Lattice architecture patterns and best practices (NET326)",
"url": "https://www.youtube.com/watch?v=zQk9AIPVdXs",
"summary": "Amazon VPC Lattice is an application networking service that simplifies connecting, securing, and monitoring service-to-service communication. You can use VPC Lattice to facilitate cross-account and cross-VPC connectivity, as well as application layer load balancing for your workloads in a consistent way regardless of the underlying compute type—instances, containers, and serverless. In this sessi",
"time": "Mon, 04 Dec 2023 24:26:43 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - How the NY Giants use Teradata to personalize fan experiences (AIM106)",
"url": "https://www.youtube.com/watch?v=bq79X0H0c48",
"summary": "There are many customer journey touchpoints for today’s sports fans, from ticket sales and merchandise to in-stadium Wi-Fi and more. Sophisticated sports organizations are collecting, connecting, and analyzing this information to provide tailored game-day experiences that keep fans coming back for more. Join this session to discover how the New York Giants use Teradata to deliver stellar experienc",
"time": "Mon, 04 Dec 2023 24:47:37 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Netflix's success: Combining collaboration, hardware monitoring & AI (AIM315)",
"url": "https://www.youtube.com/watch?v=4EOL8W0aEAo",
"summary": "Netflix makes delivering countless hours of seamless streaming look easy. In this session, the experts at Netflix share how they collaborate with Intel engineers using Intel performance tools and software. From analyzing, tuning, and optimizing AI workloads on Intel Xeon-based Amazon EC2 instances, Netflix discusses situations using Intel AI accelerators, PMUs, and software in the cloud. Discover",
"time": "Mon, 04 Dec 2023 01:37:52 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Advanced integration patterns & trade-offs for loosely coupled systems (API309)",
"url": "https://www.youtube.com/watch?v=FGKGdUiZKto",
"summary": "Modern applications rarely live in isolation: They expose APIs, publish events, call third-party services, and externalize states. Being (typically) composed of decoupled components, such applications must address the fundamental challenges of distributed systems, including out-of-order delivery, idempotence, or partial failures. In this session, learn about common design trade-offs for distribute",
"time": "Sat, 02 Dec 2023 23:03:13 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Do modern cloud applications lock you in? (ARC307)",
"url": "https://www.youtube.com/watch?v=jykSBmnAM2I",
"summary": "Modern cloud applications utilize fully managed services that keep builders from having to manage infrastructure. Does having the cloud do more make it harder to move applications somewhere else? Can abstraction layers and in-house platforms give you the best of both worlds? Does decoupling your application actually increase your cloud costs? This session examines trade-offs for modern cloud appli",
"time": "Sat, 02 Dec 2023 23:06:09 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Best practices for creating multi-Region architectures on AWS (ARC308)",
"url": "https://www.youtube.com/watch?v=_vGlnzPZigU",
"summary": "Architecting and building a multi-Region architectures can come with a new set of challenges. These challenges include how to manage dependencies, infrastructure deployments, data replication, consistency, observability, testing, and operations. Whether you’re needing to expand to multiple Regions to improve resilience, adhere to governmental data regulations, or improve end-user latency, this ses",
"time": "Sat, 02 Dec 2023 23:08:05 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Using zonal autoshift to automatically recover from an AZ impairment (ARC309)",
"url": "https://www.youtube.com/watch?v=_0F-wdwiqZo",
"summary": "Building highly resilient applications in the cloud requires building across multiple Availability Zones, capacity planning for redundancy, and having mechanisms in place to ensure that requests are routed away from occasional, temporary failures—both hard and gray—in an Availability Zone. Learn how you can design and monitor applications to detect and automatically recover from failures within Av",
"time": "Sat, 02 Dec 2023 23:16:23 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Implementing distributed design patterns on AWS (BOA309)",
"url": "https://www.youtube.com/watch?v=pfAlmkzyaJQ",
"summary": "Legacy applications were once modern. The challenge is to have development principles and processes continuously improve and to develop applications with minimal technical debt. Developing complex modern applications requires a thorough understanding of how to extract business requirements and goals and to select the appropriate tactical design and implementation patterns that support business str",
"time": "Fri, 01 Dec 2023 23:30:52 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Construct your constructs: Use AWS CDK to create architecture at scale (BWP302)",
"url": "https://www.youtube.com/watch?v=ugtsm3Z3VgU",
"summary": "Learn how to rapidly scale your organization’s cloud strategy with AWS CDK. Hear the story of how Amazon’s Buy with Prime created secure-by-default CDK components to provide engineers with the building blocks needed to create incredibly secure and extensible ecommerce systems, cutting down on costs, delivery time, and overhead. Learn more about AWS re:Invent at https://go.aws/46iuzGv. Subscribe: M",
"time": "Fri, 01 Dec 2023 23:38:34 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Operating with AWS open source observability (COP332)",
"url": "https://www.youtube.com/watch?v=ziyTvW_jkxI",
"summary": "Open standards are becoming a popular mechanism for implementing observability for organizations that adopt the OpenTelemetry CNCF project. In this session, learn how to build an observability solution with a fully managed open source platform with AWS Distro for OpenTelemetry at its foundation. Learn how to incorporate Amazon Managed Grafana, Amazon Managed Service for Prometheus, and Amazon Open",
"time": "Fri, 01 Dec 2023 23:47:24 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Exiting the data center: A League of Legends and VALORANT story (GAM304)",
"url": "https://www.youtube.com/watch?v=8nX5bRsAYv0",
"summary": "Moving hundreds of thousands of players from on-premises data centers to the cloud with minimal downtime requires a unique mix of engineering, planning, and collaboration. In this session, learn how Riot Games, AWS, and Slalom globally migrated League of Legends and VALORANT from the data center to AWS Regions and AWS Local Zones. Learn more about AWS re:Invent at https://go.aws/46iuzGv. Subscribe",
"time": "Sat, 02 Dec 2023 24:56:03 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Scaling a multiplayer game into the millions with Mortal Kombat 1 (GAM307)",
"url": "https://www.youtube.com/watch?v=d1YqINr8s2o",
"summary": "Discover how Warner Bros. Games connects millions of online players with a centralized gaming services platform using Amazon EC2 and Amazon GameLift. In this session, explore the backend architecture and how it enriches the gaming experience with features like social media integration, multiplayer options, in-game economies while managing billions of API request daily and supporting over a million",
"time": "Sat, 02 Dec 2023 24:58:14 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Putting your data to work with generative AI | AIM250-INT",
"url": "https://www.youtube.com/watch?v=9pXpoxf_los",
"summary": "How can you turn your existing data architecture like data lakes into a business advantage with generative AI? In this talk, explore what is top of mind for leaders of data organizations across the globe for how they can best put proprietary datasets to work for unique, differentiated generative AI solutions. Learn from AWS customers with production generative AI applications about how data has fa",
"time": "Sat, 02 Dec 2023 05:18:01 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Dive deep on Amazon S3 (STG314)",
"url": "https://www.youtube.com/watch?v=sYDJYqvNeXU",
"summary": "Amazon S3 provides developers and IT teams with cloud object storage that delivers industry-leading scalability, durability, security, and performance. In this session, dive deep into the underlying architecture of S3 to see how it delivers virtually unlimited scale and elasticity. Learn about the culture and system of data durability and how it delivers consistent performance, and discover how th",
"time": "Sat, 02 Dec 2023 05:26:23 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Creating new analytics in sports (SPT201)",
"url": "https://www.youtube.com/watch?v=NyvDuuT7CvQ",
"summary": "The raw data of sports has transitioned from box scores to tracking data, and with that comes an opportunity to apply AI/ML to surface new insights that impact how we coach, train, and consume sports. In this session, hear the NHL and AWS discuss how new analytics are created—from conception to on-air presentation. Learn more about AWS re:Invent at https://go.aws/46iuzGv. Subscribe: More AWS video",
"time": "Sat, 02 Dec 2023 05:38:48 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "Four APM features to elevate your observability experience",
"url": "https://aws.amazon.com/blogs/mt/four-apm-features-to-elevate-your-observability-experience/",
"summary": "Application performance monitoring (or APM) is the practice of taking key application performance indicators to ensure system availability, improve system performance, and improve the end-user experience. This week we announced Amazon CloudWatch Application Signals , a new set of features built-in to Amazon CloudWatch to help you speed up troubleshooting, reduce application disruptions, and opera",
"time": "Fri, 01 Dec 2023 23:44:10 GMT+1",
"sourceTitle": "AWS Cloud Operations & Migrations Blog ",
"sourceUrl": "https://aws.amazon.com/blogs/mt/"
},
{
"title": "AWS re:Invent 2023 - Scalable load balancing and security on AWS with HAProxy Fusion (SEC225)",
"url": "https://www.youtube.com/watch?v=qs1C-fiXiog",
"summary": "An advanced load balancer and web application firewall (WAF) such as HAProxy Enterprise helps keep AWS-based applications fast, secure, and resilient. When load balancing at scale, it can be challenging to manage a large number of applications and backend servers behind load balancers. In this lightning talk, learn how HAProxy Fusion simplifies large-scale HAProxy Enterprise deployments on AWS. Le",
"time": "Fri, 01 Dec 2023 21:13:39 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Building observability to increase resiliency (COP343)",
"url": "https://www.youtube.com/watch?v=6bJkYtrMMPI",
"summary": "Using observability effectively is essential for proving your resilient system operates the way you planned. Well-applied observability helps you find early signs of problems, before they impact customers, and react quickly to mitigate impact. In this session, learn how you can use observability best practices to improve your resilience posture in AWS. Dive deep into real-world failure modes, and",
"time": "Fri, 01 Dec 2023 21:15:30 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Get started with checksums in Amazon S3 for data integrity checking (STG350)",
"url": "https://www.youtube.com/watch?v=NNx9eZcbLnU",
"summary": "Organizations are constantly creating and migrating critical digital assets into Amazon S3. As assets are migrated and used across workflows, it’s important to ensure files remain unaltered by network corruption, hard drive failure, or other issues. Algorithms are used to scan files byte by byte to generate unique fingerprints, known as checksums. In this follow-up demonstration to STG201, learn h",
"time": "Fri, 01 Dec 2023 18:43:57 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS AppConfig Agent launches write to disk, backups, and permission mapping",
"url": "https://aws.amazon.com/about-aws/whats-new/2023/12/aws-appconfig-agent-write-backups-permission-mapping/",
"summary": "AWS AppConfig , a feature of AWS Systems Manager , announces four new features available in the latest release of the AWS AppConfig Agent . The Agent now supports writing feature flags and configuration data to a file on local disk in a location that the customer specifies. Secondly, to improve resiliency, the Agent can be configured to write its own local backup of the latest version of configur",
"time": "Fri, 01 Dec 2023 19:01:58 GMT+1",
"sourceTitle": "AWS What's New ",
"sourceUrl": "https://aws.amazon.com/about-aws/whats-new/recent/"
},
{
"title": "AWS re:Invent 2023 - NFL Next Gen Stats: Using AI/ML to transform fan engagement (PRO304)",
"url": "https://www.youtube.com/watch?v=HSAJ6kAVzXY",
"summary": "The landscape of sports statistics has evolved over the years, transitioning from the basic box scores to more advanced metrics that provide a deeper understanding of player performance and game dynamics. With the advent of next-gen stats and data analytics, football analysts and enthusiasts are now equipped with tools to analyze the game in unprecedented detail. Join this session to learn how AWS",
"time": "Fri, 01 Dec 2023 19:49:45 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Ready for what’s next? Designing networks for growth and flexibility (NET310)",
"url": "https://www.youtube.com/watch?v=FkWOhTZSfdA",
"summary": "Your AWS network started with one VPC, but it’s changed a lot since then, and it’s your job to be ready for what’s next. This session looks at real-world strategies for designing outstanding and adaptable cloud networks. Drawing from the experiences of tens of thousands of AWS customers, follow a simple network as it becomes progressively larger and more complex. See how AWS Transit Gateway, AWS C",
"time": "Fri, 01 Dec 2023 17:32:57 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Optimize cost and performance and track progress toward mitigation (ARC319)",
"url": "https://www.youtube.com/watch?v=keAfy8f84E0",
"summary": "Do you have insight into the details of your cost and usage on AWS? Are you taking advantage of cost optimization opportunities and best practices recommendations across the AWS Well-Architected Framework? In this session, learn how organizations are using Cloud Intelligence Dashboards to optimize cost and performance, improve security and resiliency, and operate at scale in the cloud. Explore spe",
"time": "Fri, 01 Dec 2023 17:47:31 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Seamless observability with AWS Distro for OpenTelemetry (COM307)",
"url": "https://www.youtube.com/watch?v=S4GfA2R0N_A",
"summary": "In the past, collecting data from your applications running on AWS could be challenging. AWS support of OpenTelemetry (OTel) via APIs and AWS Distro for OpenTelemetry (ADOT) has dramatically simplified the developer experience for observability. Learn how to instrument your applications and send data to any compatible backend using Amazon CloudWatch and Amazon Kinesis Data Streams, ADOT agents, OT",
"time": "Fri, 01 Dec 2023 17:49:12 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "TVNZ impulses personalized advertising by protecting viewer data and privacy with AWS Clean Rooms",
"url": "https://tmbroadcast.com/index.php/tvnz-advertising-viewer-aws-clean-rooms/",
"summary": "TVNZ is the first media company in New Zealand to adopt the AWS data collaboration service to power personalized advertising At AWS re:Invent, Amazon Web Services (AWS) announced that Television New Zealand (TVNZ), the state-owned and commercially funded television broadcaster in New Zealand, is the […] The post appeared first on TM Broadcast International .",
"time": "Fri, 01 Dec 2023 11:15:57 GMT+1",
"sourceTitle": "Search Results for “aws” – TM Broadcast ... ",
"sourceUrl": "https://tmbroadcast.com/"
},
{
"title": "AWS re:Invent 2023 - Accelerate secure and reliable AWS deployments with Dynatrace (ENT230)",
"url": "https://www.youtube.com/watch?v=5dX4CXp6M8w",
"summary": "Organizations can spend a lot of time on manual and repetitive work, monitoring tools, compliance challenges, and inconsistent, undocumented approaches. DevOps teams must go beyond putting data on dashboards and manually sifting through scans and tests from observability, security, and business data. In this session, learn how Dynatrace delivers intelligent workflow-based automation that proactive",
"time": "Thu, 30 Nov 2023 21:59:09 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Modernization of Nintendo eShop: Microservice and platform engineering (GAM306)",
"url": "https://www.youtube.com/watch?v=grdawJ3icdA",
"summary": "Nintendo eShop is a web-based ecommerce service where you can browse and purchase digital software from Nintendo Switch and other Nintendo platforms. As the digital business continues to grow, it is essential for Nintendo Systems to modernize the service’s system to improve agility and go-to-market speed. In this session, hear from Nintendo Systems about the decision and the process of decoupling",
"time": "Thu, 30 Nov 2023 23:09:24 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Safely migrate databases that serve millions of requests per second (NFX307)",
"url": "https://www.youtube.com/watch?v=3bjnm1SXLlo",
"summary": "Netflix’s data platform serves tens of millions of requests per second at millisecond latency from their online data stores hosted on AWS, such as Apache Cassandra and EVCache (Memcached-based). In this session, learn how to use shadow traffic and unique capabilities of the cloud to migrate petabytes of data and millions of requests per second safely and without any risk of data loss or user-visib",
"time": "Thu, 30 Nov 2023 23:11:38 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Deep dive into Amazon ECS resilience and availability (CON401)",
"url": "https://www.youtube.com/watch?v=C7HUkG_tu90",
"summary": "Every application architecture relies on underlying infrastructure, and many choose Amazon ECS as the foundation to build upon. Do you know how Amazon ECS is built? What design considerations were taken while building the service? How Amazon ECS can help you minimize an outage? In this session, learn how Amazon ECS can help you address your requirements for running resilient and reliable applicati",
"time": "Thu, 30 Nov 2023 23:14:19 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Introducing Amazon ElastiCache Serverless: Get started in minutes (DAT209)",
"url": "https://www.youtube.com/watch?v=IvkHRizfXok",
"summary": "With Amazon ElastiCache Serverless, you no longer have to provision, plan for, or manage your cache cluster capacity. ElastiCache Serverless helps you get started in minutes with a distributed in-memory cache and instantly scales in and out to support even the most unpredictable application traffic patterns. In this follow-up demo to DAT342, learn about ElastiCache Serverless instant scaling capab",
"time": "Fri, 01 Dec 2023 24:27:32 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Putting your data to work with generative AI | AIM250-INT",
"url": "https://www.youtube.com/watch?v=rlAc5wxQ2Vs",
"summary": "How can you turn your existing data architecture like data lakes into a business advantage with generative AI? In this talk, explore what is top of mind for leaders of data organizations across the globe for how they can best put proprietary datasets to work for unique, differentiated generative AI solutions. Learn from AWS customers with production generative AI applications about how data has fa",
"time": "Fri, 01 Dec 2023 24:47:37 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Real-time RAG: How to augment LLMs with Redis and Amazon Bedrock (DAT101)",
"url": "https://www.youtube.com/watch?v=_EUhk49t2lw",
"summary": "Large language models (LLMs), such as GPT-4, use the power of vector embeddings and databases to address challenges posed by evolving data. These embeddings, when combined with a vector database or search algorithm, offer a way for LLMs to gain access to an up-to-date and ever-expanding knowledge base. This ensures LLMs remain capable of generating accurate and contextually appropriate outputs, ev",
"time": "Fri, 01 Dec 2023 24:51:37 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - What’s new with Amazon S3 (STG204)",
"url": "https://www.youtube.com/watch?v=idz2SvBHK-s",
"summary": "Amazon S3 continues to deliver new innovations to help you securely store your data for virtually unlimited use cases. From new security defaults and dual-layer encryption to a high-performance open source file client and more, Amazon S3 continues to innovate and differentiate from other cloud storage offerings. Join this session to learn about new features in Amazon S3 and practical tips for how",
"time": "Fri, 01 Dec 2023 01:30:35 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Building an AWS solutions architect agent with Amazon Bedrock (BOA306)",
"url": "https://www.youtube.com/watch?v=kzzlchi0DzU",
"summary": "Navigating through complex cloud solutions can be a daunting task. In this session, see how generative AI can help solve this problem by building an AWS solutions architect agent. Using Amazon Bedrock, learn how to build a generative AI agent that can query AWS documentation, generate code, and create diagrams. The session ends with a live demo, where our generative AI agent handles a variety of t",
"time": "Fri, 01 Dec 2023 01:38:54 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - 5 things you should know about resilience at scale (ARC327)",
"url": "https://www.youtube.com/watch?v=CowAYv3qNCs",
"summary": "Seventeen years of operating on AWS has taught us a thing or two (or five) on how to build in mitigations for the kinds of things that can go wrong with services, particularly at scale. Join this session to go beyond the 9s to the even more important, and less broadly understood, topic of shortening time to mitigation when the unexpected happens. Hear from AWS operational leaders who have extensiv",
"time": "Fri, 01 Dec 2023 01:43:56 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Reducing AWS Fargate startup times by lazy loading container images (CON307)",
"url": "https://www.youtube.com/watch?v=5yskgXizYig",
"summary": "This session dives deep into Seekable OCI (SOCI). Learn how, by using SOCI indexes with AWS Fargate, you can dramatically reduce the time taken to launch Amazon ECS tasks. Hear about SOCI best practices, learn how to verify that you are using SOCI for the right workloads, and consider different ways to automate the creation of a SOCI index for existing OCI container images. Learn more about AWS re",
"time": "Fri, 01 Dec 2023 01:52:26 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Dive deep into Amazon DynamoDB (DAT330)",
"url": "https://www.youtube.com/watch?v=ld-xoehkJuU",
"summary": "This session provides a deep dive into Amazon DynamoDB, and it shares insights into how DynamoDB is architected to deliver the scalability and response times that customers have come to expect. Learn how popular capabilities like on-demand capacity, global tables, DynamoDB Streams, and transactions work and how you can best take advantage of them in your workloads. Learn more about AWS re:Invent a",
"time": "Fri, 01 Dec 2023 01:53:26 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Scaling Warhammer 40,000: Darktide from 0 to 100,000 players in 1 hour (GAM305)",
"url": "https://www.youtube.com/watch?v=ZgGYtuNSX4M",
"summary": "Learn how Fatshark developed its most complex game yet—Warhammer 40,000: Darktide—on AWS. In this session, discover how to build a game backend that scales to millions of players using a serverless infrastructure. Dive deep into how Fatshark uses Amazon GameLift FleetIQ and FlexMatch to solve real-time game server use cases with high real-time compute requirements without needing to provision for",
"time": "Fri, 01 Dec 2023 02:56:47 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - The real-time database to build your AI future (DAT206)",
"url": "https://www.youtube.com/watch?v=KEhTOeasabk",
"summary": "AI/ML applications crave massive datasets and are becoming mainstream. Solutions that enable you to manage constant change and satisfy the insatiable demand for data are indispensable. Learn how leading organizations are standardizing on highly efficient cloud databases built to handle exponential growth. Aerospike CEO Subbu Iyer, along with customers Guy Machlev, VP of Engineering at Riskified, a",
"time": "Fri, 01 Dec 2023 03:11:34 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Deploying multi-tenant SaaS applications on Amazon ECS and AWS Fargate (CON313)",
"url": "https://www.youtube.com/watch?v=6a8SfEhyFyk",
"summary": "There is a growing trend to build SaaS solutions on Amazon ECS. Developing multi-tenant SaaS applications requires addressing multiple concerns including tenant isolation, tenant onboarding, tenant-specific metering, monitoring, and other SaaS aspects. In this session, explore how to manage multi-tenancy aspects when deploying solutions on AWS Fargate. Learn more about AWS re:Invent at https://go.",
"time": "Fri, 01 Dec 2023 03:09:13 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Utilizing machine learning & vector databases for advanced AI search (BOA312)",
"url": "https://www.youtube.com/watch?v=CDFA2IXsodo",
"summary": "As AI continues to transform industries, the applications of generative AI and LLMs are becoming increasingly significant. This session delves into the utility of these models across a variety of sectors, from fashion to entertainment and from cheminformatics to bioinformatics. It demonstrates how you can build a similar solution by developing a product catalog similarity search solution, integrat",
"time": "Fri, 01 Dec 2023 03:12:24 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Live events: Moving on-premises broadcast workloads to the cloud (HYB106)",
"url": "https://www.youtube.com/watch?v=xXWAsg8iYO8",
"summary": "Global broadcasters are prioritizing cloud migration discussions, particularly those with a significant live broadcasting component. Cloud’s viability for live events, sports, and news has been established with major events like the Olympics using cloud technologies. With Amagi Dynamic on AWS, broadcasters can efficiently manage live events without large upfront hardware investments, paying only f",
"time": "Fri, 01 Dec 2023 03:18:24 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Partner Keynote with Dr. Ruba Borno",
"url": "https://www.youtube.com/watch?v=mM2HMK3ufTo",
"summary": "Dr. Ruba Borno, Vice President of AWS Worldwide Channels and Alliances, presents the AWS Partner Keynote. Ruba dives into the world of strategic partnerships to show how AWS and AWS Partners are achieving impossible firsts, helping customers reimagine their business models and drive business outcomes. You will hear from partners and customers on how we work together across industries and geographi",
"time": "Fri, 01 Dec 2023 03:34:33 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - A consistent approach to resilience analysis for critical workloads (ARC313)",
"url": "https://www.youtube.com/watch?v=fEOeP08cQdk",
"summary": "In this session, learn about a resilience analysis framework and how you can apply it to have a consistent and repeatable process for analyzing your workloads. Learn how to discover failure modes and how they could impact your workloads. Using this approach in the design process and in production can help you think about potential failure modes and design for them with preventative and corrective",
"time": "Fri, 01 Dec 2023 03:59:13 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Explore text-generation FMs for top use cases with Amazon Bedrock (AIM333)",
"url": "https://www.youtube.com/watch?v=QoaFYmpXvak",
"summary": "Foundation models (FMs) can be used for natural language processing tasks such as summarization, text generation, classification, open-ended Q&A, and information extraction. With Amazon Bedrock, you can choose powerful FMs from AI21 Labs, Anthropic, and Cohere to find the right FM for your use case such as the Jurassic-2, Claude, and Command families of text-generation FMs. Join this session to le",
"time": "Fri, 01 Dec 2023 04:00:18 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - How the PGA Tour works with AWS to enhance fan engagement (SPT206)",
"url": "https://www.youtube.com/watch?v=0f8bbdR-icE",
"summary": "Join this lightning talk for a fireside chat with Scott Gutterman, SVP of Digital Operations for the PGA Tour, as we discuss the PGA Tour’s use of AWS technologies to revolutionize the fan experience. Learn more about AWS re:Invent at https://go.aws/46iuzGv. Subscribe: More AWS videos: http://bit.ly/2O3zS75 More AWS events videos: http://bit.ly/316g9t4 ABOUT AWS Amazon Web Services (AWS) hosts eve",
"time": "Fri, 01 Dec 2023 04:15:18 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Solving large-scale data access challenges with Amazon S3 (STG337)",
"url": "https://www.youtube.com/watch?v=Ts-ZMBzGeh0",
"summary": "As you build a data lake or shared datasets on Amazon S3, managing access is essential. You need strong guardrails that protect your data. Within your organization, you require granular access control for your data with strong controls around authentication, authorization, encryption, and auditing. Come to this session to learn about common and successful patterns for implementing your access cont",
"time": "Fri, 01 Dec 2023 04:26:27 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - [LAUNCH] Achieving scale with Amazon Aurora Limitless Database (DAT344)",
"url": "https://www.youtube.com/watch?v=a9FfjuVJ9d8",
"summary": "Amazon Aurora is a relational database service built for the cloud that is designed for unparalleled high performance and availability at global scale, with full MySQL and PostgreSQL compatibility. In this session, learn how Amazon Aurora Limitless Database enables applications to scale to millions of transactions per second across petabytes of data. Explore the architecture, distributed transacti",
"time": "Fri, 01 Dec 2023 04:58:28 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Strategies for navigating multicloud decisions and difficulties (ENT217)",
"url": "https://www.youtube.com/watch?v=Hu3HeUIQTFg",
"summary": "As organizations seek to accelerate cloud migration and transformation, some find themselves in situations where they have to manage IT operations in a multicloud environment, or they simply struggle with whether and how to adopt a multicloud strategy in the first place. Leaders must consider how operating multiple cloud environments impacts business outcomes and their ability to innovate. In this",
"time": "Fri, 01 Dec 2023 05:15:51 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Improve web application performance using AWS Global Accelerator (NET327)",
"url": "https://www.youtube.com/watch?v=ecNDlRNWW3w",
"summary": "Routing user traffic over the public internet can lead to inconsistent performance due to internet weather and network congestion, so you may need a better solution. AWS Global Accelerator can improve performance by moving user traffic onto the vast AWS global network to optimize the network path from users to applications, regardless of where users are located globally. In this session, learn abo",
"time": "Fri, 01 Dec 2023 05:27:44 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Keynote with Dr. Werner Vogels",
"url": "https://www.youtube.com/watch?v=UTRBVPvzt9w",
"summary": "Dr. Werner Vogels, Amazon.com's VP and CTO, joins us for his twelfth re:Invent appearance. In his keynote, he covers best practices for designing resilient and cost-aware architectures. He also discusses why artificial intelligence is something every builder must consider when developing systems and the impact this will have in our world. Featuring customer speakers: Dr. Rebecca Portnoff, Head of",
"time": "Fri, 01 Dec 2023 24:48:28 GMT+1",
"sourceTitle": "AWS Youtube ",
"sourceUrl": "https://www.youtube.com/channel/UCd6MoB9NC6uYN2grvUNT-Zg"
},
{
"title": "AWS re:Invent 2023 - Expect the unexpected and build resilience with AWS (PEX116)",
"url": "https://www.youtube.com/watch?v=DD-7hPzesrk",
"summary": "Join this lightning talk for an overview of the AWS resilience best practices to help customers improve the availability and resilience of critical workloads in the cloud. Learn how AWS resilience partners help customers in achieving their resilience goals. This lightning talk is intended for AWS Partners. Learn more about AWS re:Invent at https://go.aws/46iuzGv. Subscribe: More AWS videos: http:/",
"time": "Thu, 30 Nov 2023 21:44:05 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Deep dive into the AWS Nitro System (CMP306)",
"url": "https://www.youtube.com/watch?v=Cxie0FgLogg",
"summary": "The AWS Nitro System is a rich collection of building-block technologies—including hardware offload and security components built by AWS—that are powering the recent and future generations of Amazon EC2 instances with an ever-broadening selection of compute, storage, memory, and networking options. In this session, dive deep into the Nitro System, review its design and architecture, explore new in",
"time": "Thu, 30 Nov 2023 21:24:50 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Discover seamless observability with eBPF (DOP226)",
"url": "https://www.youtube.com/watch?v=XvYZUGAQS4k",
"summary": "eBPF is changing the observability game by unlocking insights that could be missed by traditional monitoring solutions. Join this lightning talk to see how eBPF-powered observability helps you to dive deeper into application performance by using an out-of-band kernel-level sensor that requires no code changes or developer efforts. Learn about the major promises of eBPF observability, including the",
"time": "Thu, 30 Nov 2023 21:28:33 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Use generative AI to name your pet after your favorite song (BOA208)",
"url": "https://www.youtube.com/watch?v=z4N96PEFnds",
"summary": "Many developers haven’t been able to catch up with new jargon or best practices for generative AI. Whether you’re already getting started with AI/ML or you’re feeling like you’re behind the curve, this session is for you. Join the hosts of the ”Quick Start on AWS: Machine Learning” show, which trained over 7,000 people, to learn how to use foundation models in Amazon Bedrock to name your pet after",
"time": "Thu, 30 Nov 2023 21:30:32 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Best practices for operating on AWS (COP321)",
"url": "https://www.youtube.com/watch?v=XBKq2JXWsS4",
"summary": "Operating in the cloud allows IT teams to focus on business outcomes and accelerate innovation. In this session, learn how to build, manage, and operate your mission-critical applications in a secure, automated, reliable, and cost-effective way. Discover best practices for establishing a multi-account environment, automating operations, and managing your applications. Additionally, learn how to ov",
"time": "Thu, 30 Nov 2023 21:37:54 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "Use AWS Fault Injection Service to demonstrate multi-region and multi-AZ application resilience",
"url": "https://aws.amazon.com/blogs/aws/use-aws-fault-injection-service-to-demonstrate-multi-region-and-multi-az-application-resilience/",
"summary": "AWS Fault Injection Service (FIS) helps you to put chaos engineering into practice at scale. Today we are launching new scenarios that will let you demonstrate that your applications perform as intended if an AWS Availability Zone experiences a full power interruption or connectivity from one AWS region to another is lost. You can use the scenarios to conduct experiments that will build confidenc",
"time": "Thu, 30 Nov 2023 19:53:14 GMT+1",
"sourceTitle": "AWS News Blog ",
"sourceUrl": "https://aws.amazon.com/blogs/aws/"
},
{
"title": "AWS Fault Injection Service launches two highly requested scenarios",
"url": "https://aws.amazon.com/about-aws/whats-new/2023/11/aws-fault-injection-service-two-requested-scenarios/",
"summary": "Today, AWS Fault Injection Service (FIS) announces the availability of two new scenarios, AZ Availability: Power Interruption and Cross-Region: Connectivity. The AZ Availability: Power Interruption scenario allows you to determine how a multi-AZ application will operate while experiencing the expected symptoms of a complete power interruption in a single AZ. The Cross-Region: Connectivity scenari",
"time": "Thu, 30 Nov 2023 19:52:07 GMT+1",
"sourceTitle": "AWS What's New ",
"sourceUrl": "https://aws.amazon.com/about-aws/whats-new/recent/"
},
{
"title": "AWS re:Invent 2023 - Drive personalized CX using generative AI and Amazon Personalize (AIM225)",
"url": "https://www.youtube.com/watch?v=qwwLhbwS-rs",
"summary": "Delivering the best experience is critical to capture and retain customers today. With generative AI, it is possible to hyper-personalize targeted recommendations for shopping and streaming. While standard taglines like “People who bought this also bought . . .” or “Because you watched . . .” entice some, they don’t fully address individual interests. Companies must find ways to dynamically genera",
"time": "Thu, 30 Nov 2023 18:17:38 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Boosting efficiency: How to realize 70% cost reduction with AWS Fargate -CON318",
"url": "https://www.youtube.com/watch?v=WVGxnUEr1OU",
"summary": "In this session, discover how a leading enterprise SaaS company, using AWS Fargate and AWS Graviton, transformed their data-intensive grid service. Learn how they achieved 70% cost reduction within 6 months, grew peak traffic from 1,000 RPS to 50,000 RPS, and increased deployment velocity from once weekly to twice daily using AWS CodePipeline. Explore their cell-based architecture strategies for i",
"time": "Thu, 30 Nov 2023 18:19:11 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Improve your mobile and web app quality using AWS Device Farm (FWM202)",
"url": "https://www.youtube.com/watch?v=__93Tm0YCRg",
"summary": "In this session, learn how you can improve the quality of your mobile and web apps by running tests on real devices at scale with AWS Device Farm. Hear from Riot Games, a leading game developer and publisher, about how they use Device Farm to streamline their mobile app testing process, improve the quality of their mobile games and SDKs, run automated and manual tests on real devices in the cloud,",
"time": "Thu, 30 Nov 2023 18:33:50 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "Easily build semantic image search using Amazon Titan",
"url": "https://aws.amazon.com/blogs/machine-learning/easily-build-semantic-image-search-using-amazon-titan/",
"summary": "Digital publishers are continuously looking for ways to streamline and automate their media workflows to generate and publish new content as rapidly as they can, but without foregoing quality. Adding images to capture the essence of text can improve the reading experience. Machine learning techniques can help you discover such images. “ A striking image is one of the most effective ways to captur",
"time": "Thu, 30 Nov 2023 18:43:22 GMT+1",
"sourceTitle": "AWS Machine Learning Blog ",
"sourceUrl": "https://aws.amazon.com/blogs/machine-learning/"
},
{
"title": "Recap AWS France Sports Day 2023",
"url": "https://www.youtube.com/watch?v=8tul5ZFBppo",
"summary": "Plus de 200 personnes du monde du sport français ont assisté au premier AWS France Sports Day à Roland Garros. Contacter AWS 👉 https://aws.amazon.com/fr/contact-us/",
"time": "Thu, 30 Nov 2023 18:21:53 GMT+1",
"sourceTitle": "Amazon Web Services France ",
"sourceUrl": "https://www.youtube.com/channel/UCDE2Dt16Asi-RiR_GNe9scA"
},
{
"title": "Zonal autoshift – Automatically shift your traffic away from Availability Zones when we detect potential issues",
"url": "https://aws.amazon.com/blogs/aws/zonal-autoshift-automatically-shift-your-traffic-away-from-availability-zones-when-we-detect-potential-issues/",
"summary": "Today we’re launching zonal autoshift, a new capability of Amazon Route 53 Application Recovery Controller that you can enable to automatically and safely shift your workload’s traffic away from an Availability Zone when AWS identifies a potential failure affecting that Availability Zone and shift it back once the failure is resolved. When deploying resilient applications, you typically deploy yo",
"time": "Thu, 30 Nov 2023 19:43:58 GMT+1",
"sourceTitle": "AWS News Blog ",
"sourceUrl": "https://aws.amazon.com/blogs/aws/"
},
{
"title": "Amazon CloudWatch Application Signals for automatic instrumentation of your applications (preview)",
"url": "https://aws.amazon.com/blogs/aws/amazon-cloudwatch-application-signals-for-automatic-instrumentation-of-your-applications-preview/",
"summary": "One of the challenges with distributed systems is that they are made up of many interdependent services, which add a degree of complexity when you are trying to monitor their performance. Determining which services and APIs are experiencing high latencies or degraded availability requires manually putting together telemetry signals. This can result in time and effort establishing the root cause o",
"time": "Thu, 30 Nov 2023 18:21:21 GMT+1",
"sourceTitle": "AWS News Blog ",
"sourceUrl": "https://aws.amazon.com/blogs/aws/"
},
{
"title": "AWS re:Invent 2023 - Secure remote connectivity to AWS (NET202)",
"url": "https://www.youtube.com/watch?v=LDgXv6OVwg8",
"summary": "Explore secure and efficient ways to access your private AWS and on-premises resources without exposing them directly to the internet. Join this session to learn how to provide remote connectivity to your private corporate applications and virtual machines. Explore services like AWS Verified Access, AWS Client VPN, and Amazon EC2 Instance Connect to help you decide which one best suits your use ca",
"time": "Thu, 30 Nov 2023 17:46:10 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "Tech predictions for 2024 and beyond",
"url": "https://www.allthingsdistributed.com/2023/11/tech-predictions-for-2024-and-beyond.html?utm_campaign=inbound&utm_source=rss",
"summary": "The coming years will be filled with innovation in areas designed to democratize access to technology and help us keep up with the increasing pace of every-day life -- and it starts with Generative AI.",
"time": "Thu, 30 Nov 2023 16:00:00 GMT+1",
"sourceTitle": "All Things Distributed ",
"sourceUrl": "https://www.allthingsdistributed.com/"
},
{
"title": "AWS re:Invent 2023 - Adding AWS (backbone) to your network (NET319)",
"url": "https://www.youtube.com/watch?v=GrsWSMiE264",
"summary": "In this session, learn how to use AWS services to build a wide area network backbone by routing traffic over the AWS global network. First, examine the role AWS services and the AWS global network play when connecting through an edge device or building a transit network between locations. Then, discover how AWS global infrastructure, AWS Local Zones, network peering, AWS Cloud WAN, AWS Direct Conn",
"time": "Wed, 29 Nov 2023 22:38:01 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Performance & efficiency at Pinterest: Optimizing the latest instances (COP352)",
"url": "https://www.youtube.com/watch?v=QSudpowE_Hs",
"summary": "Performance optimization is often a trade-off: you can either deliver higher throughput and better latency or maintain the current throughput and latency while reducing cost. But is it possible to do both? Learn how Pinterest’s collaboration with Intel drove up to 50% improvement in cost efficiency and hear about their experience with the latest Intel instances that enabled significant performance",
"time": "Wed, 29 Nov 2023 23:07:24 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Composable architecture using Amazon DynamoDB and domain-driven design (COM304)",
"url": "https://www.youtube.com/watch?v=DpafYmI3NQc",
"summary": "Enterprises building software often face multiple setbacks in the software lifecycle due to domain complexity, unclear application boundaries, and a disconnect between business needs and implemented software. Following domain-driven design (DDD) practices can help you navigate complex business domains and avoid common pitfalls. In this session, learn the core DDD concepts of ubiquitous language, a",
"time": "Thu, 30 Nov 2023 03:19:44 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Driving precision: Creating a tech revolution at PGA Tour events (NET101)",
"url": "https://www.youtube.com/watch?v=BHwvO8ZA-mU",
"summary": "The PGA Tour tracks the data on every ball struck during a tournament and disseminates that information from course-to-cloud for broadcast, digital video, fan experience, and sports betting. It uses radars, AI cameras, AWS Cloud services, and modern network technology to predict where each player’s shot will go in real time. In this session, learn how the PGA Tour partnered with Accenture to adopt",
"time": "Thu, 30 Nov 2023 03:21:19 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Making semantic search & RAG real: How to build a prod-ready app (AIM201)",
"url": "https://www.youtube.com/watch?v=XRB6IYvoJeY",
"summary": "Private data retrieval is a key to the puzzle that is making LLMs work at scale. However, is it really about the fastest kNN implementation that can return search results? For developers to build magical search experiences at scale, you’ll need fast kNN search, but you’ll also need it to be simple, repeatable, and secure. You’ll want elegant APIs that can store, sort, search, and aggregate data ac",
"time": "Thu, 30 Nov 2023 03:26:13 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Beyond 11 9s of durability: Data protection with Amazon S3 (STG319)",
"url": "https://www.youtube.com/watch?v=YsIjt88E6iw",
"summary": "Amazon S3 is designed for 11 9s of durability, strong resiliency, and high availability. This makes S3 an ideal storage option for cloud-native applications, analytics, and machine learning workloads where strong data protection is non-negotiable. However, even the most durable storage cannot protect against unintended or accidental deletions. Additionally, ransomware events are a primary reason t",
"time": "Thu, 30 Nov 2023 04:01:57 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Building an AI comic video generator with Amazon Bedrock (COM202)",
"url": "https://www.youtube.com/watch?v=1jJD1vJYPxA",
"summary": "Learn how AWS Machine Learning Hero Agustinus Nalwan built Owly, an AI-powered bedtime storyteller that crafts personalized comic videos with music. In this session, discover how to use the Amazon Bedrock large language model to generate comic scripts. Learn how to fine-tune the Stable Diffusion model with the help of Amazon SageMaker JumpStart to eliminate character inconsistencies and personaliz",
"time": "Thu, 30 Nov 2023 04:29:41 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "Introducing AWS Resilience Competency Partners",
"url": "https://aws.amazon.com/about-aws/whats-new/2023/11/aws-resilience-competency-partners/",
"summary": "We are excited to announce the launch of the AWS Resilience Competency to highlight AWS Partners who have demonstrated technical expertise and proven customer success helping customers improve the availability and resilience of their critical workloads in the cloud. AWS Resilience Competency Partners provide professional consulting and engineering services that are validated by AWS experts across",
"time": "Thu, 30 Nov 2023 24:49:52 GMT+1",
"sourceTitle": "AWS What's New ",
"sourceUrl": "https://aws.amazon.com/about-aws/whats-new/recent/"
},
{
"title": "AWS re:Invent 2023 - Sony Interactive Entertainment: Generative and predictive AI on AWS (AIM226)",
"url": "https://www.youtube.com/watch?v=8pqBGEUgyKI",
"summary": "If you’re grappling with the intricacies of confidently productionizing generative AI solutions and juggling a backlog of AI projects while striving for infrastructure harmony, then this lightning talk is for you. Learn how to create a unified platform that balances both generative and predictive AI. Leaders from Sony Interactive Entertainment share how they created a seamless, governed AI platfor",
"time": "Thu, 30 Nov 2023 05:41:44 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Detecting and mitigating gray failures (ARC310)",
"url": "https://www.youtube.com/watch?v=LzIZ-dEzgEw",
"summary": "Gray failures can escape quick and definitive detection while impacting workloads running in the cloud. Building resilient applications that can survive single instance and single Availability Zone gray failures requires you to implement specific observability and mitigation strategies. In this session, learn what gray failures are and how they can manifest in the cloud. Explore detection capabili",
"time": "Thu, 30 Nov 2023 05:57:31 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Platform engineering with Amazon EKS (CON311)",
"url": "https://www.youtube.com/watch?v=eLxBnGoBltc",
"summary": "A wide range of companies, from the most innovative startups to the world’s leading enterprises, are running their internal platforms on Amazon EKS, helping them to accelerate developer velocity and increase the pace of innovation. In this session, learn about best practices that AWS has developed over years of helping thousands of customers build and scale their internal platforms on Amazon EKS.",
"time": "Thu, 30 Nov 2023 06:02:52 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - AWS storage cost-optimization best practices (STG202)",
"url": "https://www.youtube.com/watch?v=8LVKNHcA6RY",
"summary": "Whether you’re migrating from on premises to AWS or already in the cloud, AWS offers storage solutions that help optimize your costs and reduce TCO—all while providing storage performance that boosts productivity and accelerates business growth. The AWS storage portfolio makes it easy and cost-effective for you to launch, run, and scale storage in the cloud so that you can dedicate more of your va",
"time": "Thu, 30 Nov 2023 06:07:14 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Keynote with Dr. Swami Sivasubramanian",
"url": "https://www.youtube.com/watch?v=8clH7cbnIQw",
"summary": "Swami Sivasubramanian, Vice President of Data and AI at AWS explores the powerful relationship between humans, data, and AI, unfolding right before us. Generative AI is augmenting our productivity and creativity in new ways, while also being fueled by massive amounts of enterprise data and human intelligence. Swami discovers how you can use your company data to build differentiated generative AI a",
"time": "Thu, 30 Nov 2023 02:25:17 GMT+1",
"sourceTitle": "AWS Youtube ",
"sourceUrl": "https://www.youtube.com/channel/UCd6MoB9NC6uYN2grvUNT-Zg"
},
{
"title": "AWS re:Invent 2023 - Scale organizational cloud knowledge & improve builder productivity (ARC207)",
"url": "https://www.youtube.com/watch?v=rcRz6BOyTZY",
"summary": "Organizations of all sizes are building on and migrating to the cloud. Leaders at startups, enterprises, and government agencies need new ways to equip their builders with training on cloud concepts and to drive collaboration with AWS teams to define and carry out their cloud strategies at scale. Hybrid work continues to be an important work approach for many enterprises, which has led to an incre",
"time": "Wed, 29 Nov 2023 21:17:05 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - [LAUNCH] Introducing Amazon ElastiCache Serverless (DAT342)",
"url": "https://www.youtube.com/watch?v=YYStP97pbXo",
"summary": "Come learn about the recently announced Amazon ElastiCache Serverless. With ElastiCache Serverless, you no longer have to provision, plan for, or manage your cache cluster capacity. ElastiCache Serverless helps you get started in under a minute with a distributed in-memory cache and instantly scales in and out to support even the most unpredictable application traffic patterns. In this session, le",
"time": "Wed, 29 Nov 2023 21:26:52 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "Amazon Bedrock now supports batch inference",
"url": "https://aws.amazon.com/about-aws/whats-new/2023/11/amazon-bedrock-batch-inference/",
"summary": "You can now use Amazon Bedrock to process prompts in batch to get responses for model evaluation, experimentation, and offline processing.",
"time": "Wed, 29 Nov 2023 20:24:37 GMT+1",
"sourceTitle": "AWS What's New ",
"sourceUrl": "https://aws.amazon.com/about-aws/whats-new/recent/"
},
{
"title": "AWS re:Invent 2023 - Surviving overloads: How Amazon Prime Day avoids congestion collapse (NET402)",
"url": "https://www.youtube.com/watch?v=fOYOvp6X10g",
"summary": "Congestion collapse is a situation in large distributed systems when a collection of servers hits roughly 100% CPU utilization yet provides effectively zero productive work. Worse yet, you can’t recover even when systems scale up! In this session, join a discussion of the congestion collapse phenomenon and how it applies to web applications. This session covers how to recover, with an example from",
"time": "Wed, 29 Nov 2023 20:41:52 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Seamless modernization and migration of media services with LG U+ (PRO101)",
"url": "https://www.youtube.com/watch?v=b4xW_miQmXo",
"summary": "Application modernization and migration with zero service disruptions requires careful planning with appropriate strategy and best practices. LG U+ collaborated with AWS Professional Services to apply best practices and define a strategy for the modernization and migration of their IPTV media services. In this session, you learn about some of the key patterns that helped LG U+ perform a seamless c",
"time": "Wed, 29 Nov 2023 20:15:11 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - The pragmatic serverless Python developer (OPN305)",
"url": "https://www.youtube.com/watch?v=52W3Qyg242Y",
"summary": "Are you developing AWS Lambda functions with Python? Always looking for tools to make you more productive? What if you could hear directly from practitioners? This session covers an opinionated approach to Python project setup, testing, profiling, deployments, and operations. Learn about many open source tools, including Powertools for AWS Lambda—a toolkit that can help you implement serverless be",
"time": "Wed, 29 Nov 2023 20:25:53 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - What’s new with AWS governance and compliance (COP340)",
"url": "https://www.youtube.com/watch?v=O_r3-thv0pA",
"summary": "When you set up an environment that is optimized for governance and compliance, you can increase your productivity and operational efficiency. This in turn allows you to focus on delivering business outcomes and saving time and cost. Join this session to find out how AWS is innovating in the governance and compliance space. Learn about recent launches and how you can use them to solve a variety of",
"time": "Wed, 29 Nov 2023 20:33:08 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Customer insights: Apple app development with Amazon EC2 Mac instances (CMP218)",
"url": "https://www.youtube.com/watch?v=vXJsU1b_JQs",
"summary": "Hear firsthand from a customer about their experiences with Apple application development workloads on AWS—from streamlining CI/CD build fleets to securing developer environments with on-demand Amazon EC2 Mac instances. Learn how to use Amazon EC2 Mac instances with Jamf to extend endpoint security to your Apple application development fleets. Through the customer’s example, dive deep into the top",
"time": "Wed, 29 Nov 2023 20:35:13 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "Introducing highly durable Amazon OpenSearch Service clusters with 30% price/performance improvement",
"url": "https://aws.amazon.com/blogs/aws/introducing-highly-durable-amazon-opensearch-service-clusters-with-30-price-performance-improvement/",
"summary": "You can use the new OR1 instances to create Amazon OpenSearch Service clusters that use Amazon Simple Storage Service (Amazon S3) for primary storage. You can ingest, store, index, and access just about any imaginable amount of data, while also enjoying a 30% price/performance improvement over existing instance types, eleven nines of data durability, and a zero-time Recovery Point Objective (RPO)",
"time": "Wed, 29 Nov 2023 20:01:46 GMT+1",
"sourceTitle": "AWS News Blog ",
"sourceUrl": "https://aws.amazon.com/blogs/aws/"
},
{
"title": "AWS re:Invent 2023 - “Rustifying” serverless: Boost AWS Lambda performance with Rust (COM306)",
"url": "https://www.youtube.com/watch?v=Mdh_2PXe9i8",
"summary": "Rust, renowned for its performance and security, brings considerable benefits to AWS Lambda applications. In this session, discover how to deploy Rust functions using AWS SAM and cargo-lambda, facilitating a smooth development process from your local machine. Explore how to integrate Rust into Python Lambda functions effortlessly using tools like PyO3 and maturin, along with the AWS SDK for Rust.",
"time": "Wed, 29 Nov 2023 19:54:11 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "Amazon OpenSearch Service zero-ETL integration with Amazon S3 preview now available",
"url": "https://aws.amazon.com/about-aws/whats-new/2023/11/amazon-opensearch-zero-etl-integration-s3-preview/",
"summary": "Amazon OpenSearch Service zero-ETL integration with Amazon S3, a new way for customers to query operational logs in Amazon S3 and S3-based data lakes without needing to switch between tools to analyze operational data, is available for customer preview. Customers can boost the performance of their queries and build fast-loading dashboards using the built-in query acceleration capabilities of Amaz",
"time": "Wed, 29 Nov 2023 18:47:51 GMT+1",
"sourceTitle": "AWS What's New ",
"sourceUrl": "https://aws.amazon.com/about-aws/whats-new/recent/"
},
{
"title": "AWS announces vector search for Amazon MemoryDB for Redis (Preview)",
"url": "https://aws.amazon.com/about-aws/whats-new/2023/11/vector-search-amazon-memorydb-redis-preview/",
"summary": "Amazon MemoryDB for Redis now supports vector search in preview, a new capability that enables you to store, index, and search vectors. MemoryDB is a database that combines in-memory performance with multi-AZ durability. With vector search for MemoryDB, you can develop real-time machine learning (ML) and generative AI applications with the highest performance demands using the popular, open-sourc",
"time": "Wed, 29 Nov 2023 18:52:24 GMT+1",
"sourceTitle": "AWS What's New ",
"sourceUrl": "https://aws.amazon.com/about-aws/whats-new/recent/"
},
{
"title": "Amazon Q generative SQL is now available in Amazon Redshift Query Editor (preview)",
"url": "https://aws.amazon.com/about-aws/whats-new/2023/11/amazon-redshift-generative-sql-query-editor-preview/",
"summary": "Amazon Redshift introduces Amazon Q generative SQL in Amazon Redshift Query Editor, an out-of-the-box web-based SQL editor for Redshift, to simplify query authoring and increase your productivity by allowing you to express queries in natural language and receive SQL code recommendations. Furthermore, it allows you to get insights faster without extensive knowledge of your organization’s complex d",
"time": "Wed, 29 Nov 2023 19:00:16 GMT+1",
"sourceTitle": "AWS What's New ",
"sourceUrl": "https://aws.amazon.com/about-aws/whats-new/recent/"
},
{
"title": "Evaluate, compare, and select the best FMs for your use case in Amazon Bedrock (Preview)",
"url": "https://aws.amazon.com/about-aws/whats-new/2023/11/evaluate-compare-select-fms-use-case-amazon-bedrock/",
"summary": "Model Evaluation on Amazon Bedrock allows you to evaluate, compare, and select the best foundation models for your use case. Amazon Bedrock offers a choice of automatic evaluation and human evaluation. You can use automatic evaluation with predefined metrics such as accuracy, robustness, and toxicity. For subjective or custom metrics, such as friendliness, style, and alignment to brand voice, you",
"time": "Wed, 29 Nov 2023 19:22:08 GMT+1",
"sourceTitle": "AWS What's New ",
"sourceUrl": "https://aws.amazon.com/about-aws/whats-new/recent/"
},
{
"title": "Introducing Amazon Q support for network troubleshooting (preview)",
"url": "https://aws.amazon.com/blogs/networking-and-content-delivery/introducing-amazon-q-support-for-network-troubleshooting/",
"summary": "This blog post explores how Amazon Q , the generative artificial intelligence (AI) powered assistant from AWS, helps you troubleshoot network-related issues by working with Amazon VPC Reachability Analyzer . These are exciting times for cloud networking! We’re a long way from the days of debugging connectivity issues with ping and traceroute. Now we ask questions in conversational language like “",
"time": "Wed, 29 Nov 2023 18:31:24 GMT+1",
"sourceTitle": "AWS Networking and Content Delivery ",
"sourceUrl": "https://aws.amazon.com/blogs/networking-and-content-delivery/"
},
{
"title": "AWS re:Invent 2023 - How the Bundesliga adopts an agile and cross-functional data strategy (SPT203)",
"url": "https://www.youtube.com/watch?v=IrSyvhaixe8",
"summary": "A data strategy is an essential element for a data-driven company. Many companies face the challenge of creating a data strategy that is aligned with strategic business objectives, focuses on value creation, and is actionable. In this session, DFL Digital Sports uncovers how they created an agile data strategy powered by AWS by using the Cloud Adoption Framework for Artificial Intelligence, Machin",
"time": "Wed, 29 Nov 2023 18:35:21 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - The future of Amazon EKS (CON203)",
"url": "https://www.youtube.com/watch?v=fkpctBpum1Q",
"summary": "Kubernetes has become a standard way for organizations to innovate and modernize their application portfolio. AWS developed Amazon EKS to make Kubernetes more accessible to organizations of all sizes, helping them focus on what matters most for their businesses. In this session, join Nathan Taber, Head of Product for Kubernetes, to learn about one customer who uses EKS to train their LLM models an",
"time": "Wed, 29 Nov 2023 18:35:34 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "Llama 2 70B foundation model from Meta is now available in Amazon Bedrock",
"url": "https://aws.amazon.com/about-aws/whats-new/2023/11/llama-2-70b-foundation-model-meta-amazon-bedrock/",
"summary": "You can now access Meta’s Llama 2 model 70B in Amazon Bedrock . The Llama 2 70B model now joins the already available Llama 2 13B model in Amazon Bedrock. Llama 2 models are next generation large language models (LLMs) provided by Meta. Amazon Bedrock is a fully managed service that offers a choice of high-performing foundation models from leading AI companies, like Meta, along with a broad set o",
"time": "Wed, 29 Nov 2023 17:56:43 GMT+1",
"sourceTitle": "AWS What's New ",
"sourceUrl": "https://aws.amazon.com/about-aws/whats-new/recent/"
},
{
"title": "Stable Diffusion XL 1.0 foundation model from Stability AI is now generally available in Amazon Bedrock",
"url": "https://aws.amazon.com/about-aws/whats-new/2023/11/stable-diffusion-xl-1-0-foundation-model-amazon-bedrock/",
"summary": "Stability AI’s Stable Diffusion XL 1.0 (SDXL 1.0) foundation model is now generally available on-demand in Amazon Bedrock . SDXL 1.0 is the most advanced development in the Stable Diffusion text-to-image suite of models launched by Stability AI. The model generates images of high quality in virtually any art style and it excels at photorealism. Amazon Bedrock is a fully managed service that offer",
"time": "Wed, 29 Nov 2023 17:56:44 GMT+1",
"sourceTitle": "AWS What's New ",
"sourceUrl": "https://aws.amazon.com/about-aws/whats-new/recent/"
},
{
"title": "AWS re:Invent 2023 - Overspending on laptops? Introducing Amazon WorkSpaces Thin Client (EUC215)",
"url": "https://www.youtube.com/watch?v=Viurp8p34Eo",
"summary": "Procuring and managing laptops for end users can be expensive and time-consuming. In addition, end users often struggle with device setup and require help from IT to get up and running, straining IT resources and delaying time to productivity. Attend this session to hear Melissa Stein, Director of End User Computing at AWS, introduce Amazon WorkSpaces Thin Client, a new thin client from AWS that m",
"time": "Wed, 29 Nov 2023 18:40:50 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "Vector engine for Amazon OpenSearch Serverless now generally available",
"url": "https://aws.amazon.com/about-aws/whats-new/2023/11/amazon-opensearch-serverless-vector-engine/",
"summary": "Today, AWS announces the general availability of vector engine for Amazon OpenSearch Serverless . Vector engine for OpenSearch Serverless is a simple, scalable, and high-performing vector database which makes it easier for developers to build machine learning (ML)–augmented search experiences and generative artificial intelligence (AI) applications without having to manage the underlying vector d",
"time": "Wed, 29 Nov 2023 18:43:53 GMT+1",
"sourceTitle": "AWS What's New ",
"sourceUrl": "https://aws.amazon.com/about-aws/whats-new/recent/"
},
{
"title": "Amazon Bedrock now provides access to Anthropic’s latest model, Claude 2.1",
"url": "https://aws.amazon.com/blogs/aws/amazon-bedrock-now-provides-access-to-anthropics-latest-model-claude-2-1/",
"summary": "Today, we’re announcing the availability of Anthropic’s Claude 2.1 foundation model (FM) in Amazon Bedrock . Last week, Anthropic introduced its latest model, Claude 2.1 , delivering key capabilities for enterprises such as an industry-leading 200,000 token context window (2x the context of Claude 2.0), reduced rates of hallucination, improved accuracy over long documents, system prompts, and a b",
"time": "Wed, 29 Nov 2023 17:43:55 GMT+1",
"sourceTitle": "AWS News Blog ",
"sourceUrl": "https://aws.amazon.com/blogs/aws/"
},
{
"title": "Use IAM Roles Anywhere to help you improve security in on-premises container workloads",
"url": "https://aws.amazon.com/blogs/security/use-iam-roles-anywhere-to-help-you-improve-security-in-on-premises-container-workloads/",
"summary": "This blog post demonstrates how to help meet your security goals for a containerized process running outside of Amazon Web Services (AWS) as part of a hybrid cloud architecture . Managing credentials for such systems can be challenging, including when a workload needs to access cloud resources. IAM Roles Anywhere lets you exchange static AWS Identity and Access Management (IAM) user credentials w",
"time": "Wed, 29 Nov 2023 17:31:32 GMT+1",
"sourceTitle": "AWS Security Blog ",
"sourceUrl": "https://aws.amazon.com/blogs/security/"
},
{
"title": "Amazon Titan Image Generator Demo | Amazon Web Services",
"url": "https://www.youtube.com/watch?v=v2akUur4xho",
"summary": "Amazon Titan Image Generator enables content creators with rapid ideation and iteration resulting in high efficiency image generation. With Titan Image Generator, customers in industries like advertising, e-commerce, media, and entertainment can generate realistic, studio-quality images in large volumes and at low cost, using natural language prompts. You can edit your generated or existing images",
"time": "Wed, 29 Nov 2023 17:55:48 GMT+1",
"sourceTitle": "AWS Youtube ",
"sourceUrl": "https://www.youtube.com/channel/UCd6MoB9NC6uYN2grvUNT-Zg"
},
{
"title": "AWS re:Invent 2023 - Advanced event-driven patterns with Amazon EventBridge (COM301-R)",
"url": "https://www.youtube.com/watch?v=6X4lSPkn4ps",
"summary": "Asynchronous communication and event-driven architecture are core to building distributed applications. Amazon EventBridge, a fully managed serverless event bus, helps to coordinate distributed and loosely coupled microservices to accomplish business functionality. In this session, gain an understanding of the characteristics of EventBridge and how it plays a pivotal role in serverless architectur",
"time": "Tue, 28 Nov 2023 21:41:17 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - How ELF reduced their carbon footprint by broadcasting on AWS (MAE203)",
"url": "https://www.youtube.com/watch?v=5slS62EQsJ4",
"summary": "In this session, the European League of Football (ELF) shares their journey as a new sports league to adopt a built-in-the-cloud broadcasting production pipeline on AWS. By using AWS cloud-based remote production tools and infrastructure, the 2023 season saw positive impacts including lower video latency, better video quality, increased reliability, lower operational costs, and a reduction in the",
"time": "Wed, 29 Nov 2023 24:06:33 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Building a practice to optimize your customer’s resilience journey (PEX208)",
"url": "https://www.youtube.com/watch?v=OPEQcRAMs0U",
"summary": "Resilience is a journey that is as much a mindset as a technology solution. Everything fails eventually, and minimizing the impact to business stakeholders is the paramount goal of any company. Helping your customers shift toward an “always on, always available” mindset for their applications and services is crucial. Learn how AWS Partners can play an important role across the design, operation, a",
"time": "Wed, 29 Nov 2023 24:54:06 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Application modernization, microservices & the strangler fig pattern (ENT321-R)",
"url": "https://www.youtube.com/watch?v=ml1Yb-ddGt0",
"summary": "Move faster and innovate more with microservices. In this session, review patterns for modernizing your application architecture. AWS customer Affinidi shares how they moved to microservices and empowered teams to ship features independently, used consistent guardrails and governance across microservices, and reduced developer cognitive load. Moving to microservices using the strangler fig pattern",
"time": "Wed, 29 Nov 2023 24:51:53 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Stripe: Architecting for observability at massive scale (FSI319)",
"url": "https://www.youtube.com/watch?v=gNCKJUg8qEo",
"summary": "Stripe provides an integrated suite of financial and payments products that serve retailers, subscription-based services, and software platforms in 46 countries. To power their infrastructure and critical services, Stripe uses thousands of Amazon EC2 instances and other AWS services. Join this session to hear Stripe share the unique challenges and lessons learned on their journey to achieving obse",
"time": "Wed, 29 Nov 2023 02:09:21 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Using Aurora Serverless to simplify manageability and improve costs (DAT331)",
"url": "https://www.youtube.com/watch?v=ecRje2wFO14",
"summary": "In this session, learn how Amazon Aurora Serverless can help you simplify database capacity management and cost-effectively support even your most demanding workloads. Dive deep into the Aurora Serverless v2 architecture, see how you can instantly scale a database, and hear about key improvements in scaling, high availability, and disaster recovery. Learn more about AWS re:Invent at https://go.aws",
"time": "Wed, 29 Nov 2023 02:14:25 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Gain confidence in system correctness & resilience with formal methods (ARC315)",
"url": "https://www.youtube.com/watch?v=FdXZXnkMDxs",
"summary": "Distributed applications, systems, and services are difficult to design and test. Formal methods enable the early discovery of design bugs that can escape the guardrails of design reviews and automated testing only to get uncovered in production. Join this session to learn how AWS uses P, an open source, state machine–based programming language for formal modeling and analysis of distributed syste",
"time": "Wed, 29 Nov 2023 02:16:35 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - AWS journey toward intent-driven network infrastructure (NET401)",
"url": "https://www.youtube.com/watch?v=B3dtiSYriZc",
"summary": "Join this session to hear about the latest AWS networking innovations that improve AWS infrastructure’s security, reliability, and performance. Hear from senior principal engineers about the new intent-driven control plane and how it facilitates the machine learning workloads that are underpinning the generative AI boom. This deep-dive session goes into the motivation for the control plane and net",
"time": "Wed, 29 Nov 2023 02:19:51 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Delivering low-latency applications at the edge (HYB305)",
"url": "https://www.youtube.com/watch?v=isYOTxCm5w4",
"summary": "AWS hybrid and edge services extend AWS from Regions and Availability Zones to local metros, on premises, and the far edge, bringing AWS closer to your end users and workloads. In this session, learn how you can run latency-sensitive applications in more locations around the world with AWS Local Zones, AWS Wavelength Zones, AWS Outposts, and the AWS Snow Family. Discover how organizations are depl",
"time": "Wed, 29 Nov 2023 02:27:01 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"
},
{
"title": "AWS re:Invent 2023 - Scaling on AWS for the first 10 million users (ARC206)",
"url": "https://www.youtube.com/watch?v=JzuNJ8OUht0",
"summary": "In this session, learn about patterns and techniques for architecting the ability to handle rapid growth and success in the early days of your business into your infrastructure on AWS. From implementing highly scalable AWS services to architecting proven patterns, there are a number of choices you can make early on to help you overcome some common infrastructure challenges. Learn how to adapt to g",
"time": "Wed, 29 Nov 2023 02:53:09 GMT+1",
"sourceTitle": "AWS Events ",
"sourceUrl": "https://www.youtube.com/channel/UCdoadna9HFHsxXWhafhNvKw"