使用 solrj 索引 FTP 文档
我想使用 solrj API 索引一些文档,但这些文档的 URL 是 FTP。
如何在solrj中设置FTP帐户的用户名和密码?
I want to index some documents with solrj API's but the URL of these documents is FTP.
How to set username and password for FTP acount in solrj?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UpdateRequest - Stream.url 不支持身份验证
我们必须添加一个自定义补丁来为其添加身份验证@ https://issues.apache。 org/jira/browse/SOLR-2240
建议 -
1.通过http暴露内容,无需认证,使用stream.url
2. 使用java中的auth从ftp读取文件,并使用stream.body将内容作为流传递。
UpdateRequest - stream.url does not support authentication
We had to add a custom patch to add authentication to it @ https://issues.apache.org/jira/browse/SOLR-2240
Suggestions -
1. Expose the content through http without authentication and use stream.url
2. Read the file from ftp with auth in java and use the stream.body to pass the content as stream.