Project

General

Profile

Getting Started » History » Version 26

Vassilis Papavassiliou, 2012-10-26 03:59 PM

1 1 Prokopis Prokopidis
h1. Getting Started
2 2 Prokopis Prokopidis
3 2 Prokopis Prokopidis
Once you [[DeveloperSetup|build]] or [[HowToGet|download]] an ilsp-fc runnable jar, you can run it like this
4 2 Prokopis Prokopidis
5 11 Prokopis Prokopidis
<pre><code>java -jar ilsp-fc-1.1-jar-with-dependencies.jar</code></pre>
6 2 Prokopis Prokopidis
7 23 Prokopis Prokopidis
There are several settings that influence the crawling process and can be defined in the configuration file (the default file is [[crawler_config.xml]]) before the crawling process. Some of them can also be set in the command running the ilsp-fc runnable jar, as follows:
8 15 Vassilis Papavassiliou
9 22 Prokopis Prokopidis
<pre><code>-a :user agent name 
10 26 Vassilis Papavassiliou
-c :the crawl duration in minutes. Since the crawler runs in cycles (during which links stored at the top of the crawler’s frontier 
11 26 Vassilis Papavassiliou
    are extracted and new links are examined) it is very likely that the defined time will expire during a cycle run. Then, the crawler
12 26 Vassilis Papavassiliou
    will stop only after the end of the running cycle. The default value is 10 minutes.
13 20 Vassilis Papavassiliou
-n :the crawl duration in cycles. 
14 20 Vassilis Papavassiliou
-t :the number of threads that will be used to fetch web pages in parallel.
15 20 Vassilis Papavassiliou
-type : the type of crawling. Crawling for monolingual (m) or parallel (p).
16 25 Vassilis Papavassiliou
-lang : the targeted language in case of monolingual crawling.
17 25 Vassilis Papavassiliou
-l1 :  the first targeted language in case of bilingual crawling.
18 25 Vassilis Papavassiliou
-l2 :  the second targeted language in case of bilingual crawling.
19 22 Prokopis Prokopidis
</code></pre>
20 1 Prokopis Prokopidis
21 1 Prokopis Prokopidis
h2. Run a monolingual crawl
22 1 Prokopis Prokopidis
23 22 Prokopis Prokopidis
<pre><code>java -jar ilsp-fc-1.1-jar-with-dependencies.jar crawlandexport -a vpapa@ilsp.gr \
24 22 Prokopis Prokopidis
                -cfg FMC_config.xml -t 10 -type m -c 10 -lang de -of output_test1_list.txt \
25 22 Prokopis Prokopidis
                -ofh  output_test1_list.txt.html -tc Automotive-seed-terms-de.txt  \
26 22 Prokopis Prokopidis
                 -u  Automotive-seed-urls.txt -xslt -f -k</code></pre>
27 2 Prokopis Prokopidis
28 1 Prokopis Prokopidis
h2. Run a bilingual crawl
29 12 Vassilis Papavassiliou
30 14 Vassilis Papavassiliou
<pre><code>java -jar ilsp-fc-1.1-jar-with-dependencies.jar crawlandexport -a test1 -c 10 -f -k -l1 de -l2 it -t 10 -of test_HS_DE-IT_output.txt -ofh  test_HS_DE-IT_output.txt.html -tc HS_DE-IT_topic.txt -type p -xslt -u  seed_suva.txt -cfg FBC_config.xml</code></pre>
31 12 Vassilis Papavassiliou
32 2 Prokopis Prokopidis
33 2 Prokopis Prokopidis
h2. Example of java code
34 9 Prokopis Prokopidis
35 2 Prokopis Prokopidis
<pre>
36 2 Prokopis Prokopidis
<code class="java">
37 2 Prokopis Prokopidis
package gr.ilsp.fmc.classifier;
38 2 Prokopis Prokopidis
39 2 Prokopis Prokopidis
public enum ClassifierCounters {
40 2 Prokopis Prokopidis
    CLASSIFIER_DOCUMENTS_PASSED,   // successfully classified a document.
41 1 Prokopis Prokopidis
    CLASSIFIER_DOCUMENTS_FAILED,   // failed to classify a document
42 2 Prokopis Prokopidis
    CLASSIFIER_DOCUMENTS_ABORTED, 
43 2 Prokopis Prokopidis
    CLASSIFIER_TIME
44 8 Prokopis Prokopidis
}</code></pre>
45 2 Prokopis Prokopidis
46 2 Prokopis Prokopidis
<pre>
47 1 Prokopis Prokopidis
<code class="xml">
48 2 Prokopis Prokopidis
<?xml version="1.0" encoding="UTF-8"?>
49 2 Prokopis Prokopidis
<configuration>
50 2 Prokopis Prokopidis
        <agent>
51 2 Prokopis Prokopidis
                <email>yourmail@mail.com</email>
52 2 Prokopis Prokopidis
                <web_address>www.youraddress.com</web_address>
53 2 Prokopis Prokopidis
        </agent>
54 8 Prokopis Prokopidis
</configuration></code></pre>