solr - stored field not retrieved solrcloud -


i getting issue solrcloud stored field not reflecting in search able result

see example below:

http://solr:port/solr/cloud1_shard1_replica1/select?q=ucid%3addfdf4&fl=ucid&wt=json&indent=true {   "responseheader":{     "status":0,     "qtime":1157,     "params":{       "q":"ucid:ddfdf4",       "indent":"true",       "fl":"ucid",       "wt":"json"}},   "response":{"numfound":1,"start":0,"maxscore":13.710121,"docs":[       {         "ucid":"ddfdf4"}]   }, 

but when add ti in fl there no documents found

http://solr:port/solr/cloud1_shard1_replica1/select?q=ucid%3addfdf4&fl=ucid,ti&wt=json&indent=true     {       "responseheader":{         "status":0,         "qtime":1727,         "params":{           "q":"ucid:ddfdf4",           "indent":"true",           "fl":"ucid,ti",           "wt":"json"}},       "response":{"numfound":0,"start":0,"maxscore":13.710121,"docs":[]       },       "highlighting":{},       "spellcheck":{         "suggestions":[]}} 

can 1 explain behaviour of solrcloud


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -