Presentation is loading. Please wait.

Presentation is loading. Please wait.

DATA INTENSIVE QUERY PROCESSING FOR LARGE RDF GRAPHS USING CLOUD COMPUTING TOOLS Mohammad Farhan Husain Dr. Latifur Khan Dr. Bhavani Thuraisingham Department.

Similar presentations


Presentation on theme: "DATA INTENSIVE QUERY PROCESSING FOR LARGE RDF GRAPHS USING CLOUD COMPUTING TOOLS Mohammad Farhan Husain Dr. Latifur Khan Dr. Bhavani Thuraisingham Department."— Presentation transcript:

1 DATA INTENSIVE QUERY PROCESSING FOR LARGE RDF GRAPHS USING CLOUD COMPUTING TOOLS Mohammad Farhan Husain Dr. Latifur Khan Dr. Bhavani Thuraisingham Department of Computer Science University of Texas at Dallas

2 Outline  Semantic Web Technologies & Cloud Computing Frameworks  Goal & Motivation  Current Approaches  System Architecture & Storage Schema  SPARQL Query by MapReduce  Query Plan Generation  Experiment  Future Works

3 Semantic Web Technologies  Data in machine understandable format  Infer new knowledge  Standards  Data representation – RDF Triples Example:  Ontology – OWL, DAML  Query language - SPARQL SubjectPredicateObject http://test.com/s1foaf:name“John Smith”

4 Cloud Computing Frameworks  Proprietary  Amazon S3  Amazon EC2  Force.com  Open source tool  Hadoop – Apache’s open source implementation of Google’s proprietary GFS file system MapReduce – functional programming paradigm using key- value pairs

5 Outline  Semantic Web Technologies & Cloud Computing Frameworks  Goal & Motivation  Current Approaches  System Architecture & Storage Schema  SPARQL Query by MapReduce  Query Plan Generation  Experiment  Future Works

6 Goal  To build efficient storage using Hadoop for large amount of data (e.g. billion triples)  To build an efficient query mechanism  Publish as open source project  http://code.google.com/p/hadooprdf/ http://code.google.com/p/hadooprdf/  Integrate with Jena as a Jena Model

7 Motivation  Current Semantic Web frameworks do not scale to large number of triples, e.g.  Jena In-Memory, Jena RDB, Jena SDB  AllegroGraph  Virtuoso Universal Server  BigOWLIM  There is a lack of distributed framework and persistent storage  Hadoop uses low end hardware providing a distributed framework with high fault tolerance and reliability

8 Outline  Semantic Web Technologies & Cloud Computing Frameworks  Goal & Motivation  Current Approaches  System Architecture & Storage Schema  SPARQL Query by MapReduce  Query Plan Generation  Experiment  Future Works

9 Current Approaches  State-of-the-art approach  Store RDF data in HDFS and query through MapReduce programming (Our approach)  Traditional approach  Store data in HDFS and process query outside of Hadoop Done in BIOMANTA 1 project (details of querying could not be found) 1. http://biomanta.org/

10 Outline  Semantic Web Technologies & Cloud Computing Frameworks  Goal & Motivation  Current Approaches  System Architecture & Storage Schema  SPARQL Query by MapReduce  Query Plan Generation  Experiment  Future Works

11 System Architecture LUBM Data Generator Preprocessor N-Triples Converter Predicate Based Splitter Object Type Based Splitter Hadoop Distributed File System / Hadoop Cluster MapReduce Framework Query Rewriter Query Plan Generator Plan Executor RDF/XML Preprocessed Data 2. Jobs 3. Answer 1. Query

12 Storage Schema  Data in N-Triples  Using namespaces  Example: http://utdallas.edu/res1 utd:resource1  Predicate based Splits (PS)  Split data according to Predicates  Predicate Object based Splits (POS)  Split further according to rdf:type of Objects

13 Example D0U0:GraduateStudent20rdf:typelehigh:GraduateStudent lehigh:University0rdf:typelehigh:University D0U0:GraduateStudent20lehigh:memberOflehigh:University0 P File: rdf_type D0U0:GraduateStudent20lehigh:GraduateStudent lehigh:University0lehigh:University File: lehigh_memberOf D0U0:GraduateStudent20lehigh:University0 PS File: rdf_type_GraduateStudent D0U0:GraduateStudent20 File: rdf_type_University D0U0:University0 File: lehigh_memberOf_University D0U0:GraduateStudent20lehigh:University0 POS

