使用solr在oracle中索引clob列

发布于 2024-11-25 22:05:33 字数 114 浏览 2 评论 0原文

我无法使用我的 solr 索引 clob clumn。我尝试使用 clob Transformer ,但它不起作用。

关于如何使用 solr 索引在 oracle 中索引 clob 列有什么想法吗?

I am unable to index the clob clumn using my solr. I tried using clob transformer , but it doesn't work.

ANy idea on how to index a clob column in oracle using solr indexing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

煮酒 2024-12-02 22:05:33
  <entity name="***" query="***" transformer="ClobTransformer" >
      <field column="CLOB_COLUMN" name="CLOB_COLUMN" clob="true" />
  </entity>

对我有用。也许您混合了小写和大写?在 ClobTransformer.java 中调试并设置断点

  <entity name="***" query="***" transformer="ClobTransformer" >
      <field column="CLOB_COLUMN" name="CLOB_COLUMN" clob="true" />
  </entity>

Works for me. Maybe you are mixing lower and uppercase? Debug and set a breakpoint in ClobTransformer.java

终陌 2024-12-02 22:05:33

我认为问题是 LOB 通常是原始二进制数据。
因此,只有在转换 LOB 后,您确定该 LOB 的内容是 solr 可以解析的内容时,LOB 的转换才会起作用。
大多数 CLOB 用于文本 - 也许也适用于您的情况!?

我不知道为什么 clob 变压器不适合你。如果您解释一下“它不起作用”的含义 - 在您的情况下,也许它很有用。你之前尝试过什么?
通过互联网,我发现了许多与 clob 变压器相关的问题。

也许让 oracle 在将数据传递到 DHI 之前转换 CLOB 内容是一个想法。
例如,看看这个,如果 CLOB 的内容是文本: 询问汤姆

I think, the problem is, that LOB is normaly raw binary data.
So transformation of LOB will only work, if you are sure, that the content of this LOB is something which can be parsed by solr, after translating the LOB.
Mostly CLOBs are used for text - maybe also in your case!?

I don't know, why clob transformer does not work for you. Maybe it's useful, if you explain, what "it doesn't work" mean - in your case. What have you tried before?
Walking trough the Internet, I found many issues relating to problems with the clob transformer.

Maybe it's an idea to let oracle transform the CLOB content before delivering the data to the DHI.
For example look at this, if the content of the CLOB is text: ask-tom

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