[ 
https://issues.apache.org/jira/browse/HIVE-19261?focusedWorklogId=440852&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-440852
 ]

ASF GitHub Bot logged work on HIVE-19261:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 03/Jun/20 16:01
            Start Date: 03/Jun/20 16:01
    Worklog Time Spent: 10m 
      Work Description: belugabehr commented on pull request #807:
URL: https://github.com/apache/hive/pull/807#issuecomment-638292070


   Hive project is testing out using GitHub now.


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 440852)
    Time Spent: 1h  (was: 50m)

> Avro SerDe's InstanceCache should not be synchronized on retrieve
> -----------------------------------------------------------------
>
>                 Key: HIVE-19261
>                 URL: https://issues.apache.org/jira/browse/HIVE-19261
>             Project: Hive
>          Issue Type: Improvement
>            Reporter: Fangshi Li
>            Assignee: Alexey Diomin
>            Priority: Major
>              Labels: pull-request-available
>         Attachments: HIVE-19261.1.patch
>
>          Time Spent: 1h
>  Remaining Estimate: 0h
>
> In HIVE-16175, upstream made a patch to fix the thread safety issue in 
> AvroSerDe's InstanceCache. This fix made the retrieve method in InstanceCache 
> synchronized. While it should make InstanceCache thread-safe, making retrieve 
> synchronized for the cache can be expensive in highly concurrent environment 
> like Spark, as multiple threads need to be synchronized on entering the 
> entire retrieve method.
> We are proposing another way to fix this thread safety issue by making the 
> underlying map of InstanceCache as ConcurrentHashMap. Ideally, we can use 
> atomic computeIfAbsent in the retrieve method to avoid synchronizing the 
> entire method.
> While computeIfAbsent is only available on java 8 and java 7 is still 
> supported in Hive,
> we use a pattern to simulate the behavior of computeIfAbsent. In the future, 
> we should move to computeIfAbsent when Hive requires java 8.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to