使用 solrj 索引 FTP 文档

发布于 2024-12-06 07:32:26 字数 79 浏览 1 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久夏青 2024-12-13 07:32:26

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文