14 Space Gain  Example StepsNumber of FilesSize (GB)Space Gain N-Triples2002024-- Predicate Split (PS)177.170.42% Predicate Object Split (POS)416.672.5% Data size at various steps for LUBM1000

15 Outline  Semantic Web Technologies & Cloud Computing Frameworks  Goal & Motivation  Current Approaches  System Architecture & Storage Schema  SPARQL Query by MapReduce  Query Plan Generation  Experiment  Future Works

16 SPARQL Query  SPARQL – SPARQL Protocol And RDF Query Language  Example SELECT ?x ?y WHERE { ?z foaf:name ?x ?z foaf:age ?y } Query SubjectPredicateObject http://utdallas.edu/res1foaf:name“John Smith” http://utdallas.edu/res1foaf:age“24” http://utdallas.edu/res2foaf:name“John Doe” Data ?x?y “John Smith”“24” Result

17 SPAQL Query by MapReduce  Example query SELECT ?p WHERE { ?xrdf:typelehigh:Department ?plehigh:worksFor?x ?xsubOrganizationOfhttp://University0.edu }  Rewritten query SELECT ?p WHERE { ?plehigh:worksFor_Department?x ?xsubOrganizationOfhttp://University0.edu }

18 Inside Hadoop MapReduce Job subOrganizationOf_University Department1 http://University0.edu Department2 http://University1.edu worksFor_Department Professor1Deaprtment1 Professor2Department2 Map Reduce Output WF#Professor1 Department1 SO#http://University0.edu Department1 WF#Professor1 Department2 WF#Professor2 Filtering Object == http://University0.edu INPUTINPUT MAPMAP SHUFFLE&SORTSHUFFLE&SORT REDUCEREDUCE OUTPUTOUTPUT Department1 SO#http://University0.edu WF#Professor1 Department2 WF#Professor2

19 Outline  Semantic Web Technologies & Cloud Computing Frameworks  Goal & Motivation  Current Approaches  System Architecture & Storage Schema  SPARQL Query by MapReduce  Query Plan Generation  Experiment  Future Works

20 Query Plan Generation  Challenge  One Hadoop job may not be sufficient to answer a query In a single Hadoop job, a single triple pattern cannot take part in joins on more than one variable simultaneously  Solution  Algorithm for query plan generation Query plan is a sequence of Hadoop jobs which answers the query  Exploit the fact that in a single Hadoop job, a single triple pattern can take part in more than one join on a single variable simultaneously

21 Example  Example query: SELECT ?X, ?Y, ?Z WHERE { ?Xpred1obj1 subj2?Zobj2 subj3?X?Z ?Ypred4obj4 ?Ypred5?X }  Simplified view: 1. X 2. Z 3. XZ 4. Y 5. XY

22 Join Graph &Hadoop Jobs 2 3 1 5 4 Z X X X Y Join Graph 2 3 1 5 4 Z X X X Y Valid Job 1 2 3 1 5 4 Z X X X Y Valid Job 2 2 3 1 5 4 Z X X X Y Invalid Job X

23 Possible Query Plans  A. job1: (x, xz, xy)=yz, job2: (yz, y) = z, job3: (z, z) = done 2 3 1 5 4 Z X X X Y Join Graph 2 3 1 5 4 Z X X X Y Job 1 2 1,3,5 4 Z Y Job 2 2 Job 3 1,3, 4,5 Z 1,2,3, 4,5 Result

24 Possible Query Plans  B. job1: (y, xy)=x; (z,xz)=x, job2: (x, x, x) = done 2 3 1 5 4 Z X X X Y Join Graph 2 3 1 5 4 Z X X X Y Job 1 2,3 1 4,5 X X X Job 2 1,2,3, 4,5 Result

25 Query Plan Generation  Goal: generate a minimum cost job plan  Back tracking approach  Exhaustively generates all possible plans.  Uses two coloring scheme on a graph to find jobs with colors WHITE and BLACK. Two WHITE nodes cannot be adjacent  User defined cost model.  Chooses best plan according to cost model.

26 Some Definitions  Triple Pattern,TP A triple pattern is an ordered collection of subject, predicate and object which appears in a SPARQL query WHERE clause. The subject, predicate and object can be either a variable (unbounded) or a concrete value (bounded).  Triple Pattern Join,TPJ A triple pattern join is a join between two TPs on a variable  MapReduceJoin, MRJ A MapReduceJoin is a join between two or more triple patterns on a variable.

27 Some Definitions  Job, JB A job JB is a Hadoop job where one or more MRJs are done. JB has a set of input files and a set of output files.  Conflicting MapReduceJoins, CMRJ A job JB is a Hadoop job where one or more MRJs are done. JB has a set of input files and a set of output files.  NON-Conflicting MapReduceJoins, NCMRJ Non-conflicting MapReduceJoins is a pair of MRJs either not sharing any triple pattern or sharing a triple pattern and the MRJs are on same variable.

28 Example  LUBM Query  SELECT ?X WHERE {  1 ?X rdf : type ub : Chair.  2 ?Y rdf : type ub : Department.  3 ?X ub : worksFor ?Y.  4 ?Y ub : subOrganizat ionOf }

29 Example (contd.)  Triple Pattern Graph and Join Graph for the LUBM Query Triple Pattern Graph (TPG)#1 Join Graph (JG)#1 Join Graph (JG)#2 Triple Pattern Graph (TPG)#2

30 Example(contd.)  Figure shows TPG and JG for query.  On left, we have TPG where each node represents a triple pattern in query, and they are named in the order they appear.  In the middle, we have the JG. Each node in the JG represents an edge in the TPG  For the query, an FQP can have two jobs  First one dealing with NCMRJ between triple patterns 2, 3, 4  Second one NCMRJ between triple pattern 1 and the output of the first join.  IQP would be first job having CMRJs between 1, 3 and 4 and the second having MRJ between triple pattern 2 and the output of the first join.

31 Query Plan Generation: Backtracking

32

33  Drawbacks of back tracking approach  Computationally intractable  Search space is exponential in size

34 Steps a Hadoop Job Goes Through  Executable file (containing MapReduce code) is transferred from client machine to JobTracker 1  JobTracker decides which TaskTrackers 2 will execute the job  Executable file is distributed to TaskTrackers over network  Map processes start by reading data from HDFS  Map outputs are written to discs  Map outputs are read from discs, shuffled (transferred over the network to TaskTrackers which would run Reduce processes), sorted and written to discs  Reduce processes start by reading the input from the discs  Reduce outputs are written to discs

35 MapReduce Data Flow http://developer.yahoo.com/hadoop/tutorial/module4.html#dataflow

36 Observations & an Approximate Solution  Observations  Fixed overheads of a Hadoop job Multiple read-writes to disc Data transfer over network multiple times  Even a “Hello World” MapReduce job takes a couple of seconds because of the fixed overheads  Approximate solution  Minimize number of jobs  This is a good approximation since the overhead of each job (e.g. jar file distribution, multiple disc read-writes, multiple network data transfer) and job switching is huge

37 Greedy Algorithm: Terms  Joining variable:  A variable that is common in two or more triples  Ex: x, y, xy, xz, za -> x,y,z are joining, a not  Complete elimination:  A join operation that eliminates a joining variable  y can be completely eliminated if we join (xy,y)  Partial elimination:  A join that partially eliminates a joining variable  After complete elimination of y, x can be partially eliminated by joining (xz,x)

38 Greedy Algorithm: Terms  E-count:  Number of joining variables in the resultant triple after a complete elimination  In the example x, y, z, xy, xz  E-count of x is = 2 (resultant triple: yz)  E-count of y is = 1 (resultant triple: x)  E-count of z is = 1 (resultant triple: x)

39 Greedy Algorithm: Proposition  Maximum job required for any SPARQL query  K, if K 1  Where K is the number of triples in the query  N is the total number of joining variables

40 Greedy Algorithm: Proof  If we make just one join with each joining variable, then all joins can be done in N jobs (one join per job)  Special case scenario-  Suppose each joining variable is common in exactly two triples:  Example- ab, bc, cd, de, ef, …. (like a chain)  At each job, we can make K/2 joins, which reduce the number of triples to half (i.e., K/2)  So, each job halves the number of triples  Therefore, total jobs required is log 2 K < 1.71*log 2 K

41 Greedy Algorithm: Proof (Continued)  General case:  Suppose we sort (decreasing order) the variables according to the frequency in different triples  Let v i has frequency f i  Therefore, f i <= f i -1<=f i -2<=…<=f1  Note that if f 1 =2, then it reduces to the special case  Therefore, f 1 >2 in the general case, also, f N >=2  Now, we keep joining on v 1, v 2, …,v N as long as there is no conflict

42 Greedy Algorithm: Proof (Continued)  Suppose L triples could not be reduced because each of them are left alone with one/more joining variable that are conflicting (e.g. try reducing xy, yz, zx)  Therefore, M>=L joins have been performed, producing M triples (total M+L triples remaining)  Since each join involved at least 2 triples,  2M + L <= K  2(L+e) + L = 0)  3L + 2e <= K  2L + (4/3)e <= K*(2/3) (multiplying by 2/3 on both sides)

