-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsmgr.c
406 lines (340 loc) · 8.84 KB
/
smgr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
#include "postgres.h"
#include "miscadmin.h"
#include "utils/snapmgr.h"
#include "ygpver.h"
#if PG_VERSION_NUM >= 130000
#include "postmaster/interrupt.h"
#endif
#include "storage/ipc.h"
#include "storage/lwlock.h"
#include "storage/md.h"
#include "storage/shmem.h"
#include "storage/smgr.h"
#if PG_VERSION_NUM >= 100000
#include "common/file_perm.h"
#else
#include "access/xact.h"
#endif
#include "utils/elog.h"
#if IsGreenplum6 || IsModernYezzey
#include "cdb/cdbvars.h"
#endif
#include "catalog/pg_tablespace.h"
#include "yezzey.h"
// For GpIdentity
#include "c.h"
#include "cdb/cdbvars.h"
#if IsModernYezzey
#include "access/aomd.h"
#endif
#include "storage.h"
#include "proxy.h"
/*
* Construct external storage filepath.
*
* Assepts initialized StringInfoData as its first param
*/
static void constructExtenrnalStorageFilepath(StringInfoData *path,
RelFileNode rnode,
BackendId backend,
ForkNumber forkNum,
BlockNumber blkno) {
char *relpath;
BlockNumber blockNum;
relpath = relpathbackend(rnode, backend, forkNum);
appendStringInfoString(path, relpath);
blockNum = blkno / ((BlockNumber)RELSEG_SIZE);
if (blockNum > 0)
appendStringInfo(path, ".%u", blockNum);
pfree(relpath);
}
/* TODO: remove, or use external_storage.h funcs */
int loadFileFromExternalStorage(RelFileNode rnode, BackendId backend,
ForkNumber forkNum, BlockNumber blkno) {
StringInfoData path;
initStringInfo(&path);
constructExtenrnalStorageFilepath(&path, rnode, backend, forkNum, blkno);
return 0;
}
void yezzey_init(void) {
elog(yezzey_log_level, "[YEZZEY_SMGR] init");
mdinit();
}
#if IsModernYezzey
void yezzey_open(SMgrRelation reln) {
mdopen(reln);
}
#endif
#if IsModernYezzey
void yezzey_close(SMgrRelation reln, ForkNumber forkNum) {
mdclose(reln, forkNum);
}
#else
void yezzey_close(SMgrRelation reln, ForkNumber forkNum) {
if ((reln->smgr_rnode).node.spcNode == YEZZEYTABLESPACE_OID) {
/*do nothing */
return;
}
mdclose(reln, forkNum);
}
#endif
#if IsModernYezzey
void yezzey_create(SMgrRelation reln, ForkNumber forkNum, bool isRedo) {
mdcreate(reln, forkNum, isRedo);
}
#else
void yezzey_create(SMgrRelation reln, ForkNumber forkNum, bool isRedo) {
if ((reln->smgr_rnode).node.spcNode == YEZZEYTABLESPACE_OID) {
/*do nothing */
return;
}
mdcreate(reln, forkNum, isRedo);
}
#endif
#if IsGreenplum6
void yezzey_create_ao(RelFileNodeBackend rnode, int32 segmentFileNum,
bool isRedo) {
if (rnode.node.spcNode == YEZZEYTABLESPACE_OID) {
/*do nothing */
return;
}
mdcreate_ao(rnode, segmentFileNum, isRedo);
}
#endif
#if IsModernYezzey
bool yezzey_exists(SMgrRelation reln, ForkNumber forkNum) {
return mdexists(reln, forkNum);
}
#else
bool yezzey_exists(SMgrRelation reln, ForkNumber forkNum) {
if ((reln->smgr_rnode).node.spcNode == YEZZEYTABLESPACE_OID) {
/*do nothing */
return true;
}
return mdexists(reln, forkNum);
}
#endif
#if IsModernYezzey
void yezzey_unlink(RelFileNodeBackend rnode, ForkNumber forkNum, bool isRedo)
#else
void yezzey_unlink(RelFileNodeBackend rnode, ForkNumber forkNum, bool isRedo,
char relstorage)
#endif
{
#if IsModernYezzey
mdunlink(rnode, forkNum, isRedo);
#else
if (rnode.node.spcNode == YEZZEYTABLESPACE_OID) {
/*do nothing */
return;
}
mdunlink(rnode, forkNum, isRedo, relstorage);
#endif
}
#if IsModernYezzey
void
yezzey_unlink_ao(RelFileNodeBackend rnode, ForkNumber forkNum, bool isRedo)
{
mdunlink_ao(rnode, forkNum, isRedo);
}
#endif
void yezzey_extend(SMgrRelation reln, ForkNumber forkNum, BlockNumber blockNum,
char *buffer, bool skipFsync) {
#if IsGreenplum6
if ((reln->smgr_rnode).node.spcNode == YEZZEYTABLESPACE_OID) {
/*do nothing */
return;
}
#endif
mdextend(reln, forkNum, blockNum, buffer, skipFsync);
}
#if PG_VERSION_NUM >= 130000
bool
#else
void
#endif
yezzey_prefetch(SMgrRelation reln, ForkNumber forkNum, BlockNumber blockNum)
{
#if IsGreenplum6
if ((reln->smgr_rnode).node.spcNode == YEZZEYTABLESPACE_OID) {
/*do nothing */
#if PG_VERSION_NUM >= 130000
return true;
#else
return;
#endif
}
#endif
return mdprefetch(reln, forkNum, blockNum);
}
void
yezzey_read(SMgrRelation reln, ForkNumber forkNum, BlockNumber blockNum,
char *buffer) {
#if IsGreenplum6
if ((reln->smgr_rnode).node.spcNode == YEZZEYTABLESPACE_OID) {
/*do nothing */
return;
}
#endif
mdread(reln, forkNum, blockNum, buffer);
}
void
yezzey_write(SMgrRelation reln, ForkNumber forkNum, BlockNumber blockNum,
char *buffer, bool skipFsync) {
#if IsGreenplum6
if ((reln->smgr_rnode).node.spcNode == YEZZEYTABLESPACE_OID) {
/*do nothing */
return;
}
#endif
mdwrite(reln, forkNum, blockNum, buffer, skipFsync);
}
void
yezzey_writeback(SMgrRelation reln, ForkNumber forkNum,
BlockNumber blockNum, BlockNumber nBlocks) {
#if IsGreenplum6
/*do nothing */
#else
mdwriteback(reln, forkNum, blockNum, nBlocks);
#endif
}
BlockNumber
yezzey_nblocks(SMgrRelation reln, ForkNumber forkNum) {
#if IsGreenplum6
if ((reln->smgr_rnode).node.spcNode == YEZZEYTABLESPACE_OID) {
/*do nothing */
return 0;
}
#endif
return mdnblocks(reln, forkNum);
}
void
yezzey_truncate(SMgrRelation reln, ForkNumber forkNum,
BlockNumber nBlocks) {
#if IsGreenplum6
if ((reln->smgr_rnode).node.spcNode == YEZZEYTABLESPACE_OID) {
/*do nothing */
return;
}
#endif
mdtruncate(reln, forkNum, nBlocks);
}
void
yezzey_immedsync(SMgrRelation reln, ForkNumber forkNum) {
#if IsGreenplum6
if ((reln->smgr_rnode).node.spcNode == YEZZEYTABLESPACE_OID) {
/*do nothing */
return;
}
#endif
mdimmedsync(reln, forkNum);
}
#if IsGreenplum6
void yezzey_pre_ckpt(void) {
(void) mdpreckpt();
}
void yezzey_sync(void) {
(void) mdsync();
}
void yezzey_post_ckpt(void) {
(void) mdpostckpt();
}
#endif
#if IsGreenplum6
static const struct f_smgr yezzey_smgr = {
.smgr_init = yezzey_init,
.smgr_shutdown = NULL,
.smgr_close = yezzey_close,
.smgr_create = yezzey_create,
.smgr_create_ao = yezzey_create_ao,
.smgr_exists = yezzey_exists,
.smgr_unlink = yezzey_unlink,
.smgr_extend = yezzey_extend,
.smgr_prefetch = yezzey_prefetch,
.smgr_read = yezzey_read,
.smgr_write = yezzey_write,
.smgr_writeback = yezzey_writeback,
.smgr_nblocks = yezzey_nblocks,
.smgr_truncate = yezzey_truncate,
.smgr_immedsync = yezzey_immedsync,
.smgr_pre_ckpt = yezzey_pre_ckpt,
.smgr_sync = yezzey_sync,
.smgr_post_ckpt = yezzey_post_ckpt,
};
#else
static const f_smgr yezzey_smgrsw[] = {
/* magnetic disk */
{
.smgr_init = yezzey_init,
.smgr_shutdown = NULL,
.smgr_close = yezzey_close,
.smgr_create = yezzey_create,
.smgr_exists = yezzey_exists,
.smgr_unlink = yezzey_unlink,
.smgr_extend = yezzey_extend,
.smgr_prefetch = yezzey_prefetch,
.smgr_read = yezzey_read,
.smgr_write = yezzey_write,
.smgr_writeback = yezzey_writeback,
.smgr_nblocks = mdnblocks,
.smgr_truncate = yezzey_nblocks,
.smgr_immedsync = yezzey_immedsync,
},
/*
* Relation files that are different from heap, characterised by:
* 1. variable blocksize
* 2. block numbers are not consecutive
* 3. shared buffers are not used
* Append-optimized relation files currently fall in this category.
*/
{
.smgr_init = NULL,
.smgr_shutdown = NULL,
.smgr_close = yezzey_close,
.smgr_create = yezzey_create,
.smgr_exists = yezzey_exists,
.smgr_unlink = yezzey_unlink_ao,
.smgr_extend = yezzey_extend,
.smgr_prefetch = yezzey_prefetch,
.smgr_read = yezzey_read,
.smgr_write = yezzey_write,
.smgr_writeback = yezzey_writeback,
.smgr_nblocks = yezzey_nblocks,
.smgr_truncate = yezzey_truncate,
.smgr_immedsync = yezzey_immedsync,
}
};
#endif
static const struct f_smgr_ao yezzey_smgr_ao = {
.smgr_FileClose = yezzey_FileClose,
.smgr_AORelOpenSegFile = yezzey_AORelOpenSegFile,
.smgr_FileWrite = yezzey_FileWrite,
.smgr_FileRead = yezzey_FileRead,
.smgr_FileSync = yezzey_FileSync,
.smgr_FileTruncate = yezzey_FileTruncate,
#if !IsModernYezzey
.smgr_NonVirtualCurSeek = yezzey_NonVirtualCurSeek,
.smgr_FileSeek = yezzey_FileSeek,
#else
.smgr_FileDiskSize = yezzey_FileDiskSize,
.smgr_FileSize = yezzey_FileSize,
#endif
};
#if IsGreenplum6
const f_smgr *smgr_yezzey(BackendId backend, RelFileNode rnode) {
return &yezzey_smgr;
}
#else
const f_smgr *smgr_yezzey(BackendId backend, RelFileNode rnode, SMgrImpl which) {
return &yezzey_smgrsw[which];
}
#endif
const f_smgr_ao *smgrao_yezzey(void) {
return &yezzey_smgr_ao;
}
void smgr_init_yezzey(void) {
#if IsGreenplum6
smgr_init_standard();
#endif
yezzey_init();
}