? RDBMS & NoSQL RDBMS 構造化データを扱うことに適したデータベースマネージメントシステム RDBMS 開発元 Oracle Database Oracle MySQL Oracle SQL Server Microsoft PostgreSQL PostgreSQL Global Development Group MariaDB MariaDB Corporation Ab, MariaDB Foundation SQLite D. Richard Hipp
StatefulSet 補足 順序保証と一意性: Pod が順番に作成され、削除されることを保証。これにより、データの整合性が保たれ、同じ識別情 報で Pod を再起動できる。 安定したネットワークID: 各Podに固定のネットワーク識別子が与えられ、その識別子は Pod が再デプロイされても変更さ れない。 永続ストレージ: 各 Pod に対して永続ボリューム(永続ストレージ)を使用でき、Pod が再起動または再デプロイされて もデータが保持される。 順序付き、グレースフルなローリングアップデート: アプリケーションの更新時には、StatefulSet は順序よく一つずつ Pod を更新していくため、更新中もシステムの安定性を維持可能。
TiDB Set Up MySQL Client Access $ kubectl port-forward service/sample-tidb-tidb 14000:4000 > pf14000.out & $ mysql --comments -h 127.0.0.1 -P 14000 -u root Welcome to the MySQL monitor. Commands end with ; or ¥g. Your MySQL connection id is 1805648180 Server version: 8.0.11-TiDB-v7.4.0 TiDB Server (Apache License 2.0) Community Edition, MySQL 8.0 compatible Copyright (c) 2000, 2024, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '¥h' for help. Type '¥c' to clear the current input statement. mysql> SELECT @@VERSION; +--------------------+ | @@VERSION | +--------------------+ | 8.0.11-TiDB-v7.4.0 | +--------------------+ 1 row in set (0.00 sec) mysql> exit Bye
DB を使ってみよう! https://speakerdeck.com/makocchi/how-to-use-tidb-with-kubernetes いまこそ NewSQL を使ってみよう https://speakerdeck.com/makocchi/lets-try-newsql-now https://docs.pingcap.com/tidb-in-kubernetes/stable/get-started Get Started with TiDB on Kubernetes https://github.com/oracle-japan/ochacafe-s8-4 Oracle Hangout Cafe Season 8 #4 NewSQL TiDB 入門 ~ TiDB と周辺ツール群 ~ https://zenn.dev/koiping/articles/f4b6579f3e6a68 Raft について簡単に調べた https://naoto0822.medium.com/raft%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6%E7%B0%A1%E5%8D% 98%E3%81%AB%E8%AA%BF%E3%81%B9%E3%81%9F-2c77dca2e298 論文翻訳: In Search of an Understandable Consensus Algorithm (Extended Version) https://hazm.at/mox/distributed-system/algorithm/transaction/raft/index.html