43 Greedy Algorithm: Proof (Continued)  2L+e <= (2/3) * K  So each job reduces #of triples to 2/3  Therefore,  K * (2/3) Q >= 1>= K * (2/3) Q+1  (3/2) Q <= K <= (3/2) Q+1, Q <= log 3/2 K = 1.71 * log 2 K <= Q+1  In most real world scenarios, we can assume that 100 triples in a query is extremely rare  So, the maximum number of jobs required in this case is 12

44 Greedy Algorithm  Greedy algorithm  Early elimination heuristic:  Make as many complete eliminations in each job as possible  This leaves the fewest number of variables for join in the next job  Must choose the join first that has the least e-count (least number of joining variables in the resultant triple)

45 Greedy Algorithm

46  Step I: remove non-joining variables  Step II: sort the vars according to e-count  Step III: choose a var for elimination as long as complete or partial elimination is possible – these joins make a job  Step IV: continue to step II if more triples are available

47 Outline  Semantic Web Technologies & Cloud Computing Frameworks  Goal & Motivation  Current Approaches  System Architecture & Storage Schema  SPARQL Query by MapReduce  Query Plan Generation  Experiment  Future Works

48 Experiment  Dataset and queries  Cluster description  Comparison with Jena In-Memory, SDB and BigOWLIM frameworks  Experiments with number of Reducers  Algorithm runtimes: Greedy vs. Exhaustive  Some query results

