Skip to content

Commit 3b1ccf5

Browse files
authored
Merge pull request #162 from manikanta-hitunik-com/patch-662156
Update 479-designing-effective-load-tests.txt
2 parents 4f7f200 + dbd550e commit 3b1ccf5

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

transcripts/479-designing-effective-load-tests.txt

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
00:00:42 This is your host, Michael Kennedy.
2020

21-
00:00:44 Follow me on Mastodon, where I'm at mkennedy, and follow the podcast using @talkpython,
21+
00:00:44 Follow me on Mastodon, where I'm @mkennedy, and follow the podcast using @talkpython,
2222

2323
00:00:49 both accounts over at Fosstodon.org, and keep up with the show and listen to over nine years of episodes at talkpython.fm.
2424

@@ -448,7 +448,7 @@
448448

449449
00:13:44 And as you're pointing out, they don't just hold down control or command R and just flicker the screen as hard as they can.
450450

451-
00:13:50 They they're they're reading and they're interacting.
451+
00:13:50 They they're reading and they're interacting.
452452

453453
00:13:52 And so what you're saying is if you really want to say how many actual users, not just kind of a throughput number, but how many people using the app do you possibly expect it could keep working or right?
454454

@@ -550,7 +550,7 @@
550550

551551
00:16:54 What was the problem?
552552

553-
00:16:56 I initialized the logger with the string info for the level rather than the enumeration dot info, which was an integer based enum.
553+
00:16:56 I initialized the logger with the string info for the level rather than the enumeration dot info, which was an integer based Enum.
554554

555555
00:17:05 So the logging statement would crash saying that I could not use less than or equal to between strings and ints.
556556

@@ -564,7 +564,7 @@
564564

565565
00:17:22 Create your Sentry account now at talkpython.fm/Sentry.
566566

567-
00:17:26 And if you sign up with the code talkpython, all capital, no spaces, it's good for two free months of Sentry's business plan, which will give you up to 20 times as many monthly events as well as other features.
567+
00:17:26 And if you sign up with the code TALKPYTHON, all capital, no spaces, it's good for two free months of Sentry's business plan, which will give you up to 20 times as many monthly events as well as other features.
568568

569569
00:17:39 You did mention that the CSS and the, you talked about the AJAX, but I think also things like CSS images, JavaScript files, not JavaScript execution, but just getting the files, right?
570570

@@ -832,9 +832,9 @@
832832

833833
00:28:03 Otherwise, it might just say invalid.
834834

835-
00:28:07 This portion of Talk Bython is brought to you by WorkOS.
835+
00:28:07 This portion of Talk Python is brought to you by WorkOS.
836836

837-
00:28:10 If you're building a B2B SaaS app, at some point, your customers will start asking for enterprise features like SAML authentication, skim provisioning, autologs and fine grained authorization.
837+
00:28:10 If you're building a B2B SaaS app, at some point, your customers will start asking for enterprise features like SAML authentication, skim provisioning, auto logs and fine grained authorization.
838838

839839
00:28:20 That's where WorkOS comes in with easy to use APIs that help you ship enterprise features on day one without slowing down your core product development.
840840

@@ -954,7 +954,7 @@
954954

955955
00:32:26 It's just overwhelmed by.
956956

957-
00:32:28 But yeah, I don't recommend running 10,000 concurrents on a single laptop because it's going to run pretty slowly.
957+
00:32:28 But yeah, I don't recommend running 10,000 concurrent on a single laptop because it's going to run pretty slowly.
958958

959959
00:32:35 It's going to have a bad time.
960960

@@ -1048,7 +1048,7 @@
10481048

10491049
00:35:15 And, like, what does that look like?
10501050

1051-
00:35:17 And I think what confuses a lot of people is the first time they use Locust or JMeeter or one of the other tools, they get all these percentiles back.
1051+
00:35:17 And I think what confuses a lot of people is the first time they use Locust or JMeter or one of the other tools, they get all these percentiles back.
10521052

10531053
00:35:25 And they're like, oh, the 90th percentile response time is this and the 95th is this and the 99th is that.
10541054

@@ -1292,7 +1292,7 @@
12921292

12931293
00:42:59 And it's just sitting there idle waiting for the responses.
12941294

1295-
00:43:02 So I know you mentioned the show a few times, but like the N plus one issues and stuff like that for ORMs in particular is where you get those types of scale where you're, you should not be seeing that many SQL queries.
1295+
00:43:02 So I know you mentioned the show a few times, but like the N + 1 issues and stuff like that for ORMs in particular is where you get those types of scale where you're, you should not be seeing that many SQL queries.
12961296

12971297
00:43:14 It's so easy to do because you write the same code, get the things and then loop over some and interact with some aspect of them.
12981298

@@ -1560,7 +1560,7 @@
15601560

15611561
00:51:46 So you can see like all the traces, how long they took, what calls it made on the backend, what queries it was running.
15621562

1563-
00:51:52 Like OpenTelemetry is a brilliant way of doing that.
1563+
00:51:52 Like Open Telemetry is a brilliant way of doing that.
15641564

15651565
00:51:55 And it's not just Python.
15661566

@@ -1867,4 +1867,3 @@
18671867
00:58:42 Now get out there and write some Python code.
18681868

18691869
00:58:44 I'll see you next time.
1870-

0 commit comments

Comments
 (0)