如何将时间序列数据插入Solr?

时间:2018-06-29 09:42:08

标签: solr time-series

我有一个名为chronix的Solr集合。

我也已经配置了chronix,但是当我在chronix JAVA FX上发出查询时,它会抛出这样的错误-

2018-06-29 09:30:16.611 INFO  (qtp761960786-20) [   x:chronix] o.a.s.c.S.Request [chronix]  webapp=/solr path=/select params={q=*:*&fl=%2Bdata&start=0&rows=200&wt=javabin&version=2} status=500 QTime=1
2018-06-29 09:30:16.611 ERROR (qtp761960786-20) [   x:chronix] o.a.s.s.HttpSolrCall null:java.lang.NumberFormatException: For input string: "+"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)

我想念什么?

1 个答案:

答案 0 :(得分:0)

您的+参数中的值前面有一个flfl参数应包含要检索的字段列表,此处的+不是有效的字段名称。

要返回字段data,请使用&fl=data,而不是&fl=+data%2B+的URL编码版本)