使用 Solr DataImportHandler 访问 xpath 中的祖先值

发布于 2024-12-10 21:59:52 字数 936 浏览 1 评论 0原文

如果我的 xml 结构如下:

<fruit>
<apple appleId="apple_1">
 <core coreId="core_1">
  <seed>1</seed>
  <seed>2</seed>
 </core>
</apple>
<apple appleId="apple_2">
 <core coreId="core_1">
  <seed>1</seed>      
 </core>
</apple>
</fruit>

并且我希望种子成为我的 solr 模式中的文档,那么如何访问 appleId 和 coreId?

以下是我的 data-config.xml 中的相关实体定义:

<entity name="apples"
            processor="XPathEntityProcessor"
            stream="true"
            forEach="/fruit/apple/core/seed"
            url="fruit.xml"
            transformer="script:create_id"
            >
    <field column="seed_s" xpath="/fruit/apple/core/seed" />
    <field column="apple_id_s" xpath="/fruit/apple/@appleId" />
</entity>

script:create_id 为每个种子创建一个唯一的 id。

在此示例中,apple_id_s 返回为 null。

If my xml is structured like so:

<fruit>
<apple appleId="apple_1">
 <core coreId="core_1">
  <seed>1</seed>
  <seed>2</seed>
 </core>
</apple>
<apple appleId="apple_2">
 <core coreId="core_1">
  <seed>1</seed>      
 </core>
</apple>
</fruit>

and I want the seeds to be the documents in my solr schema, how can I access the appleId and coreId?

Here's the pertinent entity definition from my data-config.xml:

<entity name="apples"
            processor="XPathEntityProcessor"
            stream="true"
            forEach="/fruit/apple/core/seed"
            url="fruit.xml"
            transformer="script:create_id"
            >
    <field column="seed_s" xpath="/fruit/apple/core/seed" />
    <field column="apple_id_s" xpath="/fruit/apple/@appleId" />
</entity>

script:create_id creates a unique id for each seed.

In this example, apple_id_s is coming back as null.

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

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

发布评论

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

评论(1

花想c 2024-12-17 21:59:52

我发现了问题。我需要使用 commonField="true" 并确保循环遍历每个苹果和核心。另外,我需要设置 pk="seed_s" 来触发 solr 存储文档。

这是我的新实体定义:

<entity name="apples"
        processor="XPathEntityProcessor"
        stream="true"
        pk="seed_s"
        forEach="/fruit/apple/core/seed | /fruit/apple | /fruit/apple/core"
        url="fruit.xml"
        transformer="script:create_id"
        >
<field column="seed_s" xpath="/fruit/apple/core/seed" />
<field column="apple_id_s" xpath="/fruit/apple/@appleId" commonField="true"/>
<field column="core_id_s" xpath="/fruit/apple/core/@coreId" commonField="true"/>

I found the problem. I need to use commonField="true" and make sure to loop through each apple and core. Also, I need to set the pk="seed_s" which triggers solr to store the document.

Here's my new entity definition:

<entity name="apples"
        processor="XPathEntityProcessor"
        stream="true"
        pk="seed_s"
        forEach="/fruit/apple/core/seed | /fruit/apple | /fruit/apple/core"
        url="fruit.xml"
        transformer="script:create_id"
        >
<field column="seed_s" xpath="/fruit/apple/core/seed" />
<field column="apple_id_s" xpath="/fruit/apple/@appleId" commonField="true"/>
<field column="core_id_s" xpath="/fruit/apple/core/@coreId" commonField="true"/>

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