We have a very basic test (main bit pasted below), nothing but plain old HTTP requests and sleeping inbetween on the example journey.
When we run this test we are seeing CPU spikes and a drop in memory usage. Then the memory immediately climbs back to its old usage level. This is when the test is in steady state and not during init or ramp up. Lokos like GC but GC that isn’t needed as it then fills the RAM back up (plus RAM is level).
What is happening there and can we tune GC if it is that?
Many thanks,
Rob
import { exampleJourney } from "./exampleJourney.js";
export let options = {
stages: [
{ duration: "7m", target: 3500 },
{ duration: "8m", target: 3500 }
]
};
export default function(){
exampleJourney(false)
}