[ 
https://issues.apache.org/jira/browse/ACCUMULO-3854?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16405203#comment-16405203
 ] 

Christopher Tubbs commented on ACCUMULO-3854:
---------------------------------------------

>From reading this, it's not clear to me that this is an actual concurrency 
>problem, or just a false positive from findbugs as a result of a generally bad 
>practice. If the latter, I think it's probably okay that we're not triggering 
>the false positive from findbugs by using the parent class. If the former, 
>please describe the concurrency issue that this can cause.

> [findbugs] AsyncSpanReceiver synchronizes a concurrent data structure
> ---------------------------------------------------------------------
>
>                 Key: ACCUMULO-3854
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-3854
>             Project: Accumulo
>          Issue Type: Bug
>          Components: trace
>    Affects Versions: 1.5.0, 1.5.1, 1.5.2, 1.6.0, 1.6.1, 1.6.2, 1.7.0
>            Reporter: Josh Elser
>            Priority: Minor
>              Labels: findbugs
>             Fix For: 1.9.0, 2.0.0
>
>
> Noticed this one playing around with ACCUMULO-3853
> If the type of {{sendQueue}} is switched to the concrete 
> ConcurrentLinkedQueue instead of AbstractQueue, findbugs will catch this as 
> an error because we synchronize on a concurrent data structure.
> {code}
> -  protected final AbstractQueue<RemoteSpan> sendQueue = new 
> ConcurrentLinkedQueue<RemoteSpan>();
> +  protected final ConcurrentLinkedQueue<RemoteSpan> sendQueue = new 
> ConcurrentLinkedQueue<RemoteSpan>();
> {code}
> Should trigger some findbugs warnings from the Maven build.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to