我想从表中导入数据并使用 solr 对其进行索引。我正在使用 solr-tomcat 管理面板。
但每当我查询时,它只返回给我 id 和value。我也尝试将 FIELDS 添加到 fl ,但这也无济于事。
这是我的 data-config.xml 文件:
<dataConfig>
<dataSource type="JdbcDataSource"
driver="com.mysql.jdbc.Driver"
url="jdbc:mysql://127.0.0.1:3306/{DB_NAME}"
user="{DB_USER}"
password="{DB_PASSS}"
/>
<document>
<entity name="id" query="select s3_location,file_name from video">
<field column="s3_location" name="s3_location"/>
<field column="file_name" name="file_name"/>
</entity>
</document>
</dataConfig>
有没有办法获得上述 s3_location 和 file_name 字段。