Skip to content

Instantly share code, notes, and snippets.

@voluntas
voluntas / shiguredo_loadtest_tool_oribe_log.rst
Last active April 3, 2023 02:59
時雨堂 シナリオ負荷試験ツール Oribe 開発ログ
@matsuu
matsuu / slow_query.sql
Last active November 23, 2023 13:07
performance_schemaを使用したスロークエリー抽出
-- ORDER BYとLIMITは必要応じて適宜修正
-- VIEWを作成すると便利
SELECT
count_star AS cnt,
sum_timer_wait/1e12 AS sum,
min_timer_wait/1e12 AS min,
avg_timer_wait/1e12 AS avg,
max_timer_wait/1e12 AS max,
sum_rows_sent AS sumRows,
sum_rows_sent/count_star AS avgRows,