日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

nutch2.1在windows平台上使用eclipsedebug 存储在mysql的搭建过程

發(fā)布時間:2023/12/10 数据库 25 豆豆
生活随笔 收集整理的這篇文章主要介紹了 nutch2.1在windows平台上使用eclipsedebug 存储在mysql的搭建过程 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

步驟1:準備好eclipse、eclipse svn插件、mysql準備好,mysql使用utf-8編碼

步驟2:mysql建庫,建表:

CREATE?DATABASE?nutch?;?? ? ? ? ? ?? CREATE TABLE `webpage` ( `id` varchar(767) NOT NULL, `headers` blob, `text` mediumtext DEFAULT NULL, `status` int(11) DEFAULT NULL, `markers` blob, `parseStatus` blob, `modifiedTime` bigint(20) DEFAULT NULL, `score` float DEFAULT NULL, `typ` varchar(32) CHARACTER SET latin1 DEFAULT NULL, `baseUrl` varchar(767) DEFAULT NULL, `content` longblob, `title` varchar(2048) DEFAULT NULL, `reprUrl` varchar(767) DEFAULT NULL, `fetchInterval` int(11) DEFAULT NULL, `prevFetchTime` bigint(20) DEFAULT NULL, `inlinks` mediumblob, `prevSignature` blob, `outlinks` mediumblob, `fetchTime` bigint(20) DEFAULT NULL, `retriesSinceFetch` int(11) DEFAULT NULL, `protocolStatus` blob, `signature` blob, `metadata` blob, PRIMARY KEY (`id`) ) ENGINE=InnoDB ROW_FORMAT=COMPRESSED DEFAULT CHARSET=utf8mb4;

`id` varchar(767) NOT NULL 這個在我本機是不能成功的,只能最大設置為100 所以改為:`id` varchar(100) NOT NULL

步驟3:從?https://svn.apache.org/repos/asf/nutch/tags/release-2.1? 拉下代碼,在本地創(chuàng)建java project。本人因為試驗過很多次,所以在此取項目名稱為test。

步驟4:加src文件

在project explorer下右擊項目,選擇properties。進入java build path ,在source選項卡,刪除src文件夾,選擇“Add Folder?”,在這里把conf,src/bin,src/java,src/test,src/testresources,以及src/plugin文件夾下各個插件的src和test也加入進來。最終可以看到如下界面(test為項目名稱):

