-
Notifications
You must be signed in to change notification settings - Fork 312
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
Fix tiflash start script #984
Conversation
Codecov Report
@@ Coverage Diff @@
## master #984 +/- ##
==========================================
+ Coverage 55.41% 55.42% +0.01%
==========================================
Files 279 279
Lines 19709 19709
==========================================
+ Hits 10921 10923 +2
+ Misses 7070 7064 -6
- Partials 1718 1722 +4
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW, >> log/tiflash_stderr.log
will only append the stderr log into file, but issue #642 seems to say the tiflash/logs
not created?
Good question. The log directory is empty is because the tiflash didn't start at all (it should be start by numactl but there is no numactl found), so there is no opportunity for it to create a log file. |
I got it. I previously thought that issue want to say the log dir is missing, not the log files under log dir is missing 🐻 |
So in files changed, does the final execution of the command change? |
this behavior is the same as other components, we use systemctl to start/stop those components, if start failed,the error message was omited, and you can check the error log for more detail. |
Fix #642