Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Double the time waiting post replication restart #1421

Open
wants to merge 36 commits into
base: release-1.1.6
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
fe9d8d1
fix: typo (#1331)
testwill Dec 7, 2023
fa12f44
Remove stale RELEASE_VERSION file (#1349)
timvaillancourt Dec 7, 2023
b22229f
Force index in unique key range queries (#1237)
timvaillancourt Dec 7, 2023
d90112c
Include git commit in version (#1347)
timvaillancourt Dec 8, 2023
347d8e0
Fix tokens in inspector logging (#1226)
timvaillancourt Dec 8, 2023
5ebb953
Cleanup whitespace and comments in SQL query text (#1246)
timvaillancourt Dec 8, 2023
679d39e
Fix `--version` output (#1352)
timvaillancourt Dec 11, 2023
462930f
Update to `go1.21` (#1351)
timvaillancourt Dec 11, 2023
8f9c384
Replace deprecated `github.com/satori/go.uuid` lib (#1354)
timvaillancourt Dec 11, 2023
59fd18d
Add `CODEOWNERS` file to auto-request reviews (#1350)
timvaillancourt Dec 12, 2023
11d66d8
Fix successive failures error in streamer (#1371)
timvaillancourt Jan 23, 2024
51c1a21
Update CODEOWNERS
dm-2 Jan 31, 2024
a6cddf9
Print status to migration context logging after escaping % character …
icyflame Jan 31, 2024
6f09ee0
Merge branch 'master' into update-codeowners
dm-2 Jan 31, 2024
3aa6912
Merge pull request #1375 from github/update-codeowners
dm-2 Jan 31, 2024
b1aae87
Add `cpu-profile` interactive command (#1358)
timvaillancourt Jan 31, 2024
aa010a0
Support to config charset and collation (#1368)
shaohk Mar 12, 2024
17149b9
Add Dependabot config file (#1213)
sentinel Mar 12, 2024
a05f32f
Bump CodeQL actions (#1391)
dependabot[bot] Mar 12, 2024
6b3c6ba
Bump actions/setup-go from 4 to 5 (#1395)
dependabot[bot] Mar 12, 2024
27a672d
Bump golangci/golangci-lint-action from 3 to 4 (#1392)
dependabot[bot] Mar 12, 2024
9ca2499
Update pinned deps (#1355)
timvaillancourt Mar 12, 2024
48b34bc
Fix binlog end log pos over lost data (#1367)
shaohk Mar 12, 2024
bc6cd55
Update the description of the max-lag-millis in docs (#1388)
dontstopbelieveing Mar 12, 2024
c681f61
Add `--mysql-wait-timeout` flag (#1401)
timvaillancourt Apr 8, 2024
329b13d
Add doc for PR #1401 (#1403)
timvaillancourt Apr 9, 2024
e6c198c
Update to go1.22, update core deps to latest-stable (#1404)
timvaillancourt Apr 10, 2024
8d99e46
chore: fix function names in comment (#1405)
mountcount Apr 14, 2024
e87e2ab
Bump golangci/golangci-lint-action from 4 to 6 (#1414)
dependabot[bot] May 7, 2024
59db6fa
chore: fix some function names (#1417)
overallteach Jun 2, 2024
ef238ee
Double the time waiting post replication restart
andyedison Jun 11, 2024
1e1fbcb
Ensure `-attempt-instant-ddl` respects `-execute` flag (#1440)
timvaillancourt Aug 14, 2024
48cb9ab
Refine `wait_timeout` override to be at cut-over only (#1406)
timvaillancourt Aug 15, 2024
1e25e71
Add logic to ensure replication has started instead of assuming it ha…
andyedison Oct 14, 2024
df7fba3
Revert unintended change
andyedison Oct 14, 2024
ea5708e
Merge branch 'master' into adjust-wait-post-repl-restart
andyedison Oct 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/logic/inspect.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"github.com/openark/golib/sqlutils"
)

const startSlavePostWaitMilliseconds = 500 * time.Millisecond
const startSlavePostWaitMilliseconds = 1000 * time.Millisecond

// Inspector reads data from the read-MySQL-server (typically a replica, but can be the master)
// It is used for gaining initial status and structure, and later also follow up on progress and changelog
Expand Down
Loading