You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Shalin Shekhar Mangar (JIRA)" <ji...@apache.org> on 2015/10/18 07:28:05 UTC

[jira] [Assigned] (SOLR-8162) JmxMonitoredMap#clear triggers a query on all the MBeans thus generating lots of warnings

     [ https://issues.apache.org/jira/browse/SOLR-8162?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shalin Shekhar Mangar reassigned SOLR-8162:
-------------------------------------------

    Assignee: Shalin Shekhar Mangar

> JmxMonitoredMap#clear triggers a query on all the MBeans thus generating lots of warnings
> -----------------------------------------------------------------------------------------
>
>                 Key: SOLR-8162
>                 URL: https://issues.apache.org/jira/browse/SOLR-8162
>             Project: Solr
>          Issue Type: Bug
>          Components: JMX
>    Affects Versions: 5.3
>            Reporter: Marius Dumitru Florea
>            Assignee: Shalin Shekhar Mangar
>         Attachments: SOLR-8162.patch
>
>
> [{{JmxMonitoredMap#clear()}}|http://svn.apache.org/viewvc/lucene/dev/tags/lucene_solr_5_3_1/solr/core/src/java/org/apache/solr/core/JmxMonitoredMap.java?view=markup#l133] doesn't restrict the query to the MBeans registered by Solr thus forcing the {{MBeanServer}} to query all the registered MBeans if they have a "coreHashCode" attribute:
> {noformat}
> QueryExp exp = Query.eq(Query.attr("coreHashCode"), Query.value(coreHashCode));
> ...
> objectNames = server.queryNames(null, exp);
> {noformat}
> This triggers a lot of warnings because (I guess) [{{DynamicMBean#getAttribute()}}|https://docs.oracle.com/javase/7/docs/api/javax/management/DynamicMBean.html#getAttribute%28java.lang.String%29] throws {{AttributeNotFoundException}}.
> This is what I get for instance:
> {noformat}
> 2015-10-13 16:07:10,281 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,281 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,281 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,282 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,282 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,282 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,282 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,282 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,282 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,283 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,283 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,283 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,283 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,283 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,284 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,284 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,285 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,285 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,285 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,285 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,285 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,286 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,286 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,286 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,286 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,286 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,286 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,286 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,286 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,286 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,287 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,287 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,287 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,287 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,287 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,287 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,287 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,287 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,288 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,288 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,288 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,288 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,288 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,288 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,288 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,289 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,289 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,289 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,289 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,289 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,289 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,289 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,289 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,290 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,290 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,290 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,290 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,290 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,290 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,290 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,290 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,291 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,291 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,291 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,291 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,291 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,291 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,291 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,291 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,291 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,292 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,292 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,292 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,292 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,292 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,292 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,292 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,293 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,293 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,293 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,293 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,293 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,293 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,294 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,294 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,294 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,294 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,294 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,294 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,295 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,295 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,295 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,295 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,295 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,295 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,295 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,295 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,296 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,296 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,296 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,296 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,296 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,296 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,296 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,296 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,297 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,297 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,297 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,297 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,297 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,297 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,297 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,297 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,297 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,298 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,298 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,298 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,298 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,298 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,298 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,298 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,298 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,299 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,299 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,299 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,299 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,299 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,299 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,299 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,299 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,299 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,299 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,300 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,300 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,300 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,300 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,300 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,300 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,300 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,300 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,300 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,301 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,301 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> 2015-10-13 16:07:10,301 [http://localhost:8080/xwiki/bin/view/Sandbox/Foo] WARN  o.i.j.ResourceDMBean           - ISPN000042: Did not find queried attribute with name coreHashCode 
> {noformat}
> 144 "Did not find queried attribute with name coreHashCode" warnings from {{org.infinispan.jmx.ResourceDMBean}}.
> Instead of passing {{null}} to {{queryNames}} you should restrict the scope using the ObjectName parameter.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org