milleruntime commented on issue #286:
URL: https://github.com/apache/fluo-uno/issues/286#issuecomment-1262550649
The problem isn't the logs get overridden, the problem is that there is no
logging for a restarted tserver. For example:
I start a cluster with 2 tservers:
<pre>
12:46:25 {main} ~/workspace/uno/install/logs/accumulo$ grep "address = "
*.log
tserver1_ip-10-113-14-231.log:2022-09-29T12:45:04,103 [tserver.TabletServer]
INFO : address = localhost:9997
tserver2_ip-10-113-14-231.log:2022-09-29T12:45:04,279 [tserver.TabletServer]
INFO : address = localhost:10000
</pre>
I kill one of them and tserver2 running on 10000 is dead. I restart the
tserver using `accumulo-cluster start-tservers` and now there are 2 running
again.
<pre>
uno status
Accumulo processes running: tserver(19392) manager(19736) gc(19777)
monitor(19825) tserver(21303)
</pre>
But only one of the logs gets updated and I never see the second tserver
logging to anything:
<pre>
12:52:13 {main} ~/workspace/uno/install/logs/accumulo$ grep "address = "
*.log
tserver1_ip-10-113-14-231.log:2022-09-29T12:45:04,103 [tserver.TabletServer]
INFO : address = localhost:9997
tserver2_ip-10-113-14-231.log:2022-09-29T12:45:04,279 [tserver.TabletServer]
INFO : address = localhost:10000
12:56:07 {main} ~/workspace/uno/install/logs/accumulo$ ls -ltr tserver*.log
-rw-r--r-- 1 mpmill4 domain users 69700 Sep 29 12:48
tserver2_ip-10-113-14-231.log
-rw-r--r-- 1 mpmill4 domain users 116116 Sep 29 12:56
tserver1_ip-10-113-14-231.log
</pre>
Only the log for tserver1_ip-10-113-14-231.log gets updated and I never see
the address 10000 starting up logged anywhere, even though Accumulo sees it and
it seems to function fine.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]