Skip to content

Instantly share code, notes, and snippets.

@anthonysim
Last active June 17, 2021 02:17
Show Gist options
  • Save anthonysim/775f49aa56ad7b2c56dd8c287612e977 to your computer and use it in GitHub Desktop.
Save anthonysim/775f49aa56ad7b2c56dd8c287612e977 to your computer and use it in GitHub Desktop.
Loader IO Tests

loader.io Stress Test Results

PROXY GET Requests

http://52.87.183.27:3000/9999999

Requests Total Requests Latency (ms) Error Rate
1000 RPS 60000 1972ms 15.9%
100 RPS 6000 279ms 0%
10 RPS 600 5ms 0%
1 RPS 60 8ms 0%

Returned Data

{
    "id": 9999999,
    "title": "teal Global-4",
    "enrolled": 77569,
    "reviewcounts": 17,
    "stars": "5.0",
    "offeredby": "University of Virginia"
}

loader.io Stress Test Results - Service

SERVICE GET Requests

http://54.210.167.109:3001/9999999

Requests Total Requests Latency (ms) Error Rate
1000 RPS 60000 3ms 0%
100 RPS 6000 2ms 0%
10 RPS 600 2ms 0%
1 RPS 60 4ms 0%
  • Returned Data
{
    "id": 9999999,
    "title": "teal Global-4",
    "enrolled": 77569,
    "reviewcounts": 17,
    "stars": "5.0",
    "offeredby": "University of Virginia"
}

SERVICE POST Requests

http://54.210.167.109:3001/postTitle

Requests Total Requests Latency (ms) Error Rate
1000 RPS 60000 3ms 0.67%
100 RPS 6000 2ms 0%
10 RPS 600 2ms 0%
1 RPS 60 4ms 0%
  • Posted Data
{
    "title": "Hack Reactor",
    "enrolled": 100,
    "reviewcounts": 100,
    "stars": "4.1",
    "offeredby": "University of Phoenix"
}

loader.io Stress Test Results - Proxy w/ REDIS CACHE

Proxy GET Requests w/ REDIS CACHE

http://54.210.167.109:3001/9999999

Requests Total Requests Latency (ms) Error Rate
1000 RPS 60000 1689ms 12.8%
100 RPS 6000 5ms 0%
10 RPS 600 4ms 0%
1 RPS 60 6ms 0%
  • Returned Data
{
    "id": 9999999,
    "title": "teal Global-4",
    "enrolled": 77569,
    "reviewcounts": 17,
    "stars": "5.0",
    "offeredby": "University of Virginia"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment