FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
netdata/database/engine/datafile.h at master · feiyunwill/netdata · GitHub
feiyunwill
/
netdata
Public
forked from
netdata/netdata
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
netdata
/
database
/
engine
/
datafile.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
67 lines (55 loc) · 2.17 KB
Breadcrumbs
netdata
/
database
/
engine
/
datafile.h
Copy path
File metadata and controls
67 lines (55 loc) · 2.17 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
// SPDX-License-Identifier: GPL-3.0-or-later
#ifndef
NETDATA_DATAFILE_H
#define
NETDATA_DATAFILE_H
#include
"rrdengine.h"
/* Forward declarations */
struct
rrdengine_datafile
;
struct
rrdengine_journalfile
;
struct
rrdengine_instance
;
#define
DATAFILE_PREFIX
"datafile-"
#define
DATAFILE_EXTENSION
".ndf"
#define
MAX_DATAFILE_SIZE
(1073741824LU)
#define
MIN_DATAFILE_SIZE
(4194304LU)
#define
MAX_DATAFILES
(65536)
/* Supports up to 64TiB for now */
#define
TARGET_DATAFILES
(20)
#define
DATAFILE_IDEAL_IO_SIZE
(1048576U)
struct
extent_info
{
uint64_t
offset
;
uint32_t
size
;
uint8_t
number_of_pages
;
struct
rrdengine_datafile
*
datafile
;
struct
extent_info
*
next
;
struct
rrdeng_page_descr
*
pages
[];
};
struct
rrdengine_df_extents
{
/* the extent list is sorted based on disk offset */
struct
extent_info
*
first
;
struct
extent_info
*
last
;
};
/* only one event loop is supported for now */
struct
rrdengine_datafile
{
unsigned
tier
;
unsigned
fileno
;
uv_file
file
;
uint64_t
pos
;
struct
rrdengine_instance
*
ctx
;
struct
rrdengine_df_extents
extents
;
struct
rrdengine_journalfile
*
journalfile
;
struct
rrdengine_datafile
*
next
;
};
struct
rrdengine_datafile_list
{
struct
rrdengine_datafile
*
first
;
/* oldest */
struct
rrdengine_datafile
*
last
;
/* newest */
};
extern
void
df_extent_insert
(
struct
extent_info
*
extent
);
extern
void
datafile_list_insert
(
struct
rrdengine_instance
*
ctx
,
struct
rrdengine_datafile
*
datafile
);
extern
void
datafile_list_delete
(
struct
rrdengine_instance
*
ctx
,
struct
rrdengine_datafile
*
datafile
);
extern
void
generate_datafilepath
(
struct
rrdengine_datafile
*
datafile
,
char
*
str
,
size_t
maxlen
);
extern
int
close_data_file
(
struct
rrdengine_datafile
*
datafile
);
extern
int
unlink_data_file
(
struct
rrdengine_datafile
*
datafile
);
extern
int
destroy_data_file
(
struct
rrdengine_datafile
*
datafile
);
extern
int
create_data_file
(
struct
rrdengine_datafile
*
datafile
);
extern
int
create_new_datafile_pair
(
struct
rrdengine_instance
*
ctx
,
unsigned
tier
,
unsigned
fileno
);
extern
int
init_data_files
(
struct
rrdengine_instance
*
ctx
);
extern
void
finalize_data_files
(
struct
rrdengine_instance
*
ctx
);
#endif
/* NETDATA_DATAFILE_H */
Back
|
FazBrowse Home
|
New Git URL