Back to Firecrawl

Scraping Load Testing - Test #1

apps/test-suite/load-test-results/tests-1-5/load-test-1.md

2.9.04.7 KB
Original Source

Scraping Load Testing - Test #1

Summary

The load test successfully processed 600 requests in 60 seconds with all requests returning HTTP 200 status codes. The average response time was 1380.1 ms, with CPU utilization peaking at around 50% on both machines, indicating sufficient CPU resources. However, there was a significant increase in memory usage post-test, which did not return to pre-test levels, suggesting a potential memory leak. Further investigation and additional load tests are recommended to address this issue and optimize the system's performance.

Table of Contents

Test environment

Machines

MachineSize/CPU
e286de4f711e86 mia (app)performance-cpu-1x@2048MB
73d8dd909c1189 mia (app)performance-cpu-1x@2048MB

Load #1 - 600 reqs 60 secs (initial load only)

yml
# load-test.yml
- duration: 60
  arrivalRate: 10  # Initial load

Archillery Report

Date: 10:49:39(-0300)

MetricValue
http.codes.200600
http.downloaded_bytes0
http.request_rate10/sec
http.requests600
http.response_time.min984
http.response_time.max2267
http.response_time.mean1380.1
http.response_time.median1353.1
http.response_time.p951755
http.response_time.p992059.5
http.responses600
vusers.completed600
vusers.created600
vusers.created_by_name.Scrape a URL600
vusers.failed0
vusers.session_length.min1053.7
vusers.session_length.max2332.6
vusers.session_length.mean1447.4
vusers.session_length.median1436.8
vusers.session_length.p951863.5
vusers.session_length.p992143.5

CPU Utilization

Both machines peaked at around 50% CPU utilization.

Memory Utilization

MachineBeforeAfter Load Test
e286de4f711e86295 MiB358 MiB
73d8dd909c1189296 MiB355 MiB

Notice that the memory utilization has not re-stabilished to the pre-test values during the check window, which may indicate a memory leak problem.


Conclusions and Next Steps

Conclusions

  1. Performance: The system handled 600 requests in 60 seconds with a mean response time of 1380.1 ms. All requests were successful (HTTP 200).
  2. CPU Utilization: Both machines peaked at around 50% CPU utilization, indicating that the CPU resources were sufficient for the load.
  3. Memory Utilization: There was a noticeable increase in memory usage on both machines post-test, and the memory did not re-stabilize to pre-test levels, suggesting a potential memory leak.

Next Steps

  1. Investigate Memory Leak: Conduct a detailed analysis to identify and fix the potential memory leak. This may involve profiling the application and reviewing the code for memory management issues.
  2. Additional Load Tests: Perform additional load tests with varying request rates and durations to further assess the system's performance and stability.
  3. Optimize Performance: Based on the findings, optimize the application to improve response times and resource utilization.
  4. Monitor in Production: Implement monitoring in the production environment to ensure that similar issues do not occur under real-world conditions.
  5. Documentation: Update the documentation with the findings and any changes made to the system as a result of this test.

By following these steps, we can ensure that the system is robust, efficient, and ready to handle production workloads.