Uploaded image for project: 'Kylin'
  1. Kylin
  2. KYLIN-3505

DataType.getType wrong usage of cache

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • None
    • v2.4.1, v2.5.0
    • Metadata
    • None

    Description

      Wrong usage of cache in org.apache.kylin.metadata.datatype.DataType#getType.

      public static DataType getType(String type) {
          if (type == null)
              return null;
      
          DataType dataType = new DataType(type); // <-- Always new
          DataType cached = CACHE.get(dataType); // already has dataType why fetch it from cache?
          if (cached == null) {
              CACHE.put(dataType, dataType); // <-- Seed cache
              cached = dataType;
          }
          return cached;
      }
      

      Attachments

        Issue Links

          Activity

            People

              hu2008yinxiang Ian Hu
              hu2008yinxiang Ian Hu
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: