Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HBASE-25556 Frequent replication "Encountered a malformed edit" warnings
ProtobufLogReader#readNext may be called by code that attempts to advance the reader but does not necessarily expect to succeed, for example WALEntryStream#tryAdvanceEntry. Much of the logging in this method is at TRACE level. Other logging at WARN level will be frequently emitted, as often as several per minute, and this will cause false positive assessment from operators that they are experiencing a bug. Fix the mixed intent with respect to log levels in readNext. Log at only DEBUG level or below.
- Loading branch information