Sunday, April 18, 2021

Talk Python to Me: #312 Python Apps that Scale to Billions of Users

How do you build Python applications that can handling literally billions of requests. I has certainly been done to great success with places like YouTube (handling 1M requests / sec) and Instagram as well as internal pricing APIs at places like PayPal and other banks. <br/> <br/> While Python can be fast at some operations and slow at others, it's generally not so much about language raw performance as it is about building an architecture for this scale. That's why it's great to have Julian Danjou on the show today. We'll dive into his book "The Hacker's Guide to Scaling Python" as well as some of his performance work he's doing over at Datadog.<br/> <br/> <strong>Links from the show</strong><br/> <br/> <div><b>Julian on Twitter</b>: <a href="https://twitter.com/juldanjou" target="_blank" rel="noopener">@juldanjou</a><br/> <b>Scaling Python Book</b>: <a href="https://ift.tt/2jQAnQt" target="_blank" rel="noopener">scaling-python.com</a><br/> <br/> <b>DD Trace production profiling code</b>: <a href="https://ift.tt/2q8SuEF" target="_blank" rel="noopener">github.com</a><br/> <b>Futurist package</b>: <a href="https://ift.tt/3tuyVrr" target="_blank" rel="noopener">pypi.org</a><br/> <b>Tenacity package</b>: <a href="https://ift.tt/3ecJ9WW" target="_blank" rel="noopener">tenacity.readthedocs.io</a><br/> <b>Cotyledon package</b>: <a href="https://ift.tt/3sxK9dc" target="_blank" rel="noopener">cotyledon.readthedocs.io</a><br/> <b>Locust.io Load Testing</b>: <a href="https://locust.io/" target="_blank" rel="noopener">locust.io</a><br/> <b>Datadog</b>: <a href="talkpython.fm/datadog" target="_blank" rel="noopener">datadoghq.com</a><br/> <b>daiquiri package</b>: <a href="https://ift.tt/3tz9vZB" target="_blank" rel="noopener">daiquiri.readthedocs.io</a><br/> <br/> <b>YouTube Live Stream Video</b>: <a href="https://www.youtube.com/watch?v=MEyxf7fOoxg" target="_blank" rel="noopener">youtube.com</a><br/></div><br/> <strong>Sponsors</strong><br/> <br/> <a href='https://ift.tt/3drA2lU> <a href='https://ift.tt/2PVc9qH Python Training</a>

from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...