Skip to content

Commit d5d0da6

Browse files
authored
Fix startup (#2)
Fixed errors related to connecting to RonDB, creating NdbRecords, etc.
1 parent 7136810 commit d5d0da6

7 files changed

+100
-121
lines changed

pink/rondis/common.h

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
#define MAX_CONNECTIONS 1
55
#define MAX_NDB_PER_CONNECTION 1
66

7+
#define REDIS_DB_NAME "redis"
8+
79
#define FOREIGN_KEY_RESTRICT_ERROR 256
810

911
#define RONDB_INTERNAL_ERROR 2

pink/rondis/rondb.cc

+9-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ int initialize_connections(const char *connect_string)
2929
printf("RonDB data node connection nr. %d is ready\n", i);
3030
for (unsigned int j = 0; j < MAX_NDB_PER_CONNECTION; j++)
3131
{
32-
Ndb *ndb = new Ndb(rondb_conn[i], "redis_0");
32+
Ndb *ndb = new Ndb(rondb_conn[i], REDIS_DB_NAME);
3333
if (ndb == nullptr)
3434
{
3535
printf("Failed creating Ndb object nr. %d for cluster connection %d\n", j, i);
@@ -61,7 +61,14 @@ int setup_rondb(const char *connect_string)
6161
Ndb *ndb = rondb_ndb[0][0];
6262
NdbDictionary::Dictionary *dict = ndb->getDictionary();
6363

64-
return init_string_records(dict);
64+
if (init_string_records(dict) != 0)
65+
{
66+
printf("Failed initializing records for Redis data type STRING; error: %s\n",
67+
ndb->getNdbError().message);
68+
return -1;
69+
}
70+
71+
return 0;
6572
}
6673

6774
void rondb_end()

pink/rondis/sql/STRING_key.sql

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
1-
CREATE TABLE redis_string_keys(
1+
CREATE TABLE redis.string_keys(
2+
-- Redis actually supports a max key size of 512MiB,
3+
-- but we choose not to support that here
24
redis_key VARBINARY(3000) NOT NULL,
35
-- We will use a ndb auto-increment
46
-- This is to save space when referencing the key in the value table
57
rondb_key BIGINT UNSIGNED,
6-
-- Max 512MiB
7-
value_data_type ENUM('string', 'number', 'binary_string') value_start VARBINARY(26500) NOT NULL,
8+
-- TODO: Replace with Enum below
9+
value_data_type INT UNSIGNED NOT NULL,
10+
-- value_data_type ENUM('string', 'number', 'binary_string'),
811
-- Max 512MiB --> 512 * 1,048,576 bytes = 536,870,912 characters
912
-- --> To describe the length, one needs at least UINT (4,294,967,295)
10-
value_len INT UNSIGNED NOT NULL,
13+
tot_value_len INT UNSIGNED NOT NULL,
14+
-- Technically implicit
15+
num_rows INT UNSIGNED NOT NULL,
1116
value_start VARBINARY(26500) NOT NULL,
12-
-- Redis supports get/set of seconds/miliseconds
17+
-- Redis supports get/set of seconds/milliseconds
1318
expiry_date INT UNSIGNED,
1419
-- Easier to sort and delete keys this way
1520
KEY expiry_index(expiry_date),
1621
PRIMARY KEY (redis_key) USING HASH,
17-
UNIQUE KEY (rondb_key) USING HASH,
22+
UNIQUE KEY (rondb_key) USING HASH
1823
) ENGINE NDB -- Each CHAR will use 1 byte
19-
CHARSET = latin1 COMMENT = "NDB_TABLE=PARTITION_BALANCE=FOR_RP_BY_LDM_X_8"
24+
CHARSET = latin1 COMMENT = "NDB_TABLE=PARTITION_BALANCE=FOR_RP_BY_LDM_X_8";

pink/rondis/sql/STRING_value.sql

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
CREATE TABLE redis_string_values(
1+
CREATE TABLE redis.string_values(
22
rondb_key BIGINT UNSIGNED NOT NULL,
33
ordinal INT UNSIGNED NOT NULL,
44
value VARBINARY(29500) NOT NULL,
55
PRIMARY KEY (rondb_key, ordinal),
6-
FOREIGN KEY (rondb_key) REFERENCES redis_string_key(rondb_key) ON UPDATE RESTRICT ON DELETE CASCADE
6+
FOREIGN KEY (rondb_key) REFERENCES redis.string_keys(rondb_key) ON UPDATE RESTRICT ON DELETE CASCADE
77
) ENGINE NDB,
8-
COMMENT = "NDB_TABLE=PARTITION_BALANCE=RP_BY_LDM_X_8" PARTITION BY KEY (rondb_key)
8+
COMMENT = "NDB_TABLE=PARTITION_BALANCE=RP_BY_LDM_X_8" PARTITION BY KEY (rondb_key);

pink/rondis/string/db_interactions.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ int create_key_row(std::string *response,
5151
}
5252
write_op->setValue(KEY_TABLE_COL_tot_value_len, value_len);
5353
write_op->setValue(KEY_TABLE_COL_num_rows, value_rows);
54-
write_op->setValue(KEY_TABLE_COL_row_state, row_state);
54+
write_op->setValue(KEY_TABLE_COL_value_data_type, row_state);
5555
write_op->setValue(KEY_TABLE_COL_expiry_date, 0);
5656

5757
if (value_len > INLINE_VALUE_LEN)
@@ -149,7 +149,7 @@ int create_key_row(std::string *response,
149149
insert_op->equal(KEY_TABLE_COL_redis_key, buf);
150150
insert_op->setValue(KEY_TABLE_COL_tot_value_len, value_len);
151151
insert_op->setValue("value_rows", value_rows);
152-
insert_op->setValue(KEY_TABLE_COL_row_state, row_state);
152+
insert_op->setValue(KEY_TABLE_COL_value_data_type, row_state);
153153
insert_op->setValue(KEY_TABLE_COL_expiry_date, 0);
154154
{
155155
int ret_code = insert_op->getNdbError().code;

pink/rondis/string/table_definitions.cc

+62-101
Original file line numberDiff line numberDiff line change
@@ -21,164 +21,125 @@ int init_key_records(NdbDictionary::Dictionary *dict)
2121
const NdbDictionary::Table *tab = dict->getTable(KEY_TABLE_NAME);
2222
if (tab == nullptr)
2323
{
24-
printf("Failed getting table for key table of STRING\n");
24+
printf("Failed getting Ndb table %s\n", KEY_TABLE_NAME);
2525
return -1;
2626
}
27+
2728
const NdbDictionary::Column *redis_key_col = tab->getColumn(KEY_TABLE_COL_redis_key);
2829
const NdbDictionary::Column *rondb_key_col = tab->getColumn(KEY_TABLE_COL_rondb_key);
2930
const NdbDictionary::Column *expiry_date_col = tab->getColumn(KEY_TABLE_COL_expiry_date);
3031
const NdbDictionary::Column *value_start_col = tab->getColumn(KEY_TABLE_COL_value_start);
3132
const NdbDictionary::Column *tot_value_len_col = tab->getColumn(KEY_TABLE_COL_tot_value_len);
3233
const NdbDictionary::Column *num_rows_col = tab->getColumn(KEY_TABLE_COL_num_rows);
33-
const NdbDictionary::Column *row_state_col = tab->getColumn(KEY_TABLE_COL_row_state);
34+
const NdbDictionary::Column *value_data_type_col = tab->getColumn(KEY_TABLE_COL_value_data_type);
3435

3536
if (redis_key_col == nullptr ||
3637
rondb_key_col == nullptr ||
3738
expiry_date_col == nullptr ||
3839
value_start_col == nullptr ||
3940
tot_value_len_col == nullptr ||
4041
num_rows_col == nullptr ||
41-
row_state_col == nullptr)
42+
value_data_type_col == nullptr)
4243
{
43-
printf("Failed getting columns for key table of STRING\n");
44+
printf("Failed getting Ndb columns for table %s\n", KEY_TABLE_NAME);
4445
return -1;
4546
}
4647

47-
NdbDictionary::RecordSpecification primary_redis_main_key_spec[1];
48-
NdbDictionary::RecordSpecification all_redis_main_key_spec[7];
49-
50-
primary_redis_main_key_spec[0].column = redis_key_col;
51-
primary_redis_main_key_spec[0].offset = offsetof(struct key_table, redis_key);
52-
primary_redis_main_key_spec[0].nullbit_byte_offset = 0;
53-
primary_redis_main_key_spec[0].nullbit_bit_in_byte = 0;
54-
pk_key_record =
55-
dict->createRecord(tab,
56-
primary_redis_main_key_spec,
57-
1,
58-
sizeof(primary_redis_main_key_spec[0]));
59-
if (pk_key_record == nullptr)
48+
std::map<const NdbDictionary::Column *, std::pair<size_t, int>> pk_lookup_column_map = {
49+
{redis_key_col, {offsetof(struct key_table, redis_key), 0}},
50+
};
51+
if (init_record(dict, tab, pk_lookup_column_map, pk_key_record) != 0)
6052
{
61-
printf("Failed creating record for key table of STRING\n");
53+
printf("Failed creating pk-lookup record for table %s\n", KEY_TABLE_NAME);
6254
return -1;
6355
}
6456

65-
all_redis_main_key_spec[0].column = redis_key_col;
66-
all_redis_main_key_spec[0].offset = offsetof(struct key_table, redis_key);
67-
all_redis_main_key_spec[0].nullbit_byte_offset = 0;
68-
all_redis_main_key_spec[0].nullbit_bit_in_byte = 0;
69-
70-
all_redis_main_key_spec[1].column = rondb_key_col;
71-
all_redis_main_key_spec[1].offset = offsetof(struct key_table, rondb_key);
72-
all_redis_main_key_spec[1].nullbit_byte_offset = 0;
73-
all_redis_main_key_spec[1].nullbit_bit_in_byte = 0;
74-
75-
all_redis_main_key_spec[2].column = expiry_date_col;
76-
all_redis_main_key_spec[2].offset = offsetof(struct key_table, expiry_date);
77-
all_redis_main_key_spec[2].nullbit_byte_offset = 0;
78-
all_redis_main_key_spec[2].nullbit_bit_in_byte = 1;
79-
80-
all_redis_main_key_spec[3].column = value_start_col;
81-
all_redis_main_key_spec[3].offset = offsetof(struct key_table, value_start);
82-
all_redis_main_key_spec[3].nullbit_byte_offset = 0;
83-
all_redis_main_key_spec[3].nullbit_bit_in_byte = 0;
84-
85-
all_redis_main_key_spec[4].column = tot_value_len_col;
86-
all_redis_main_key_spec[4].offset = offsetof(struct key_table, tot_value_len);
87-
all_redis_main_key_spec[4].nullbit_byte_offset = 0;
88-
all_redis_main_key_spec[4].nullbit_bit_in_byte = 0;
89-
90-
all_redis_main_key_spec[5].column = num_rows_col;
91-
all_redis_main_key_spec[5].offset = offsetof(struct key_table, num_rows);
92-
all_redis_main_key_spec[5].nullbit_byte_offset = 0;
93-
all_redis_main_key_spec[5].nullbit_bit_in_byte = 0;
94-
95-
all_redis_main_key_spec[6].column = row_state_col;
96-
all_redis_main_key_spec[6].offset = offsetof(struct key_table, row_state);
97-
all_redis_main_key_spec[6].nullbit_byte_offset = 0;
98-
all_redis_main_key_spec[6].nullbit_bit_in_byte = 0;
99-
100-
entire_key_record = dict->createRecord(tab,
101-
all_redis_main_key_spec,
102-
8,
103-
sizeof(all_redis_main_key_spec[0]));
104-
if (entire_key_record == nullptr)
57+
std::map<const NdbDictionary::Column *, std::pair<size_t, int>> read_all_column_map = {
58+
// TODO: Fix this one
59+
// {redis_key_col, {offsetof(struct key_table, redis_key), 0}},
60+
{rondb_key_col, {offsetof(struct key_table, rondb_key), 0}},
61+
{expiry_date_col, {offsetof(struct key_table, expiry_date), 1}},
62+
{value_start_col, {offsetof(struct key_table, value_start), 0}},
63+
{tot_value_len_col, {offsetof(struct key_table, tot_value_len), 0}},
64+
{num_rows_col, {offsetof(struct key_table, num_rows), 0}},
65+
{value_data_type_col, {offsetof(struct key_table, value_data_type), 0}}
66+
};
67+
68+
if (init_record(dict, tab, read_all_column_map, entire_key_record) != 0)
10569
{
106-
printf("Failed creating record for key table of STRING\n");
70+
printf("Failed creating read-all cols record for table %s\n", KEY_TABLE_NAME);
10771
return -1;
10872
}
10973
return 0;
11074
}
11175

11276
int init_value_records(NdbDictionary::Dictionary *dict)
11377
{
114-
const NdbDictionary::Table *tab = dict->getTable("redis_key_value");
78+
const NdbDictionary::Table *tab = dict->getTable(VALUE_TABLE_NAME);
11579
if (tab == nullptr)
11680
{
117-
printf("Failed getting table for value table of STRING\n");
81+
printf("Failed getting Ndb table %s\n", VALUE_TABLE_NAME);
11882
return -1;
11983
}
84+
12085
const NdbDictionary::Column *rondb_key_col = tab->getColumn(VALUE_TABLE_COL_rondb_key);
12186
const NdbDictionary::Column *ordinal_col = tab->getColumn(VALUE_TABLE_COL_ordinal);
12287
const NdbDictionary::Column *value_col = tab->getColumn(VALUE_TABLE_COL_value);
12388
if (rondb_key_col == nullptr ||
12489
ordinal_col == nullptr ||
12590
value_col == nullptr)
12691
{
127-
printf("Failed getting columns for value table of STRING\n");
92+
printf("Failed getting Ndb columns for table %s\n", VALUE_TABLE_NAME);
12893
return -1;
12994
}
13095

131-
NdbDictionary::RecordSpecification primary_redis_key_value_spec[2];
132-
NdbDictionary::RecordSpecification all_redis_key_value_spec[3];
133-
134-
primary_redis_key_value_spec[0].column = rondb_key_col;
135-
primary_redis_key_value_spec[0].offset = offsetof(struct value_table, rondb_key);
136-
primary_redis_key_value_spec[0].nullbit_byte_offset = 0;
137-
primary_redis_key_value_spec[0].nullbit_bit_in_byte = 0;
96+
std::map<const NdbDictionary::Column *, std::pair<size_t, int>> pk_lookup_column_map = {
97+
{rondb_key_col, {offsetof(struct value_table, rondb_key), 0}},
98+
{ordinal_col, {offsetof(struct value_table, ordinal), 0}}};
13899

139-
primary_redis_key_value_spec[1].column = ordinal_col;
140-
primary_redis_key_value_spec[1].offset = offsetof(struct value_table, ordinal);
141-
primary_redis_key_value_spec[1].nullbit_byte_offset = 0;
142-
primary_redis_key_value_spec[1].nullbit_bit_in_byte = 0;
143-
144-
pk_value_record = dict->createRecord(tab,
145-
primary_redis_key_value_spec,
146-
2,
147-
sizeof(primary_redis_key_value_spec[0]));
148-
if (pk_value_record == nullptr)
100+
if (init_record(dict, tab, pk_lookup_column_map, pk_value_record) != 0)
149101
{
150-
printf("Failed creating record for value table of STRING\n");
102+
printf("Failed creating pk-lookup record for table %s\n", VALUE_TABLE_NAME);
151103
return -1;
152104
}
153105

154-
all_redis_key_value_spec[0].column = rondb_key_col;
155-
all_redis_key_value_spec[0].offset = offsetof(struct value_table, rondb_key);
156-
all_redis_key_value_spec[0].nullbit_byte_offset = 0;
157-
all_redis_key_value_spec[0].nullbit_bit_in_byte = 0;
158-
159-
all_redis_key_value_spec[1].column = ordinal_col;
160-
all_redis_key_value_spec[1].offset = offsetof(struct value_table, ordinal);
161-
all_redis_key_value_spec[1].nullbit_byte_offset = 0;
162-
all_redis_key_value_spec[1].nullbit_bit_in_byte = 0;
163-
164-
all_redis_key_value_spec[2].column = value_col;
165-
all_redis_key_value_spec[2].offset = offsetof(struct value_table, value);
166-
all_redis_key_value_spec[2].nullbit_byte_offset = 0;
167-
all_redis_key_value_spec[2].nullbit_bit_in_byte = 0;
168-
169-
entire_value_record = dict->createRecord(tab,
170-
all_redis_key_value_spec,
171-
3,
172-
sizeof(all_redis_key_value_spec[0]));
173-
if (entire_value_record == nullptr)
106+
std::map<const NdbDictionary::Column *, std::pair<size_t, int>> read_all_column_map = {
107+
{rondb_key_col, {offsetof(struct value_table, rondb_key), 0}},
108+
{ordinal_col, {offsetof(struct value_table, ordinal), 0}},
109+
{value_col, {offsetof(struct value_table, value), 0}}};
110+
111+
if (init_record(dict, tab, read_all_column_map, entire_value_record) != 0)
174112
{
175-
printf("Failed creating record for value table of STRING\n");
113+
printf("Failed creating read-all cols record for table %s\n", VALUE_TABLE_NAME);
176114
return -1;
177115
}
178116

179117
return 0;
180118
}
181119

120+
int init_record(NdbDictionary::Dictionary *dict,
121+
const NdbDictionary::Table *tab,
122+
std::map<const NdbDictionary::Column *, std::pair<size_t, int>> column_info_map,
123+
NdbRecord *&record)
124+
{
125+
NdbDictionary::RecordSpecification col_specs[column_info_map.size()];
126+
int i = 0;
127+
for (const auto &entry : column_info_map)
128+
{
129+
col_specs[i].column = entry.first;
130+
col_specs[i].offset = entry.second.first;
131+
col_specs[i].nullbit_byte_offset = 0;
132+
col_specs[i].nullbit_bit_in_byte = entry.second.second;
133+
++i;
134+
}
135+
record = dict->createRecord(tab,
136+
col_specs,
137+
column_info_map.size(),
138+
sizeof(col_specs[0]));
139+
140+
return (record == nullptr) ? -1 : 0;
141+
}
142+
182143
int init_string_records(NdbDictionary::Dictionary *dict)
183144
{
184145
int res = init_key_records(dict);

pink/rondis/string/table_definitions.h

+10-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
KEY TABLE
1313
*/
1414

15-
#define KEY_TABLE_NAME "redis_string_keys"
15+
#define KEY_TABLE_NAME "string_keys"
1616
#define MAX_KEY_VALUE_LEN 3000
1717
#define INLINE_VALUE_LEN 26500
1818

@@ -28,18 +28,17 @@ extern NdbRecord *entire_key_record;
2828
#define KEY_TABLE_COL_redis_key "redis_key"
2929
#define KEY_TABLE_COL_rondb_key "rondb_key"
3030
#define KEY_TABLE_COL_expiry_date "expiry_date"
31-
#define KEY_TABLE_COL_row_state "row_state"
31+
#define KEY_TABLE_COL_value_data_type "value_data_type"
3232
#define KEY_TABLE_COL_tot_value_len "tot_value_len"
3333
#define KEY_TABLE_COL_num_rows "num_rows"
3434
#define KEY_TABLE_COL_value_start "value_start"
3535

3636
struct key_table
3737
{
38-
Uint32 null_bits; // TODO: What's this for?
3938
char redis_key[MAX_KEY_VALUE_LEN + 2];
4039
Uint64 rondb_key;
4140
Uint32 expiry_date;
42-
Uint32 row_state;
41+
Uint32 value_data_type;
4342
Uint32 tot_value_len;
4443
// Technically implicit
4544
Uint32 num_rows;
@@ -50,7 +49,7 @@ struct key_table
5049
VALUE TABLE
5150
*/
5251

53-
#define VALUE_TABLE_NAME "redis_string_values"
52+
#define VALUE_TABLE_NAME "string_values"
5453
#define EXTENSION_VALUE_LEN 29500
5554

5655
int init_value_records(NdbDictionary::Dictionary *dict);
@@ -74,7 +73,12 @@ struct value_table
7473
};
7574

7675
/*
77-
EXPORT
76+
SHARED/EXPORT
7877
*/
7978

79+
int init_record(NdbDictionary::Dictionary *dict,
80+
const NdbDictionary::Table *tab,
81+
std::map<const NdbDictionary::Column *, std::pair<size_t, int>> column_info_map,
82+
NdbRecord *&record);
83+
8084
int init_string_records(NdbDictionary::Dictionary *dict);

0 commit comments

Comments
 (0)