Uploaded image for project: 'HBase'
  1. HBase
  2. HBASE-8359

Too much logs on HConnectionManager

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 0.95.0
    • 0.98.0, 0.95.1
    • Client
    • None
    • Reviewed

    Description

      Under a YCSB load test (for HBASE-6295), we can have sporadic bulk of logs because of this:

            final RegionMovedException rme = RegionMovedException.find(exception);
            if (rme != null) {
              LOG.info("Region " + regionInfo.getRegionNameAsString() + " moved to " +
                rme.getHostname() + ":" + rme.getPort() + " according to " + source.getHostnamePort());
              updateCachedLocation(
                  regionInfo, source, rme.getServerName(), rme.getLocationSeqNum());
            } else if (RegionOpeningException.find(exception) != null) {
              LOG.info("Region " + regionInfo.getRegionNameAsString() + " is being opened on "
                + source.getHostnamePort() + "; not deleting the cache entry");
            } else {
              deleteCachedLocation(regionInfo, source);
            }
      

      They should just be removed.

      Attachments

        1. 8359.v1.patch
          2 kB
          Nicolas Liochon

        Activity

          People

            nkeywal Nicolas Liochon
            nkeywal Nicolas Liochon
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: