Alexander Ko created SOLR-17627:
-----------------------------------
Summary: SolrAdmin 9. Not convenient formatting list items(multi
value) in search results and facets
Key: SOLR-17627
URL: https://issues.apache.org/jira/browse/SOLR-17627
Project: Solr
Issue Type: Improvement
Components: Admin UI
Affects Versions: 9.6.1
Reporter: Alexander Ko
Hello.
We are using SOLR 9 in our project for indexing big data.
All goes fine. But we had some inconvenience with reading search results of
list items(multi-value) and facets after upgrading SOLR.
In SolrAdmin versions SOLR 9.0.0,
the search result with list items(multi-value) and facets arranged vertically,
which is great.
In Solr Admin versions SOLR 9.6.1, we have another picture, all search results
list item(multi-value) and facets arranged horizontally.
(!) It difficult to read, when we have many values.
For example SolrAdmin versions SOLR 9.0.0 - (/) Cool formatting
{code}
{
"responseHeader":{
"status":0,
"QTime":47,
"params":{
"q":"*:*",
"facet.field":"statusProcDetail",
"indent":"true",
"fl":"id,statusProcDetail,dateCreated,dateModified,category",
"q.op":"OR",
"rows":"2",
"facet":"true",
"_":"1737129543346"}},
"response":{"numFound":818205,"start":0,"numFoundExact":true,"docs":[
{
"id":"GBL00000119",
"dateCreated":"2022-12-21T09:28:21Z",
"dateModified":"2023-07-02T15:48:25Z",
"statusProcDetail":["1H",
"2H",
"4H",
"8H",
"10H",
"80H"],
"category":["RATING AND VALUATION, WALES",
"ARDRETHU A PHRISIO, CYMRU"]},
{
"id":"GBL00000121",
"dateCreated":"2022-12-21T09:28:22Z",
"dateModified":"2023-07-02T15:48:25Z",
"statusProcDetail":["1H",
"2H",
"4H",
"8H",
"10H",
"80H"],
"category":["HEALTH AND SAFETY"]}]
},
"facet_counts":{
"facet_queries":{},
"facet_fields":{
"statusProcDetail":[
"10H",810933,
"80H",810931,
"8H",809917,
"1H",326797,
"4H",326797,
"2H",326796,
"1000H",205193,
"EMPTY",7270,
"400H",433,
"40H",348]},
"facet_ranges":{},
"facet_intervals":{},
"facet_heatmaps":{}}}
{code}
It's SolrAdmin versions SOLR 9.6.1 - (!) Not convenient formatting
{code}
{
"responseHeader":{
"status":0,
"QTime":118,
"params":{
"q":"-statusProcDetail:EMPTY",
"facet.field":"statusProcDetail",
"indent":"true",
"fl":"id,statusProcDetail,dateCreated,dateModified,category",
"q.op":"OR",
"rows":"2",
"facet":"true",
"useParams":"",
"_":"1737129899639"
}
},
"response":{
"numFound":772056,
"start":0,
"numFoundExact":true,
"docs":[{
"id":"GBL00131030_ADOPTED",
"dateCreated":"2023-04-24T14:46:57.007Z",
"dateModified":"2023-04-24T14:46:57.007Z",
"statusProcDetail":["8H","10H","80H","1000H"]
},{
"id":"GBL00131030_1994-07-28",
"dateCreated":"2023-04-24T14:46:58.032Z",
"dateModified":"2023-04-24T14:46:58.032Z",
"statusProcDetail":["8H","10H","80H","1000H"]
}]
},
"facet_counts":{
"facet_queries":\{ },
"facet_fields":{
"statusProcDetail":["10H",772052, "80H",772050, "8H",771179,
"1000H",598646, "1H",315091, "4H",315091, "2H",315087, "400H",571, "40H",284,
"EMPTY",0]
},
"facet_ranges":\{ },
"facet_intervals":\{ },
"facet_heatmaps":\{ }
}
}
{code}
(/) We solved such problems temporarily by changing JS library of SOLR admin on
our server.
That patch is modifying search result and arrange multi values and facets
properly (vertically).
It will be great if you make such improvements in SOLR Admin 9.x.
Such formatting could be optional.
Best regards, Alex Ko
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]