49 Dataset And Queries  LUBM  Dataset generator  14 benchmark queries  Generates data of some imaginary universities  Used for query execution performance comparison by many researches

50 Our Clusters  10 node cluster in SAIAL lab  4 GB main memory  Intel Pentium IV 3.0 GHz processor  640 GB hard drive  OpenCirrus HP labs test bed

51 Comparison: LUBM Query 2

52 Comparison: LUBM Query 9

53 Comparison: LUBM Query 12

54 Experiment with Number of Reducers

55 Greedy vs. Exhaustive Plan Generation

56 Some Query Results Seconds Million Triples

57 Outline  Semantic Web Technologies & Cloud Computing Frameworks  Goal & Motivation  Current Approaches  System Architecture & Storage Schema  SPARQL Query by MapReduce  Query Plan Generation  Experiment  Future Works

58 Future Works  Enable plan generation algorithm to handle queries with complex structures  Ontology driven file partitioning for faster query answering  Balanced partitioning for data set with skewed distribution  Materialization with limited number of jobs for inference  Experiment with non-homogenous cluster

59 Publications  Mohammad Husain, Latifur Khan, Murat Kantarcioglu, Bhavani M. Thuraisingham: Data Intensive Query Processing for Large RDF Graphs Using Cloud Computing Tools, IEEE International Conference on Cloud Computing, 2010 (acceptance rate 20%)  Mohammad Husain, Pankil Doshi, Latifur Khan, Bhavani M. Thuraisingham: Storage and Retrieval of Large RDF Graph Using Hadoop and MapReduce, International Conference on Cloud Computing Technology and Science, Beijing, China, 2009  Mohammad Husain, Mohammad M. Masud, James McGlothlin, Latifur Khan, Bhavani Thuraisingham: Greedy Based Query Processing for Large RDF Graphs Using Cloud Computing, IEEE Transactions on Knowledge and Data Engineering Special Issue on Cloud Computing (submitted)  Mohammad Farhan Husain, Tahseen Al-Khateeb, Mohmmad Alam, Latifur Khan: Ontology based Policy Interoperability in Geo-Spatial Domain, CSI Journal (to appear)  Mohammad Farhan Husain, Mohmmad Alam, Tahseen Al-Khateeb, Latifur Khan: Ontology based policy interoperability in geo-spatial domain. ICDE Workshops 2008  Chuanjun Li, Latifur Khan, Bhavani M. Thuraisingham, M. Husain, Shaofei Chen, Fang Qiu : Geospatial Data Mining for National Security: Land Cover Classification and Semantic Grouping, Intelligence and Security Informatics, 2007

60 Questions/Discussion


Download ppt "DATA INTENSIVE QUERY PROCESSING FOR LARGE RDF GRAPHS USING CLOUD COMPUTING TOOLS Mohammad Farhan Husain Dr. Latifur Khan Dr. Bhavani Thuraisingham Department."

Similar presentations


Ads by Google