Skip to content

Commit

Permalink
Disable parallel mget queries for fetching stacktraces
Browse files Browse the repository at this point in the history
  • Loading branch information
rockdaboot committed Jun 8, 2022
1 parent 51c6cf9 commit 333a1b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/profiling/server/routes/flamechart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ async function queryFlameGraph(
}

// profiling-stacktraces is configured with 16 shards
const nQueries = 8;
const nQueries = 1;
const stackTraces = new Map<StackTraceID, StackTrace>();
const stackFrameDocIDs = new Set<string>(); // Set of unique FrameIDs
const executableDocIDs = new Set<string>(); // Set of unique executable FileIDs.
Expand Down

0 comments on commit 333a1b1

Please sign in to comment.