首页 > 代码库 > solr4.7 DIH的Abort Import无法中断导入

solr4.7 DIH的Abort Import无法中断导入

通过solr自带的图形界面上中断DIH无效
在此输入图片描述

浏览器debug发现是POST提交,返回响应:
{“error”:{“msg”:“Must specify a Content-Type header with POST requests”,“code”:415}}
Google一把,跟默认content-type的处理有关,相关信息链接:
https://github.com/mausch/SolrNet/issues/142
https://issues.apache.org/jira/browse/SOLR-5517
https://issues.apache.org/jira/browse/SOLR-6475
此版本的解决方式可以改为GET方式提交,直接请求:
http://ip:8983/solr/shop/dataimport?command=abort

solr4.7 DIH的Abort Import无法中断导入