1. dump with history or current snapshot only (MDEV-16029);
2. dump at specific point in time.
1. and 2. should be compatible, providing the ability to dump at specific point in time with all prior history.
Aleksey Midenkov
added a comment - There should be options for:
1. dump with history or current snapshot only ( MDEV-16029 );
2. dump at specific point in time.
1. and 2. should be compatible, providing the ability to dump at specific point in time with all prior history.
If both --dump-history and --asof-timestamp=T are specified, then history is dumped from the beginning up to T. The query is executed roughly like this:
select *, row_start, row_end from t1 for system_time betweentimestamp'0-0-0 0:0'andtimestamp T;
If only --asof-timestamp=T, then data is dumped without prior history. The query is executed roughly like this:
select * from t1 for system_time asoftimestamp T;
Note
This option specifies only timestamp literal.
It does not specify TRX_ID for precise-versioned tables (though specifying a timestamp is of course valid). This is the subject for further development (e.g. --asof-transaction).
It does not specify any functional expressions.
Security check
Fail on single quote (') symbol to avoid forged queries.
Aleksey Midenkov
added a comment - - edited Task statement
New mysqldump option: --asof-timestamp=T .
If both -- dump-history and --asof-timestamp=T are specified, then history is dumped from the beginning up to T . The query is executed roughly like this:
select *, row_start, row_end from t1 for system_time between timestamp '0-0-0 0:0' and timestamp T;
If only --asof-timestamp=T , then data is dumped without prior history. The query is executed roughly like this:
select * from t1 for system_time as of timestamp T;
Note
This option specifies only timestamp literal.
It does not specify TRX_ID for precise-versioned tables (though specifying a timestamp is of course valid). This is the subject for further development (e.g. --asof-transaction ).
It does not specify any functional expressions.
Security check
Fail on single quote ( ' ) symbol to avoid forged queries.
This is a very clear, independent, and rather small feature. Let's not delay it unnecessary by combining it with two larger and way more arguable features. It can get pushed much faster it it won't wait for two other MDEVs
Sergei Golubchik
added a comment - This is a very clear, independent, and rather small feature. Let's not delay it unnecessary by combining it with two larger and way more arguable features. It can get pushed much faster it it won't wait for two other MDEVs
Not sure if I missing something here: TODO-3118 Lists this feature as present in 10.7 trunk, and this ticket is closed with a fix version of 10.7. However, neither 10.7 trunk, nor 10.5.11 (the github.com/tempesta-tech repo listed above) nor 10.5 trunk seems to have the feature implemented:
10.7.1 5cc9cf9a05582307abefd8f3b57548945da86b1a and others as described above
Roel Van de Paar
added a comment - Not sure if I missing something here: TODO-3118 Lists this feature as present in 10.7 trunk, and this ticket is closed with a fix version of 10.7. However, neither 10.7 trunk, nor 10.5.11 (the github.com/tempesta-tech repo listed above) nor 10.5 trunk seems to have the feature implemented:
10.7.1 5cc9cf9a05582307abefd8f3b57548945da86b1a and others as described above
$ ./bin/mysqldump --help --verbose | grep -i asof
$ ./bin/mysqldump --asof-timestamp
./bin/mysqldump: unknown option '--asof-timestamp'
$ ./bin/mysqldump --dump-history
./bin/mysqldump: unknown option '--dump-history'
--as-of=name Dump system versioned table as of specified timestamp.
as-of (No default value)
Sergei Golubchik
added a comment -
10.7 any time in Sept/Oct
$ ./bin/mysqldump --help --verbose | grep -i as-of
--as-of=name Dump system versioned table as of specified timestamp.
as-of (No default value)
Roel Van de Paar
added a comment - - edited To clarify, --dump-history was (eventually) not added here, only --as-of .
The --as-of option was documented .
For any customers/users reviewing the implementation of -as-of please note there is up-to microsecond precision:
$ ./bin/mysqldump -uroot -S./socket.sock --compact test t1 --as-of="2021-11-01 06:23:43.5" --skip-tz-utc
...
INSERTINTO `t1` VALUES
(1),
(2),
(3);
$ ./bin/mysqldump -uroot -S./socket.sock --compact test t1 --as-of="2021-11-01 06:23:43.7" --skip-tz-utc
...
INSERTINTO `t1` VALUES
(2),
(3);
Roel Van de Paar
added a comment - - edited For any customers/users reviewing the implementation of -as-of please note there is up-to microsecond precision:
$ ./bin/mysqldump -uroot -S./socket.sock --compact test t1 --as-of="2021-11-01 06:23:43.5" --skip-tz-utc
...
INSERT INTO `t1` VALUES
(1),
(2),
(3);
$ ./bin/mysqldump -uroot -S./socket.sock --compact test t1 --as-of="2021-11-01 06:23:43.7" --skip-tz-utc
...
INSERT INTO `t1` VALUES
(2),
(3);
There should be options for:
1. dump with history or current snapshot only (
MDEV-16029);2. dump at specific point in time.
1. and 2. should be compatible, providing the ability to dump at specific point in time with all prior history.