You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/develop/data-types/timeseries/configuration.md
+26-9Lines changed: 26 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ weight: 3
18
18
19
19
Previous to version 8.0, all time series configuration parameters were load-time parameters.
20
20
21
-
In order to change the values of a load-time parameter, you have to use one of the following methods:
21
+
In order to set the values of load-time parameters, you have to use one of the following methods:
22
22
23
23
- Pass them as command-line arguments following the `loadmodule` argument when starting redis-server
24
24
@@ -32,8 +32,8 @@ In order to change the values of a load-time parameter, you have to use one of t
32
32
33
33
- Using the `MODULE LOADEX path [CONFIG name value [CONFIG name value ...]] [ARGS args [args ....]]` command.
34
34
35
-
With the introduction of Redis 8.0, most of the time series configuration parameters are now runtime parameters. This means that their values can be changed at runtime.
36
-
You can set runtime configuration parameters at load-time, but instead, it is recommended to use the Redis `CONFIG` command with time series runtime configuration parameters, the same way you would do for Redis runtime configuration parameters.
35
+
With the introduction of Redis 8.0, most of the time series configuration parameters are now runtime parameters. This means that you can change their values at runtime.
36
+
You can also set runtime configuration parameters at load-time, but it is simpler to use the Redis `CONFIG` command with time series runtime configuration parameters, the same way you would do for Redis runtime configuration parameters.
37
37
38
38
This means:
39
39
@@ -49,13 +49,13 @@ This means:
49
49
50
50
Rewrite your Redis configuration file (e.g., the `redis.conf` file) to reflect the configuration changes.
51
51
52
-
Starting with Redis 8.0, you can also specify time series configuration parameters directly in your Redis configuration file (e.g., the`redis.conf` file) the same way you would do for Redis configuration parameters.
52
+
Starting with Redis 8.0, you can also specify time series configuration parameters directly in your Redis configuration file (e.g., your`redis.conf` file) the same way you would do for Redis configuration parameters.
53
53
54
-
Once a value is set with `CONFIG SET`, or added manually to your configuration file, it will overwrite values set with `--loadmodule`, `loadmodule`, `MODULE LOAD`, or `MODULE LOADEX`.
54
+
Once a value is set with `CONFIG SET` or added manually to your configuration file, it will overwrite values set with `--loadmodule`, `loadmodule`, `MODULE LOAD`, or `MODULE LOADEX`.
55
55
56
56
Note that on a cluster, `CONFIG SET` and `CONFIG REWRITE` have to be called on each node separately.
57
57
58
-
In Redis 8.0, we also introduced new names for the time series configuration parameters, to align the naming scheme of the time series configuration parameters with Redis configuration parameters.
58
+
In Redis 8.0, we also introduced new names for the time series configuration parameters, to align the naming with Redis configuration parameters.
59
59
When using the `CONFIG` command, you must use the new names.
60
60
61
61
## Time series configuration parameters
@@ -85,6 +85,21 @@ Type: integer
85
85
Valid range: `[48 .. 1048576]`; must be a multiple of 8
0 commit comments