在每個eclipse 項目文件夾下有 .classpath文件,打開?.classpath文件能看到:內容基本是這樣的。 <classpathentry kind="src" path="conf"/> <classpathentry kind="src" path="src/java"/> <classpathentry kind="src" path="src/test"/> <classpathentry kind="src" path="src/plugin/protocol-file/src/test"/> <classpathentry kind="src" path="src/plugin/protocol-httpclient/src/test"/> <classpathentry kind="src" path="src/plugin/subcollection/src/test"/> <classpathentry kind="src" path="src/plugin/parse-html/src/test"/> <classpathentry kind="src" path="src/plugin/urlfilter-automaton/src/test"/> <classpathentry kind="src" path="src/plugin/parse-html/src/java"/> <classpathentry kind="src" path="src/plugin/parse-tika/src/test"/> <classpathentry kind="src" path="src/plugin/lib-http/src/test"/> <classpathentry kind="src" path="src/plugin/parse-tika/src/java"/> <classpathentry kind="src" path="src/plugin/urlfilter-regex/src/java"/> <classpathentry kind="src" path="src/plugin/urlfilter-domain/src/java"/> <classpathentry kind="src" path="src/plugin/scoring-link/src/java"/> <classpathentry kind="src" path="src/plugin/index-anchor/src/test"/> <classpathentry kind="src" path="src/plugin/protocol-http/src/java"/> <classpathentry kind="src" path="src/plugin/urlnormalizer-regex/src/test"/> <classpathentry kind="src" path="src/plugin/urlfilter-prefix/src/java"/> <classpathentry kind="src" path="src/plugin/scoring-opic/src/java"/> <classpathentry kind="src" path="src/plugin/urlfilter-domain/src/test"/> <classpathentry kind="src" path="src/plugin/protocol-file/src/java"/> <classpathentry kind="src" path="src/plugin/urlnormalizer-regex/src/java"/> <classpathentry kind="src" path="src/plugin/urlfilter-suffix/src/java"/> <classpathentry kind="src" path="src/plugin/language-identifier/src/java"/> <classpathentry kind="src" path="src/plugin/lib-regex-filter/src/test"/> <classpathentry kind="src" path="src/plugin/language-identifier/src/test"/> <classpathentry kind="src" path="src/plugin/subcollection/src/java"/> <classpathentry kind="src" path="src/plugin/urlnormalizer-basic/src/test"/> <classpathentry kind="src" path="src/plugin/index-basic/src/java"/> <classpathentry kind="src" path="src/plugin/urlnormalizer-pass/src/test"/> <classpathentry kind="src" path="src/plugin/creativecommons/src/java"/> <classpathentry kind="src" path="src/bin"/> <classpathentry kind="src" path="src/plugin/protocol-httpclient/src/java"/> <classpathentry kind="src" path="src/plugin/tld/src/java"/> <classpathentry kind="src" path="src/plugin/urlnormalizer-basic/src/java"/> <classpathentry kind="src" path="src/plugin/index-basic/src/test"/> <classpathentry kind="src" path="src/plugin/lib-http/src/java"/> <classpathentry kind="src" path="src/plugin/protocol-ftp/src/java"/> <classpathentry kind="src" path="src/plugin/index-anchor/src/java"/> <classpathentry kind="src" path="src/plugin/urlfilter-validator/src/java"/> <classpathentry kind="src" path="src/plugin/index-more/src/java"/> <classpathentry kind="src" path="src/plugin/urlfilter-suffix/src/test"/> <classpathentry kind="src" path="src/plugin/creativecommons/src/test"/> <classpathentry kind="src" path="src/plugin/microformats-reltag/src/java"/> <classpathentry kind="src" path="src/plugin/urlfilter-regex/src/test"/> <classpathentry kind="src" path="src/plugin/lib-regex-filter/src/java"/> <classpathentry kind="src" path="src/plugin/index-more/src/test"/> <classpathentry kind="src" path="src/plugin/urlnormalizer-pass/src/java"/> <classpathentry kind="src" path="src/plugin/urlfilter-automaton/src/java"/> <classpathentry kind="src" path="src/testresources"/>

步驟5:加入lib包:

?? ? ? 切換到Libaries選項卡,“Add Library"->"IvyDE Managed Dependencies"->"Next",選擇“Project”,選擇ivy\ivy.xml文件。點 Ok。eclipse會自動下載依賴的jar包。

在這個過程中或許會報錯,看到錯誤信息是因為org.restlet.jse包下載不到。解決方法是:ivy\ivy.xml中找到 <dependency?org="org.restlet.jse"?name="org.restlet"?rev="2.0.5"?conf="*->default"?/> ????<dependency?org="org.restlet.jse"?name="org.restlet.ext.jackson"?rev="2.0.5"? ??????conf="*->default"?/> 部分,注釋掉。在網(wǎng)上手動找到這兩個包,放在lib包下,加入到Libaries中。
接著加入plugin文件夾下各個插件的ivy.xml文件。手動一個一個加進去。

步驟6:在"Order and Export"選項卡,將 conf ? ?top

步驟7:數(shù)據(jù)庫配置以及其他配置信息

打開/conf/gora.properties?,刪除文件中所有內容,寫入mysql配置: ############################### #?MySQL?properties????????????# ############################### gora.sqlstore.jdbc.driver=com.mysql.jdbc.Driver gora.sqlstore.jdbc.url=jdbc:mysql://localhost:3306/nutch?createDatabaseIfNotExist=true gora.sqlstore.jdbc.user=root gora.sqlstore.jdbc.password=123456

