Personal tools

Webarc:MediaWiki-to-TREC Converter

From Adapt

Jump to: navigation, search

What It Does

This tool converts the default MediaWiki XML dump format to the TREC-complaint format. For our experimental purposes, it also constructs a Java Berkeley DB for each month, which we call 'Fresh DB'. A 'Fresh DB' contains records corresponding to all wiki articles updated within a month. Each record in DB has the form of { docID, (revision date, file name, offset) }.

How To Build

In Eclipse, configure a run

  1. Right-click on 'mwprep' in Package Explorer, select 'Run As.. --> Run Configurations'.
  2. On the left pane, right click on 'Java Application --> New'
  3. Enter 'mwprep' in the Name field on the right pane.
  4. Select 'mwprep' in the Project field.
  5. Select 'edu.umd.umiacs.mw.mwprep' in the Main class field
  6. Click 'Apply'
  7. Click 'Close'

In Eclipse, export mwprep as a runnable JAR.

  1. Right-click on 'mwprep' in Package Explorer, select 'export'.
  2. Select 'Runnable JAR file' and click 'Next'.
  3. Select 'mwprep - mwprep' as Launch configuration.
  4. Put mwprep.jar in Export destination.
  5. Select 'Package required libraries into generated JAR'
  6. Click 'Finish'

How To Run

In a shell terminal (or a command line prompt in Windows), change directory to where mwprep.jar is located (<your directory> above).

mkdir preprocessed-monthly
mkdir bdb-monthly
java -jar mwprep.jar < snapshots.lst>

Input File

<snapshots.lst>: A file that lists the locations of the monthly snapshots extracted from the WikiMedia XML dump. You probably want to break down the entire list into multiple smaller files and run multiple mwprep's in parallel.

Example contents in a list file:

/fs/webarc3/data/wikipedia/extracted-monthly/month-000.xml
/fs/webarc3/data/wikipedia/extracted-monthly/month-001.xml
/fs/webarc3/data/wikipedia/extracted-monthly/month-002.xml
/fs/webarc3/data/wikipedia/extracted-monthly/month-003.xml
/fs/webarc3/data/wikipedia/extracted-monthly/month-004.xml


Output Files

  1. Under the 'preprocessed-monthly' directory, TREC-complaint files. The converted file for the original XML file <filename>.xml is named as trec-<filename>.xml.
  2. Under the 'bdb-monthly' directory, directories for Fresh DBs. Each directory corresponds to a DB which in turn corresponds to a single month. The DB directories are named as '<filename>-fresh'.

Notes

The names of the output directories (preprocessed-monthly and bdb-monthly) are hard-coded in edu.umd.umiacs.mw.mwprep. Change these as necessary, or even better, parameterize them.

Source Codes

svn co http://narasvn.umiacs.umd.edu/repository/src/webarc/mwprep