Тёмный
Serverless Land
Serverless Land
Serverless Land
Подписаться
This channel is dedicated to all things AWS Serverless and is maintained by the Serverless Developer Advocate team.
CloudFormation Made Easier
5:18
8 месяцев назад
Settling the Dance Battle
1:52
8 месяцев назад
Learning DevOps in 90 Days
3:17
8 месяцев назад
AWS API Architectures
2:43
8 месяцев назад
Комментарии
@dzsin0
@dzsin0 8 дней назад
Thanks for the cool insights! Another interesting take would be to compare and contrast distributed maps to Batch array jobs. I’d be super curious! 😊 (you can consider that serverless also when you use ECSFargate to run the containers)
@muswain
@muswain 11 дней назад
Having worked on few services buses earlier like Oracle Service Bus and WebSphere ESB, when Event bridge service came out initially with the event bus, I could easily relate to the way we used to do traditional service bus, routing, transformation and all that. It has now come along way in adding so much capability. Love this service and really nice to see the internals of how this all stacks up. Really great discussion.
@mouakayoub5847
@mouakayoub5847 14 дней назад
Thank you for all these details !
@andresfelipeardilarivas5421
@andresfelipeardilarivas5421 17 дней назад
Awesome session! I appreciate share your knowledge
@PriyaSharma-qn1xk
@PriyaSharma-qn1xk 23 дня назад
Can anyone actually tell what AaaC actually is i am new to this and internet is not giving much info just that it is for drawing diagrams from code.
@jfbaro2
@jfbaro2 27 дней назад
One missing piece is to have ultra low latency to communicate between lambdas… so a set of lambdas could work together as “almost” a single super computer. Like low latency in HPC
@madrag
@madrag 27 дней назад
Would be great to have that covered in python
@ManusiaGoa27
@ManusiaGoa27 Месяц назад
underrated content. the explanation is really good in a short duration video
@jpablonov
@jpablonov Месяц назад
Great presentation Santiago It helps me a lot!!!
@nikhilrizal3729
@nikhilrizal3729 Месяц назад
awsome
@SahinReja-r5b
@SahinReja-r5b Месяц назад
How to add the unique request id in every logging statement ?
@user-sh9ps7zj2q
@user-sh9ps7zj2q Месяц назад
Thanks for the video
@ndimoforaretasndimofor7734
@ndimoforaretasndimofor7734 2 месяца назад
Thank you so much Julian and Rosius for shinning light on this unique opportunity to get into building on AWS.!🚀
@jong-lj6jq
@jong-lj6jq 2 месяца назад
Julian, take a breath sometimes...or lay off the caffeine mate ...it would be nice to hear the other speakers finish a sentence before you interject
@patrickhadson9514
@patrickhadson9514 2 месяца назад
What's the used autocomplete AI?
@ThorstenHoeger
@ThorstenHoeger 2 месяца назад
I am using Amazon Q for IDE as my AI assistant
@saurabhk96
@saurabhk96 2 месяца назад
I have the NAT and everything setup for lambda, it can access the external database but cannot process httpclient or acquiretoken , it ends the process without error> private static readonly HttpClient client = new HttpClient(); HttpResponseMessage response = await client.GetAsync("www.google.com"); or var result = await _confidentialClientApplication .AcquireTokenForClient(OAuth2.scopes) .ExecuteAsync(cancellationToken);
@truth-teller11
@truth-teller11 2 месяца назад
This didn’t age well hahaha
@cdtavijit
@cdtavijit 3 месяца назад
Thank you. This was to the point and much better than the AWS videos
@simonhylander7489
@simonhylander7489 3 месяца назад
for me /customers/v1 overrides the /customers api
@dileeshaabilash5562
@dileeshaabilash5562 3 месяца назад
Great Vid Bro❤❤
@laimadb6317
@laimadb6317 3 месяца назад
A couple of questions about Step Functions - 1. We've got logging hooked into lambda output, so have been able to set up extensive reports on errors, etc through Cloudwatch reports. Converting lambdaa to Step Functions has been very difficult, due to the fact that the execution history is disconnected from Cloudwatch. We were able to send the execution history, but it's very difficult to control the output so that we can structure the reporting - collecting error stats with patterns and other processing stats. Is there any plans to work on improving the Step function logging to Cloudwatch so we can add observability to the results of calls to all the integrated AWS services? 2. Unit / Intergration / UAT testing frameworks are badly needed. AWS IATK is a nice start, but we've got all our objects / lambdas / code written in Node. What is the recommended way to do automated testing with step functions?
@TravelChroniclesHD
@TravelChroniclesHD 3 месяца назад
Great stuff, thank You! Any chance to get the code for the app ?
@corneliu2544
@corneliu2544 3 месяца назад
Currently we are working to open source the code. I’ll post a comment with the repo url here when it’s available.
@jgcoding6576
@jgcoding6576 3 месяца назад
How would one handle the responses returned from a target API in an API Destination request? For example, a GET request returns data by definition. Otherwise, why would a GET request be of any use as an API Destination verb? Thanks!
@happy..1907
@happy..1907 3 месяца назад
Are the SQS messages persisted between container restart?
@bartsz
@bartsz 3 месяца назад
If you are using a Pro image, you can setup persistence and export your configuration to a file to re-use
@happy..1907
@happy..1907 3 месяца назад
@@bartsz exactly
@iferca
@iferca 3 месяца назад
this is really awesome project!
@goldie75c
@goldie75c 3 месяца назад
Great tool!
@CarsonBlack
@CarsonBlack 3 месяца назад
Fantastic! Will be trying it soon!
@elsaigneur
@elsaigneur 3 месяца назад
Thank you very much. Sounds like a very useful technology to speed up development saving the time it takes to redeploy to the "real" AWS Cloud. Very useful for unit tests as well instead of mocking AWS services, using this "emulated" cloud locally will be more effective.
@poralanarasimhulu2426
@poralanarasimhulu2426 3 месяца назад
Thank you so much. This gives a super heads-up on SAM 🙂
@Shukla-gf8iv
@Shukla-gf8iv 4 месяца назад
Thanks .. I have a query about runtime environment & lambda function. I understand Runtime Environment and Lambda Function has their own set of modules/libraries. Is there a way to know what packages/libraries etc used in runtime environment? When we build/deploy our lambda code, it has its own specific version of modules/libraries (like botocore, powertools etc). I assume runtime env may get upgraded by AWS from time to time But lambda function still has old version of libraries (unless we rebuild/deploy our lambda). Will that cause any error as module versions will be different or not compatible? What is the best way to avoid it?
@jpablonov
@jpablonov 4 месяца назад
Great presentation!!
@user-lr3sm3xj8f
@user-lr3sm3xj8f 4 месяца назад
I am needing to replicate a salesforce object, this would be perfect for my use case if salesforce also sent all of the columns in the payload that didn't have a change as 'null' is there anyway to set that in salesforce?
@MrScrosb
@MrScrosb 4 месяца назад
SUUUPPPPPERRR helpful for setting up Salesforce Change Data Capture, thanks guys!
@itspravas
@itspravas 4 месяца назад
This is amazing. As someone who writes yaml & serverless files and bangs their head every time a new change breaks the code pipeline, this could be ground breaking if it works as demonstrated.
@emanuelecolonnelli4728
@emanuelecolonnelli4728 4 месяца назад
That's a great resource and you deserves a great Thank You!
@grantdoyle1259
@grantdoyle1259 4 месяца назад
This is awesome thank you. I did want to clarify one point in the 17-18 minute mark. I believe app flow has improved their connector to salesforce and you can now stream change events from salesforce through app flow using an object event channel. I’ll still be using event bridge for the added features but if you need data from sf to dump to s3, redshift, or Postgres app flow can be set up in a minute. If only they had an msk destination.
@viagenseoutrosvicios
@viagenseoutrosvicios 4 месяца назад
this is GOLD, I needed to do it and was kinda lost. THANK YOU
@DanielSantanaBjj
@DanielSantanaBjj 4 месяца назад
Like #7
@Michael201078
@Michael201078 4 месяца назад
Thanks, Anton for great job on Terraform modules and this video.
@DanielSantanaBjj
@DanielSantanaBjj 5 месяцев назад
Great conversation!! Great points made 👏
@raghavendramagalam8289
@raghavendramagalam8289 5 месяцев назад
Is there any limit for one vpc link when integrating to apis?? Also, can we have alb listening on another port than 443 for SSL?
@Lucianovianasouza
@Lucianovianasouza 5 месяцев назад
Is there already the creation of the VTL programmatically by CDK as it says in the video 58:17?
@r0075h3ll
@r0075h3ll 5 месяцев назад
Nice explanation.
@the-dark-matter
@the-dark-matter 5 месяцев назад
You are a GOD!!!!! Hands down, this is the best explanation out there!
@ParabulaMan
@ParabulaMan 5 месяцев назад
all you did was talk, i can do that, show something next time....
@AnonYTChannelName
@AnonYTChannelName 6 месяцев назад
I'm curious about the ids for customer, product, warehouse, etc. How do we ensure there aren't id collisions across entities? Are these ids UUIDs and therefore all entities can take their ids from the same "stream" of generated ids, and we don't worry about separate sequences of ids for each entity?
@hatarmasatar
@hatarmasatar 6 месяцев назад
Very nice but am stuck here for 3 days without a way to update the api key that had expired and auto deleted by AWS 😂
@Pullipfashionful
@Pullipfashionful 6 месяцев назад
Hi! Great video! Is there a link where we can download the code?
@sourabhchoubey3726
@sourabhchoubey3726 6 месяцев назад
This is incredibly insightful! The flexibility unleashed by this integration is unmatched. With EventBridge's native integration with numerous AWS services, organizations gain the flexibility to seamlessly integrate with AWS. One of the greatest advantages is the elimination of managing glue code, previously required for this using SFDC pub-sub APIs and maintaining custom connectors. This native AWS and SAAS integration automatically handles these tasks, simplifying the process significantly.
@rachitshah9957
@rachitshah9957 6 месяцев назад
This is gold..how come i missed this channel