Slide 28
Slide 28 text
テーブル定義/VSchema定義
• テーブル定義
28
CREATE TABLE messages (
page BIGINT(20) UNSIGNED,
time_created_ns BIGINT(20) UNSIGNED,
message VARCHAR(10000),
PRIMARY KEY (page, time_created_ns)
) ENGINE=InnoDB
• VSchema定義
{
"sharded": true,
"vindexes": {
"hash": {
"type": "hash"
}},
"tables": {
"messages": {
"column_vindexes": [
{
"column": "page",
"name": "hash"
}]}}}