Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
LSMツリー
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
北村
September 01, 2025
0
24
LSMツリー
北村
September 01, 2025
Tweet
Share
More Decks by 北村
See All by 北村
LLMの出力を構造化したい
shu_kita
0
300
Azure Container Appsを使ってみた
shu_kita
0
220
ギャルのパンティおくれ
shu_kita
1
220
掲示板への不適切な投稿を防ぐ
shu_kita
0
230
正規表現エンジンを自作した話
shu_kita
0
18
Featured
See All Featured
Getting science done with accelerated Python computing platforms
jacobtomlinson
2
150
Building Adaptive Systems
keathley
44
3k
Noah Learner - AI + Me: how we built a GSC Bulk Export data pipeline
techseoconnect
PRO
0
150
A Modern Web Designer's Workflow
chriscoyier
698
190k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.4k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
54k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.6k
How to Get Subject Matter Experts Bought In and Actively Contributing to SEO & PR Initiatives.
livdayseo
0
91
Navigating the moral maze — ethical principles for Al-driven product design
skipperchong
2
310
Claude Code どこまでも/ Claude Code Everywhere
nwiizo
64
54k
Designing Powerful Visuals for Engaging Learning
tmiket
0
300
The AI Search Optimization Roadmap by Aleyda Solis
aleyda
1
5.5k
Transcript
LSM-Tree shu-kita
自己紹介 • 出身 ◦ 大阪府枚方市 ◦ 3年前から札幌住み • 業務 ◦
SIer ◦ デバイスドライバ関係 • 趣味 ◦ テニス、フットサルやってます ◦ お笑いが好きです
話すこと • LSM-Tree について ◦ LSM-Treeとは ◦ 全体像 ◦ Get
(Read) ◦ Put (Write) ◦ Delete ◦ Compaction • デモ(時間あれば)
LSM-Treeとは データベースで使用されるストレージエンジンの一種 特徴 • NoSQLデータベースで使用されることが多い ◦ Cassandra, HBase など •
書き込みの負荷が高いワークロードに適している
全体像 • MemTable ◦ データ読み書き用のメモリバッファ ◦ データが溜まったら ファイル(SSTable)に書き込む • SSTable(Sorted
String Table) ◦ キーでソートされたファイル ◦ MemTableの内容をキーで並び変えて、 作成されるファイル • WAL(Write Ahead Log) ◦ DBに対する変更ログ ◦ 障害復旧などで使用する サーバ ストレージ メモリ WAL SSTable MemTable SSTable
Get (Read) 処理 サーバ ストレージ メモリ WAL SSTable MemTable SSTable
クライアント get “key1” ①メモリにあれば、メ モリから返す ②メモリになければ、 ファイル(SSTable) を読んで返す
Put (Write) 処理 サーバ ストレージ メモリ WAL SSTable MemTable SSTable
クライアント put “key1” “value1” ②メモリにデータを格 納 ③メモリが一定のサイズを超えた ら、新しくSSTableを作成する(この 動作をFlushと呼ぶ) ①WALに更新情報を 書き込む
Delete 処理 サーバ ストレージ メモリ WAL SSTable MemTable SSTable クライアント
delete “key1” ②削除フラグを立てたデー タを格納(※) ③メモリが一定のサイズを超えた ら、新しくファイルを作成する (Flush) ①WALに更新情報を 書き込む ※やっている事は Put と変わらない =データ削除のたびにファイルを書き換える必要がない ③メモリが一定のサイズを超えた ら、新しくSSTableを作成する(この 動作をFlushと呼ぶ)
Compaction 処理 サーバ ストレージ メモリ WAL SSTable MemTable 複数の SSTable
から一つの新しい SSTable を作成する(Compaction) この時に古いデータを削除する。 サーバ ストレージ メモリ WAL SSTable1 MemTable key1 : value1 SSTable2 key1 : value2 key1 : value2 ※SSTable2は、SSTable1より新しいとする Compatcion前 Compatcion後