在Solr中编写大型文档的异常

时间:2015-04-14 00:57:20

标签: java solr

我正在尝试将一个大文档插入Solr,但它给了我以下错误:

Exception writing document id ba666298-9223-4f80-8069-a5018cc7d1b4 to the index; possible analysis error.. Stacktrace follows:
Message: Exception writing document id ba666298-9223-4f80-8069-a5018cc7d1b4 to the index; possible analysis error.

以下是我发布文档的代码:

SolrServer server = new HttpSolrServer("http://localhost:8983/solr/myCore");
Collection<SolrInputDocument> docs = new ArrayList<SolrInputDocument>();
SolrInputDocument doc1 = new SolrInputDocument();
doc1.addField("myString", myString);
docs.add(doc1);

server.add(docs);
server.commit()

我的文档大小为34375个字符。我已经尝试将文档拆分为更小的尺寸,并且工作正常,没有任何问题。发布文件是否有限制?

0 个答案:

没有答案