SociaLite is a high-level query language for distributed graph analysis. In SociaLite, analysis programs are implemented in high-level queries, that are compiled to parallel/distributed code. The compiled code is highly optimized, and can run as fast as three orders of magnitude (1000x) faster than equivalent Hadoop programs on InfiniBand network.
SociaLite is Hadoop compatible, hence SociaLite queries can read data on HDFS (Hadoop Distributed File System). With its Java and Python extension, SociaLite queries can read data from other input sources such as Amazon S3 or relational databases.
Its integration with Python makes it convenient to implement graph mining algorithms in SociaLite. Many well-known algorithms such as PageRank, K-Means clustering, or Logistic Regression can be implemented in just a few lines of SociaLite queries and a couple of Python functions.
Interested? Read the quick tutorial
Guide
run pagerank in IDE
1.launch Intellij Idea
2.open the project 'socialite'
3.for running the pagerank, locate the file '[project path]/examples/prog2.dl', correct the path for 'edge' and 'node'
4.click on the menu "Run" - "Edit Configurations", type in Main class "socialite.async.SharedMemEntry", VM options -Dlog4j.configuration=file:/home/liang/socialite/conf/log4j.properties and program arguments "/home/liang/socialite/examples/prog2.dl"
There is a mistake in prog2.dl, you should change the line 5 to "PRIORITY_TYPE = LOCAL" and line 7 to 'ENGINE_TYPE = ASYNC', because I fogot to update the prog2.dl to new version, but you can reference the examples/PageRank/Google.dl, this file is correct.