前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >使用solr从mysql数据中导入数据

使用solr从mysql数据中导入数据

作者头像
用户5927264
发布2019-08-01 10:06:31
1.6K0
发布2019-08-01 10:06:31
举报
文章被收录于专栏:OSChina

1 导入需要的驱动文件

2 在solrconfig.xml文件中添加

代码语言:javascript
复制
  <!--  -->
  <requestHandler name="/dataimport"
     class="org.apache.solr.handler.dataimport.DataImportHandler"> 
       <lst name="defaults"> 
          <str name="config">data-config.xml</str> 
       </lst> 
  </requestHandler>

3 在同级目录下建立data-config.xml文件

4 在data-config.xml文件中添加数据库配置

代码语言:javascript
复制
<?xml version="1.0" encoding="UTF-8" ?>
<dataConfig>  
  <dataSource type="JdbcDataSource"
			  driver="com.mysql.jdbc.Driver"
			  url="jdbc:mysql://129.0.0.1:3306/alphago_xj_1018_2"
			  user="root"
			  password="shiye"/>  
  <document>  
	  <entity name="persionSHI"
			  query="SELECT id,pr_name,pr_ethnic,pr_education,pr_jobcareer FROM ag_prisoner">  
		   <field column="id" name="id" />  
		   <field column="pr_name" name="prName" />  
		   <field column="pr_ethnic" name="prEthnic"/>
		   <field column="pr_education"name="prEducation"/>
		   <field column="pr_jobcareer"name="prJobcareer"/> 
	  </entity>  
 </document> 
</dataConfig>

5 在schema.xml文件中添加 上面对应的那么的配置

代码语言:javascript
复制
<!--field-->
	<field name="prName" type="string" indexed="true" stored="true"/>
	<field name="prEthnic" type="text_ik" indexed="true" stored="true"/>
	<field name="prEducation" type="text_ik" indexed="true" stored="true"/>
	<field name="prJobcareer" type="string" indexed="true" stored="true"/>
	
	<!---->
	<field name="persion_keywords" type="text_ik" indexed="true" stored="true" multiValued="true"/>
	<copyField source="prName" dest="persion_keywords"/>
	<copyField source="prJobcareer" dest="persion_keywords"/>
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档