0

データ インポート ハンドラーを使用して、solr で mysql データベースのインデックスを作成したいと考えています。

テーブルを2つ作りました。最初のテーブルは、ファイルのメタデータを保持します。

create table filemetadata (
id varchar(20) primary key ,
filename varchar(50),
path varchar(200),
size varchar(10),
author varchar(50)
) ;

+-------+-------------+---------+------+---------+
| id    | filename    | path    | size | author  | 
+-------+-------------+---------+------+---------+
| 1     | abc.txt     | c:\files| 2kb  | eric    | 
+-------+-------------+---------+------+---------+
| 2     | xyz.docx    | c:\files| 5kb  | john    | 
+-------+-------------+---------+------+---------+
| 3     | pqr.txt     |c:\files | 10kb | mike    | 
+-------+-------------+---------+------+---------+

2 番目のテーブルには、上記のテーブルの特定のファイルに関する「お気に入り」の情報が含まれています。

create table filefav (
fid varchar(20) primary key ,
id varchar(20),
favouritedby varchar(300),
favouritedtime varchar(10),
FOREIGN KEY (id) REFERENCES filemetadata(id) 
) ;

+--------+------+-----------------+----------------+
| fid    | id   | favouritedby    | favouritedtime | 
+--------+------+-----------------+----------------+
| 1      | 1    | ross            | 22:30          | 
+--------+------+-----------------+----------------+
| 2      | 1    | josh            | 12:56          | 
+--------+------+-----------------+----------------+
| 3      | 2    | johny           | 03:03          | 
+--------+------+-----------------+----------------+
| 4      | 2    | sean            | 03:45          | 
+--------+------+-----------------+----------------+

ここで、「id」は外部キーです。2 番目の表は、どのユーザーがどのドキュメントをお気に入りとしてマークしたかを示しています。たとえば、id = 1 で表されるファイル abc.txt は、ross と josh によってお気に入りとしてマークされています (お気に入りの列を参照)。 .

次のようにファイルにインデックスを付けたい:

各ドキュメントには次のフィールドが必要です

id       - to be taken from the first table filemetadata
filename - to be taken from the first table filemetadata
path     - to be taken from the first table filemetadata
size     - to be taken from the first table filemetadata
author   - to be taken from the first table filemetadata
Favouritedby - this field should contain the names of all the people from table 2 filefav (from the favouritedby column) who like that particular file.

たとえば、インデックス作成後、ドキュメント 1 は次のようになります。

id = 1
filename = abc.txt
path = c:\files
size = 2kb
author = eric
favourited by - ross , josh 

どうすればこれを達成できますか?

次のようにdata-config.xml(望ましい結果が得られない)を作成しました

<dataConfig>
<dataSource type="JdbcDataSource" driver="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/test" user="root" password="root" /> 
<document name="filemetadata">

<entity name="restaurant" query="select * from filemetadata">
<field column="id" name="id" /> 

 <entity name="filefav" query="select favouritedby from filefav where id=${filemetadata.id}">
<field column="favouritedby" name="favouritedby1" />
</entity>

<field column="filename" name="name1" /> 
<field column="path" name="path1" /> 
<field column="size" name="size1" /> 
<field column="author" name="author1" />  

</entity>
</document>
</dataConfig>

誰かがこれを達成する方法を説明できますか?

4

0 に答える 0