在/conf/gora-sql-mapping.xml?修改 ?<primarykey?column="id"?length="240"/>?/conf/nutch-site.xml輸入: <property> <name>http.agent.name</name> <value>Your Nutch Spider</value> </property>
<property> <name>http.accept.language</name> <value>ja-jp, en-us,en-gb,en;q=0.7,*;q=0.3</value> <description>Value of the “Accept-Language” request header field. This allows selecting non-English language as default one to retrieve. It is a useful setting for search engines build for certain national group. </description> </property>
<property> <name>parser.character.encoding.default</name> <value>utf-8</value> <description>The character encoding to fall back to when no other information is available</description> </property>
<property> ? <name>plugin.includes</name> ?<value>protocol-httpclient|protocol-http|urlfilter-regex|parse-(html|tika)|index-(basic|anchor)|urlnormalizer-(pass|regex|basic)|scoring-opic</value> ?<description>Regular expression naming plugin directory names to ? include. ?Any plugin not matching this expression is excluded. ? In any case you need at least include the nutch-extensionpoints plugin. By ? default Nutch includes crawling just HTML and plain text via HTTP, ? and basic indexing and search plugins. In order to use HTTPS please enable? ? protocol-httpclient, but be aware of possible intermittent problems with the? ? underlying commons-httpclient library. ? </description> </property>
<property> <name>storage.data.store.class</name> <value>org.apache.gora.sql.store.SqlStore</value> <description>The Gora DataStore class for storing and retrieving data. Currently the following stores are available: …. </description> </property>
<property> ? <name>plugin.folders</name> ? <value>./src/plugin</value> ? <description>Directories where nutch plugins are located. ?Each ? element may be a relative or absolute path. ?If absolute, it is used ? as is. ?If relative, it is searched for on the classpath.</description> </property>?
在根目錄下的build.xml中找到如下代碼
  • <target?name="resolve-default"?depends="clean-lib,?init"?description="-->?resolve?and?retrieve?dependencies?with?ivy">??
  • ??<ivy:resolve?file="${ivy.file}"?conf="default"?log="download-only"?/>??
  • ??<ivy:retrieve?pattern="${build.lib.dir}/[artifact]-[revision].[ext]"?symlink="false"?log="quiet"?/>??
  • ??<antcall?target="copy-libs"?/>??
  • ?</target>??
  • 將pattern="${build.lib.dir}/[artifact]-[revision].[ext]"替換為pattern="${build.lib.dir}/[artifact]-[type]-[revision].[ext]"

    步驟8:配置抓取url

    在test項目下創(chuàng)建文件夾urls,在urls下創(chuàng)建文件seeds.txt ,寫你要抓取的網(wǎng)站。我寫的是http://www.163.com。

    步驟9:運行org.apache.nutch.crawl.Crawler

    打開Crawler文件,“Run As” -> “Run Configurations” ,在“Arguments”選項卡的“Program Arguments”,輸入 ? “urls -depth 3 -topN 5”,點"Run"。哈哈,報錯了吧。報錯信息類似于“?Failed?to?set?permissions?of?path:?\tmp\hadoop-Administrator\mapred\staging\Administrator1712398257\.??”的錯誤。這是hadoop的一個問題。解決方法是,修改/hadoop-1.0.2/src/core/org/apache/hadoop/fs/FileUtil.java里面的checkReturnValue,注釋掉即可。當然最簡單的辦法是在網(wǎng)上找一個修改過的包,替換一下FileUtil.class。 再次運行,哈哈 執(zhí)行成功到此結束。
    祝各位好運吧。

    參考資料:

    http://cosmo1987.iteye.com/blog/1826971 http://nlp.solutions.asia/?p=180 http://wiki.apache.org/nutch/RunNutchInEclipse? 遇到的問題: 1?報?Exception?in?thread?"main"?java.lang.RuntimeException:?job?failed:?name=parse,?jobid=job_local_0004 根據(jù)在網(wǎng)上查到的問題可能很多首先 nutch-default.xml 中配置?<name>plugin.folders</name><value>./src/plugin</value> ??其次查找?hadoop.log文件。

    總結

    以上是生活随笔為你收集整理的nutch2.1在windows平台上使用eclipsedebug 存储在mysql的搭建过程的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。