亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Nutch2.2.1介紹及用法

發布時間:2021-08-21 19:48:51 來源:億速云 閱讀:139 作者:chen 欄目:云計算

這篇文章主要講解了“ Nutch2.2.1介紹及用法”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“ Nutch2.2.1介紹及用法”吧!

1. Nutch介紹

Nutch是一個開源的網絡爬蟲項目,更具體些是一個爬蟲軟件,可以直接用于抓取網頁內容。

現在Nutch分為兩個版本,1.x和2.x。1.x最新版本為1.7,2.x最新版本為2.2.1。兩個版本的主要區別在于底層的存儲不同。

1.x版本是基于Hadoop架構的,底層存儲使用的是HDFS,而2.x通過使用Apache Gora,使得Nutch可以訪問HBase、Accumulo、Cassandra、MySQL、DataFileAvroStore、AvroStore等NoSQL

2. 編譯Nutch

Nutch2.x從1.7版本開始不再提供完整的部署文件,只提供源代碼文件及相關的build.xml文件,這就要求用戶自己編譯Nutch,而整個Nutch3.x版本都不提供編譯完成的文件,所以想要學習Nutch3.2.1的功能,就必須自己手動編譯文件。

2.1 下載解壓

$ wget http://archive.apache.org/dist/nutch/2.2.1/apache-nutch-2.2.1-src.tar.gz $ tar zxf apache-nutch-2.2.1-src.tar.gz

2.2 編譯

$ cd apache-nutch-2.2.1 $ ant

有可能你會得到如下錯誤:

Trying to override old definition of task javac
  [taskdef] Could not load definitions from resource org/sonar/ant/antlib.xml. It could not be found.

ivy-probe-antlib:

ivy-download:
  [taskdef] Could not load definitions from resource org/sonar/ant/antlib.xml. It could not be found.

解決辦法:

  1. 下載sonar-ant-task-2.1.jar,將其拷貝到apache-nutch-2.2.1目錄下面

  2. 修改build.xml,引入上面添加的jar包:

<!-- Define the Sonar task if this hasn't been done in a common script --> <taskdef uri="antlib:org.sonar.ant" resource="org/sonar/ant/antlib.xml"> <classpath path="${ant.library.dir}" /> <classpath path="${mysql.library.dir}" /> <classpath><fileset dir="." includes="sonar*.jar" /></classpath> </taskdef>

Nutch使用ivy進行構建,故編譯需要很長時間,如果編譯時間過長,建議修改maven倉庫地址,修改方法:

通過用http://mirrors.ibiblio.org/maven2/替換ivy/下ivysettings.xml中的http://repo1.maven.org/maven2/來解決。代碼位置為:

<property name="repo.maven.org" value="http://repo1.maven.org/maven2/" override="false"/>

編譯之后的目錄如下:

?  apache-nutch-2.2.1  tree -L 1
.
├── CHANGES.txt
├── LICENSE.txt
├── NOTICE.txt
├── README.txt
├── build
├── build.xml
├── conf
├── default.properties
├── docs
├── ivy
├── lib
├── runtime
├── sonar-ant-task-2.1.jar
└── src

7 directories, 7 files

可以看到編譯之后多了兩個目錄:build和runtime

3. 修改配置文件

由于Nutch3.x版本存儲采用Gora訪問Cassandra、HBase、Accumulo、Avro等,需要在該文件中制定Gora屬性,比如指定默認的存儲方式gora.datastore.default= org.apache.gora.hbase.store.HBaseStore,該屬性的值可以在nutch-default.xml中查找storage.data.store.class屬性取得,在不做gora.properties文件修改的情況下,存儲類為org.apache.gora.memory.store.MemStore,該類將數據存儲在內存中,僅用于測試目的。

這里,將其存儲方式改為HBase,請參考 http://wiki.apache.org/nutch/Nutch3Tutorial。

修改 conf/nutch-site.xml

<property> <name>storage.data.store.class</name> <value>org.apache.gora.hbase.store.HBaseStore</value> <description>Default class for storing data</description> </property>

修改 ivy/ivy.xml

<!-- Uncomment this to use HBase as Gora backend. --> <dependency org="org.apache.gora" name="gora-hbase" rev="0.3" conf="*->default" />

修改 conf/gora.properties,確保HBaseStore被設置為默認的存儲,

gora.datastore.default=org.apache.gora.hbase.store.HBaseStore

因為這里用到了HBase,故還需要一個HBase環境,你可以使用Standalone模式搭建一個HBase環境,請參考 HBase Quick Start。需要說明的時,目前HBase的版本要求為 hbase-0.90.4。

4. 集成Solr

由于建索引的時候需要使用Solr,因此我們需要安裝并啟動一個Solr服務器

4.1 下載,解壓

$ wget http://mirrors.cnnic.cn/apache/lucene/solr/4.8.0/solr-4.8.0.tgz $ tar -zxf solr-4.8.0.tgz

4.2 運行Solr

$ cd solr-4.8.0/example $ java -jar start.jar

驗證是否啟動成功

用瀏覽器打開 http://localhost:8983/solr/admin/,如果能看到頁面,說明啟動成功。

4.3 修改Solr配置文件

將apache-nutch-2.2.1/conf/schema-solr4.xml拷貝到solr-4.8.0/solr/collection1/conf/schema.xml,并在<fields>...</fields>最后添加一行:

<field name="_version_" type="long" indexed="true" stored="true" multiValued="false"/>

重啟Solr,

# Ctrl+C to stop Solr $ java -jar start.jar

5. 抓取數據

編譯后的腳本在 runtime/local/bin 目錄下,可以運行命令查看使用方法:

crawl命令:

$ cd runtime/local/bin $ ./crawl 
Missing seedDir : crawl <seedDir> <crawlID> <solrURL> <numberOfRounds>

nutch命令:

$ ./nutch 
Usage: nutch COMMAND
where COMMAND is one of:
 inject     inject new urls into the database
 hostinject     creates or updates an existing host table from a text file
 generate   generate new batches to fetch from crawl db
 fetch      fetch URLs marked during generate
 parse      parse URLs marked during fetch
 updatedb   update web table after parsing
 updatehostdb   update host table after parsing
 readdb read/dump records from page database
 readhostdb     display entries from the hostDB
 elasticindex   run the elasticsearch indexer
 solrindex  run the solr indexer on parsed batches
 solrdedup  remove duplicates from solr
 parsechecker   check the parser for a given url
 indexchecker   check the indexing filters for a given url
 plugin     load a plugin and run one of its classes main() nutchserver    run a (local) Nutch server on a user defined port
 junit          runs the given JUnit test  or
 CLASSNAME  run the class named CLASSNAME
Most commands print help when invoked w/o parameters.

接下來可以抓取網頁了。

感謝各位的閱讀,以上就是“ Nutch2.2.1介紹及用法”的內容了,經過本文的學習后,相信大家對 Nutch2.2.1介紹及用法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

克拉玛依市| 霍邱县| 汕头市| 宁化县| 辛集市| 伊吾县| 南丰县| 义马市| 沈阳市| 中西区| 项城市| 沂南县| 临漳县| 浪卡子县| 封丘县| 沧州市| 岢岚县| 乐业县| 东至县| 临邑县| 乌什县| 天长市| 宜城市| 榕江县| 英吉沙县| 莆田市| 新余市| 桂阳县| 浠水县| 瑞丽市| 会东县| 丹凤县| 紫金县| 全椒县| 泗阳县| 正定县| 西安市| 长丰县| 丰原市| 邵阳市| 阿拉尔市|