Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Tools to construct and process webgraphs from Common Crawl data

License

NotificationsYou must be signed in to change notification settings

commoncrawl/cc-webgraph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tools to construct and process web graphs from Common Crawl data

Compiling and Packaging Java Tools

Java 11 or upwards are required.

The Java tools are compiled and packaged byMaven. If Maven is installed just runmvn package. Now the Java tools can be run via

java -cp target/cc-webgraph-0.1-SNAPSHOT-jar-with-dependencies.jar <classname> <args>...

The assembly jar file includes also theWebGraph andLAW packages required to computePageRank andHarmonic Centrality.

Javadocs

The Javadocs are created bymvn javadoc:javadoc. Then open the filetarget/site/apidocs/index.html in a browser.

Memory and Disk Requirements

Note that the webgraphs are usually multiple Gigabytes in size and require for processing

  • a sufficient Java heap size (Java option-Xmx)
  • enough disk space to store the graphs and temporary data.

The exact requirements depend on the graph size and the task – graph exploration or ranking, etc.

Construction and Ranking of Host- and Domain-Level Web Graphs

Host-Level Web Graph

The host-level web graph is built with help of PySpark, the corresponding code is found in the projectcc-pyspark. Instructions are found in the scriptbuild_hostgraph.sh.

Domain-Level Web Graph

The domain-level web graph is distilled from the host-level graph by mapping host names to domain names. The ID mapping is kept in memory as an int array orFastUtil's big array if the host-level graph has more vertices than a Java array can hold (around 2³¹). The Java tool to fold the host graph is best run from the scripthost2domaingraph.sh.

Processing Graphs using the WebGraph Framework

To analyze the graph structure and calculate rankings you may further process the graphs using software from the Laboratory for Web Algorithmics (LAW) at the University of Milano, namely theWebGraph framework and theLAW library.

A couple of scripts may help you to run the WebGraph tools to build and process the graphs are provided insrc/script/webgraph_ranking/. They're also used to prepare the Common Crawl web graph releases.

To process a webgraph and rank the nodes, you should first adapt the configuration to your graph and hardware setup:

vi ./src/script/webgraph_ranking/webgraph_config.sh

After running

./src/script/webgraph_ranking/process_webgraph.sh graph_name vertices.txt.gz edges.txt.gz output_dir

theoutput_dir/ should contain all generated files, eg.graph_name.graph andgraph_name-ranks.txt.gz.

The shell script is easily adapted to your needs. Please refer to theLAW dataset tutorial, theAPI docs of LAW andwebgraph for further information.

Exploring Webgraph Data Sets

The Common Crawl webgraph data sets are announced on theCommon Crawl web site.

For instructions how to explore the webgraphs using the JShell please see the tutorialInteractive Graph Exploration. For an older approach usingJython andpyWebGraph, see thecc-notebooks project.

Credits

Thanks to the authors of theWebGraph framework used to process the graphs and compute page rank and harmonic centrality. See also Sebastiano Vigna's projectswebgraph andwebgraph-big.

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp