Architecture 2023-06-07

Road to ISUcon

Preparation for participating in ISUcon.

Read in: ja
Road to ISUcon

Overview

This post details the preparations made for participating in ISUcon.

Goals and Objectives

Recruited Members

Invited a colleague from the company to form a two-person team.

Reviewed Performance Tuning Procedures

Preparation

Configuration Check

mysql> use database;
mysql> SELECT table_name, engine, table_rows, avg_row_length, floor((data_length+index_length)/1024/1024) as allMB, floor((data_length)/1024/1024) as dMB, floor((index_length)/1024/1024) as iMB FROM information_schema.tables WHERE table_schema=database() ORDER BY (data_length+index_length) DESC;

Tuning

Impressions

Participating for the first time was a humbling experience. Despite the lack of practice, basic skills were lacking, so I aim to prepare and improve to compete properly next year. It was a valuable opportunity to reassess my challenges and significantly influence my future motivation. I am grateful to the organizers for such an incredible event, especially since it's free.

Reference Repository

Reference Links

Books Read for ISUcon

Tags: Performance Tuning ISUCON ISUCON8
Share: 𝕏 Post Facebook Hatena
✏️ View source / Discuss on GitHub
☕ Support

If you enjoy this blog, consider supporting it. Every bit helps keep it running!


Related Articles