(19)
(11)EP 3 537 296 A1

(12)EUROPEAN PATENT APPLICATION
published in accordance with Art. 153(4) EPC

(43)Date of publication:
11.09.2019 Bulletin 2019/37

(21)Application number: 17875477.6

(22)Date of filing:  21.11.2017
(51)International Patent Classification (IPC): 
G06F 9/50(2006.01)
(86)International application number:
PCT/CN2017/112117
(87)International publication number:
WO 2018/099299 (07.06.2018 Gazette  2018/23)
(84)Designated Contracting States:
AL AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HR HU IE IS IT LI LT LU LV MC MK MT NL NO PL PT RO RS SE SI SK SM TR
Designated Extension States:
BA ME
Designated Validation States:
MA MD

(30)Priority: 30.11.2016 CN 201611081960

(71)Applicant: Huawei Technologies Co., Ltd.
Longgang District Shenzhen, Guangdong 518129 (CN)

(72)Inventors:
  • XIA, Yinglong
    Shenzhen Guangdong 518129 (CN)
  • XU, Jian
    Shenzhen Guangdong 518129 (CN)
  • XIA, Mingzhen
    Shenzhen Guangdong 518129 (CN)

(74)Representative: Kreuz, Georg Maria 
Huawei Technologies Duesseldorf GmbH Riesstraße 25
80992 München
80992 München (DE)

  


(54)GRAPHIC DATA PROCESSING METHOD, DEVICE AND SYSTEM


(57) The present invention discloses a graph data processing method applied to a distributed system. The distributed system includes a master node and a plurality of worker nodes. The master nodemethod includes: obtaining, by the master node, graph data; dividing the graph data, to obtain P shards, where P is a positive integer, and the P shards include a first shard and a second shard; master nodedetermining at least two edge sets from each shard; scheduling, to at least two worker nodes for processing, at least two edge sets included in the first shard in the P shards; and scheduling, to the at least two worker nodes for processing, an associate edge set included in the second shard, where the associate edge set is an edge set that includes an outgoing edge of a target vertex corresponding to the first shard. According to the graph data processing method provided in embodiments of the present invention, massive storage resources in the distributed system can be used for graph data processing, so as to improve overall throughput of the system and reduce IO overheads.




Description


[0001] This application claims priority to Chinese Patent Application No. 201611081960.0, filed with the Chinese Patent Office on November 30, 2016 and entitled "GRAPH DATA PROCESSING METHOD AND APPARATUS, AND SYSTEM", which is incorporated herein by reference in its entirety.

TECHNICAL FIELD



[0002] The present invention relates to the field of Internet technologies, and specifically, to a graph data processing method and apparatus, and a system.

BACKGROUND



[0003] With rapid development of the Internet, a data volume in the network increases explosively. Valuable information may be obtained by analyzing mass data, so as to discover a new market opportunity or a new business model. However, the data volume in the network is extremely large. To improve data analysis efficiency, data needs to be modeled, that is, data needs to be presented by using a specific model. A graph (Graph) is excellent in model presentation. The graph can visually present correlated entities (Entity) and relationships between the entities. Therefore, in many big data analysis scenarios, to-be-processed data is presented in a graph form, and the graph is analyzed and processed, to obtain information required by a user. Data presented in a graph form is usually referred to as graph data, and analysis and processing of the graph data are also referred to as graph computing. A vertex (vertex) of the graph stores a value corresponding to an entity, and an edge (edge) indicates a relationship between entities. Typically, social network data, a CDR (call detail record, call detail record), a reference relationship between essays, financial transaction data, and the like may be modeled by using a graph (Graph). The graph computing has become a basic module in a big data processing system.

[0004] As shown in FIG. 1, the graph computing is widely applied. For example, a telecom field, a security field, a financial field, and other fields are all related to mining and analysis of big data, to support upper-layer application decision and operation. Data required for each field is collected from the mass data, and then presented in a graph form. Finally, the graph data is processed by using a data mining method such as large-scale relationship computing and a machine learning algorithm, to obtain data valuable to each field.

[0005] Because graph data increases rapidly in scale, the scale of the to-be-processed graph data may exceed an entire memory of a graph processing system. As a result, a graph processing task fails. In addition, because the graph data is closely related, if only a part of the graph data is loaded to the memory for processing at a time, an adjacency relationship between vertexes in the graph data is usually destroyed. As a result, the data is poor in locality. Due to the poor locality of the data, data related to currently computed data needs to be read from a magnetic disk frequently in a graph computing process. This causes large IO overheads.

SUMMARY



[0006] To better support large-scale graph computing, embodiments of the present invention provide a graph data processing method, to use massive memory resources in a distributed system to process graph data. This ensures normal processing of mass graph data, and reduces I/O overheads of the system. The embodiments of the present invention further provide a corresponding apparatus and system.

[0007] According to a first aspect of the present invention, a graph data processing method in a distributed system is provided. The distributed system includes a master node and a plurality of worker nodes. The master node and the worker nodes may be physical hosts connected by using a network, or may be virtual machines deployed on commodity hardware resources. The method includes: obtaining, by the master node, graph data, where the graph data may be obtained by the master node from a specific data source such as a database or a file system, or may be obtained by the master node from a storage resource of the master node, the graph data includes M vertexes and a plurality of directional edges, each edge connects two of the M vertexes, a direction of each edge is from a source vertex to a destination vertex in the two vertexes, and M is an integer greater than 2; dividing, by the master node, the graph data, to obtain P shards (shard), where each shard includes an incoming edge of at least one target vertex, the incoming edge is an edge directed to the target vertex, a sum of quantities of target vertexes corresponding to the P shards is equal to M, the target vertices corresponding to each shard are different, P is a positive integer greater than 1, and the P shards include a first shard and a second shard; determining, by the master node, at least two edge sets from each shard; scheduling, by the master node to at least two worker nodes for processing, at least two edge sets included in the first shard in the P shards; and scheduling, by the master node to the at least two worker nodes for processing, an associate edge set included in the second shard, where the associate edge set is an edge set that includes an outgoing edge of a target vertex corresponding to the first shard, and the outgoing edge is an edge directed from the target vertex in the first shard. The at least two worker nodes are worker nodes to which the edge sets are scheduled, and a quantity of at least two edge sets is not less than a quantity of at least two worker nodes. It can be learned from the first aspect that the graph data is processed by using the distributed system. The graph data is processed into the shards. Then, the shard is further divided into the edges sets. Edge sets in a same shard are scheduled to at least two worker nodes for graph data processing. Massive memory resources in the distributed system are fully used to process the graph data. This ensures normal processing of mass graph data, improves scalability of graph processing in a distributed computing environment, and improves overall throughput of the system. In addition, the outgoing edge of the target vertex in the second shard is scheduled to a worker node of the incoming edge, to reduce input/output (I/O) overheads of communication between the worker nodes and ensure timeliness of graph computing.

[0008] With reference to the first aspect, in a first possible implementation, the step of determining, by the master node, at least two edge sets from each shard includes: filling, by the master node, values of edges in the P shards into a data structure in a P×P matrix form according to directions of edges, to obtain P2 data blocks, where each data block is an edge set, each shard includes at least two data blocks, the P×P matrix form is formed by using the M vertexes as a horizontal axis and a vertical axis; and if a vertex on the horizontal axis is a source vertex, a vertex on the vertical axis is a destination vertex; or if a vertex on the horizontal axis is a destination vertex, a vertex on the vertical axis is a source vertex. If the shards include a same quantity of target vertexes, the data blocks have a same size. If the shards include different quantities of target vertexes, the data blocks may have different sizes. It can be learned from the first possible implementation of the first aspect that an edge set is determined in a matrix form, so that the edge set is determined in a more orderly way, thereby improving efficiency of determining the edge set, and further improving efficiency of graph data processing.

[0009] With reference to the first possible implementation of the first aspect, in a second possible implementation, the method further includes: setting, by the master node, a unique block identifier for each of the P2 data blocks; determining, by the master node, a correspondence between the block identifiers of the P2 data blocks and a plurality of worker nodes; and scheduling, by the master node according to the correspondence to the at least two worker nodes for processing, at least two data blocks included in the first shard. It can be learned from the second possible implementation of the first aspect that the data blocks can be scheduled according to the block identifiers after the block identifiers are set for the data blocks. Therefore, the data blocks are scheduled in a more orderly and more efficient way, so as to improve efficiency of graph data processing.

[0010] With reference to the second possible implementation of the first aspect, in a third possible implementation, the step of scheduling, by the master node to the at least two worker nodes for processing, an associate edge set included in the second shard includes: scheduling, by the master node according to the correspondence to the at least two worker nodes for processing, data blocks corresponding to the associate edge set. It can be learned from the third possible implementation of the first aspect that the data blocks in the second shard are also scheduled according to block identifiers. Therefore, the data blocks are scheduled in a more orderly and more efficient way, so as to improve efficiency of graph data processing.

[0011] With reference to the second or the third possible implementation of the first aspect, in a fourth possible implementation, the method further includes: setting, by the master node, a synchronization flag, where the synchronization flag is used to instruct a worker node where a first data block is located to perform data synchronization with a worker node where a second data block is located after processing the first data block, the first data block is a last scheduled data block according to a scheduling sequence in the first shard, and the second data block is a last scheduled data block in the data blocks corresponding to the associate edge set. It can be learned from the fourth possible implementation of the first aspect that a synchronization flag needs to be set for worker nodes processing a same group of edge sets to instruct a worker node to perform data synchronization with one or more other worker nodes according to the synchronization flag after the worker node processing a last edge set of the same group, to ensure graph data consistency.

[0012] With reference to the first aspect, in a fifth possible implementation, the determining, by the master node, at least two edge sets from each shard includes: determining, by the master node, a degree of a target vertex in each shard, where the degree indicates closeness of association between the target vertex and another vertex; and when a degree of a first target vertex exceeds a preset threshold, classifying, by the master node, incoming edges of the first target vertex into a same edge set. It can be learned from the fifth possible implementation of the first aspect that, to reduce IO overheads, the edge set may be further obtained by means of classification according to the degree of the target vertex. Incoming edges of target vertexes whose degrees exceed a preset threshold are classified to a same edge set, to reduce IO overheads of communication between the worker nodes.

[0013] According to a second aspect of the present invention, a graph data processing method is provided. The method is applied to a distributed system. The distributed system includes a master node and a plurality of worker nodes. Each worker node includes an I/O interface, a hard disk, a memory, and a processor. The method includes: receiving, by a first worker node by using an I/O interface, X edge sets that are scheduled by the master node according to a scheduling sequence from P shards (shard), where the P shards are obtained after the master node divides graph data, the graph data includes M vertexes and a plurality of directional edges, each edge connects two of the M vertexes, a direction of each edge is from a source vertex to a destination vertex in the two vertexes, M is an integer greater than 2, each shard includes an incoming edge of at least one target vertex, the incoming edge is an edge directed to the target vertex, a sum of quantities of target vertexes corresponding to the P shards is equal to M, the target vertices corresponding to each shard are different, P is a positive integer greater than 1, and X is a positive integer; storing the X edge sets in a hard disk by using the I/O interface of the first worker node; and loading, by a processor of the first worker node to a memory according to the scheduling sequence of the master node, Y edge sets in the X edge sets stored in the hard disk, and extracting data of Z edge sets from the memory for graph computing, where XYZ, and X, Y, and Z are all positive integers. It can be learned from the second aspect that the graph data is processed by using the distributed system, so that massive memory resources in the distributed system are fully used to process the graph data. This ensures normal processing of mass graph data, improves scalability of graph processing in a distributed computing environment, and improves overall throughput of the system. In addition, the worker node performs streaming processing on edge sets in a multilevel loading manner according to the scheduling sequence of the master node from the hard disk to the memory and then from the memory to the processor, so as to reduce memory occupation, reduce memory overheads, and improve efficiency of graph computing.

[0014] With reference to the second aspect, in a first possible implementation, each edge set is a data block, the P shards include P2 data blocks, the P2 data blocks are obtained after the master node fills values of edges in the P shards into a data structure in a P×P matrix form according to directions of edges, the P shards include a first shard and a second shard, and the method further includes: performing, by the processor of the first worker node, data synchronization with a second worker node where a second data block is located according to a synchronization flag after the processor of the first worker node processing a first data block, where the first data block is a data block that is last scheduled to the first worker node according to a scheduling sequence in the first shard, and the second data block is a data block that is last scheduled to the second worker node in the second shard and that includes an outgoing edge of a target vertex corresponding to the first shard. It can be learned from the first possible implementation of the second aspect that a synchronization flag needs to be set for worker nodes processing a same group of edge sets to instruct a worker node to perform data synchronization with one or more other worker nodes according to the synchronization flag after the worker node processing a last edge set of the same group, to ensure graph data consistency.

[0015] According to a third aspect of the present invention, a graph data processing apparatus is provided. The apparatus is configured to implement a function of the method provided in the first aspect or any optional implementation of the first aspect, and is implemented by using hardware/software. The hardware/software includes units corresponding to the foregoing function.

[0016] According to a fourth aspect of the present invention, a graph data processing apparatus is provided. The apparatus is configured to implement a function of the method provided in the second aspect or any optional implementation of the second aspect, and is implemented by using hardware/software. The hardware/software includes units corresponding to the foregoing function.

[0017] According to a fifth aspect of the present invention, a graph data processing apparatus is provided. The graph data processing apparatus may be a master node in a distributed system. The distributed system further includes a plurality of worker nodes. The graph data processing apparatus includes an I/O interface, a memory, a hard disk, and a processor. The I/O interface is configured to obtain graph data. The graph data may be obtained from an external database, or may be obtained from a storage resource of the graph data processing apparatus, for example, obtained from a hard disk. The graph data includes M vertexes and a plurality of directional edges, each edge connects two of the M vertexes, a direction of each edge is from a source vertex to a destination vertex in the two vertexes, and M is an integer greater than 2. The processor is configured to divide the graph data, to obtain P shards (shard), where each shard includes an incoming edge of at least one target vertex, the incoming edge is an edge directed to the target vertex, a sum of quantities of target vertexes corresponding to the P shards is equal to M, the target vertices corresponding to each shard are different, P is a positive integer greater than 1, and the P shards include a first shard and a second shard. The processor of the graph data processing apparatus is further configured to: determine at least two edge sets from each shard; schedule, by using the I/O interface to at least two worker nodes for processing, at least two edge sets included in the first shard; and schedule, to the at least two worker nodes for processing, an associate edge set included in the second shard, where the associate edge set is an edge set that includes an outgoing edge of a target vertex corresponding to the first shard, and the outgoing edge is an edge directed from the target vertex in the first shard. The at least two worker nodes are worker nodes to which the edge sets are scheduled, and a quantity of at least two edge sets is not less than a quantity of at least two worker nodes.

[0018] With reference to the fifth aspect, the processor is specifically configured to implement a function of the method provided in the first aspect or any optional implementation of the first aspect.

[0019] According to a sixth aspect of the present invention, a graph data processing apparatus is provided. The graph data processing apparatus may be a worker node in a distributed system. The distributed system further includes a master node. The graph data processing apparatus includes an I/O interface, a memory, a hard disk, and a processor. The I/O interface is configured to receive X edge sets that are scheduled by the master node according to a scheduling sequence from P shards shard, where the P shards are obtained after the master node divides graph data, the graph data includes M vertexes and a plurality of directional edges, each edge connects two of the M vertexes, a direction of each edge is from a source vertex to a destination vertex in the two vertexes, M is an integer greater than 2, each shard includes an incoming edge of at least one target vertex, the incoming edge is an edge directed to the target vertex, a sum of quantities of target vertexes corresponding to the P shards is equal to M, the target vertices corresponding to each shard are different, P is a positive integer greater than 1, and X is a positive integer. The hard disk is configured to store the X edge sets received by using the I/O interface. The processor loads, to the memory according to the scheduling sequence of the master node, Y edge sets in the X edge sets stored in the hard disk, and extracts data of Z edge sets from the memory for graph computing, where XYZ, and X, Y, and Z are all positive integers.

[0020] With reference to the sixth aspect, the processor is configured to implement a function of the method provided in the second aspect or any optional implementation of the second aspect, and is implemented by using hardware/software. The hardware/software includes units corresponding to the foregoing function.

[0021] According to a seventh aspect of the present invention, a computer storage medium is provided. The computer storage medium stores a graph data processing program in the first aspect or any optional implementation of the first aspect.

[0022] According to an eighth aspect of the present invention, a computer storage medium is provided. The computer storage medium stores a graph data processing program in the second aspect or any optional implementation of the second aspect.

[0023] According to a ninth aspect of the present invention, a distributed system is provided. The distributed system includes a master node and a plurality of worker nodes. Both the master node and the worker nodes may be independent physical hosts, or may be virtual machines configured on a physical host. The master node may be the graph data processing apparatus described in the third aspect or the fifth aspect. The worker node may be the graph data processing apparatus described in the fourth aspect or the sixth aspect.

[0024] According to a tenth aspect of the present invention, a graph data processing method is provided. The method is applied to a distributed system. The distributed system includes a master node and a plurality of worker nodes. The master node and the worker nodes may be independent physical hosts, or may be virtual machines configured on a physical host. The method includes: obtaining, by the master node, graph data, where the graph data may be obtained by the master node from a database, or may be obtained by the master node from a storage resource of the master node, the graph data includes M vertexes and a plurality of directional edges, each edge connects two of the M vertexes, a direction of each edge is from a source vertex to a destination vertex in the two vertexes, and M is a positive integer greater than 1; determining, by the master node, at least two edge sets from the graph data; and scheduling, by the master node, the at least two edge sets to at least two of the plurality of worker nodes for graph computing. It can be learned from the tenth aspect that the graph data is processed by using the distributed system. The edge sets are scheduled to the at least two worker nodes for graph data processing. Massive memory resources in the distributed system are fully used to process the graph data. This ensures normal processing of mass graph data, improves scalability of graph processing in a distributed computing environment, and improves overall throughput of the system.

BRIEF DESCRIPTION OF DRAWINGS



[0025] 

FIG. 1 is a schematic diagram of graph data mining and application;

FIG. 2 is a schematic diagram of a presentation form of graph data according to an embodiment of the present invention;

FIG. 3A is a schematic diagram of a network structure in a distributed system according to an embodiment of the present invention;

FIG. 3B is a schematic structural diagram of a physical host;

FIG. 3C is a schematic structural diagram of a distributed system in a virtualization scenario according to an embodiment of the present invention;

FIG. 4 is a schematic diagram of an embodiment of a graph data processing method according to embodiments of the present invention;

FIG. 5 is a schematic diagram of a graph data processing example according to an embodiment of the present invention;

FIG. 6 is a schematic diagram of an edge set scheduling example according to an embodiment of the present invention;

FIG. 7 is a schematic architectural diagram of graph data processing according to an embodiment of the present invention;

FIG. 8 is a schematic diagram of another edge set scheduling example according to an embodiment of the present invention;

FIG. 9 is a schematic diagram of an example in which a shard is converted to a data structure in a matrix form according to an embodiment of the present invention;

FIG. 10 is a schematic diagram of another example in which a shard is converted to a data structure in a matrix form according to an embodiment of the present invention;

FIG. 11 is a schematic diagram of a correspondence between a data block and a block identifier according to an embodiment of the present invention;

FIG. 12 is a schematic diagram of a coarse-granularity scheduling example according to an embodiment of the present invention;

FIG. 13 is a schematic diagram of a fine-granularity scheduling example according to an embodiment of the present invention;

FIG. 14 is a schematic diagram of a data block scheduling example according to an embodiment of the present invention;

FIG. 15 is a schematic diagram of a graph data processing apparatus according to an embodiment of the present invention; and

FIG. 16 is another schematic diagram of a graph data processing apparatus according to an embodiment of the present invention.


DESCRIPTION OF EMBODIMENTS



[0026] Embodiments of the present invention provide a graph data processing method, to process and store graph data by using massive memory resources in a distributed system. This ensures normal processing of mass graph data, improves scalability of graph processing in a distributed computing environment, improves overall throughput of the system, and reduces input/output (I/O) overheads of communication between worker nodes. The embodiments of the present invention further provide a corresponding apparatus and system. Details are separately provided in the following.

[0027] The following clearly and completely describes the technical solutions in the embodiments of the present invention with reference to the accompanying drawings in the embodiments of the present invention. Apparently, the described embodiments are merely some but not all of the embodiments of the present invention. In this specification, claims, and accompanying drawings of the present invention, the terms "first", "second", "third", "fourth", and the like (if exists) are intended to distinguish between similar objects but do not necessarily indicate a specific order or sequence.

[0028] For a graph (also referred to as graph data in the embodiments of the present invention), for example, as shown in FIG. 2, FIG. 2 includes six entities represented by using numbers 1 to 6. The entities in a graph may be referred to as vertexes. A relationship between the entities is indicated by using an edge. An arrow on the edge indicates a direction. Each edge connects two vertexes. A direction of each edge is from a source vertex to a destination vertex in the two vertexes. That is, a vertex from which the edge starts is the source vertex, and a vertex at which the arrow is directed is the destination vertex. Each edge has a corresponding value.

[0029] FIG. 2 shows only a schematic diagram of simple graph data. In a specific application scenario, the graph data is more large and complex. The graph data may include thousands of vertexes and many edges. Therefore, processing of the graph data requires massive hardware resources, and hardware resources of a single-chip microcomputer or one physical machine can hardly meet a requirement for processing the graph data.

[0030] An embodiment of the present invention provides a distributed system. The distributed system can be used to process graph data. As shown in FIG. 3A, the distributed system provided in this embodiment of the present invention includes a master node (Master) 10, a network 20, a plurality of worker nodes (Worker) 30, and a database 40. The master node 10 and the plurality of worker nodes 30 can communicate with each other through the network 20. The database 40 can store graph data. The master node 10 can read to-be-processed graph data from the database 40. There may be one or more master nodes 10 in this embodiment of the present invention. For example, to ensure reliability of the system, a secondary master node may be deployed, to share some load when a currently running master node is overloaded, or take over the job of a currently running master node that is faulty. The master node 10 and the worker nodes 30 may be physical hosts. For a hardware structure of a physical host, refer to FIG. 3B for understanding. As shown in FIG. 3AB, a physical host 50 includes a processor 510, a hard disk 520, a memory 530, an I/O interface 540, and a bus 550. The processor 510, the hard disk 520, the memory 530, and the I/O interface 540 are communicatively connected to each other by using the bus 550. Two physical hosts can be connected to each other through the I/O interface and the network 20.

[0031] In addition, the distributed system provided in this embodiment of the present invention may be a distributed system in a virtualization scenario. The distributed system in the virtualization scenario is shown in FIG. 3C. The distributed system in the virtualization scenario includes a hardware layer, a virtual machine monitor (VMM) 1001 running at the hardware layer, and a plurality of virtual machines 1002. One or more virtual machines may be selected as the master node, and a plurality of virtual machines may be selected as the worker nodes.

[0032] Specifically, the virtual machines 1002 are one or more virtual computers that are simulated on a common hardware resource by using virtual machine software. The virtual machine works like a real computer. An operating system and an application program can be installed on the virtual machine. The virtual machine can further access a network resource. For an application program running on the virtual machine, the virtual machine works like a real computer.

[0033] The hardware layer is a hardware platform running in the virtualization environment, and may be abstract hardware resources of one or more physical hosts. The hardware layer may include various types of hardware. For example, the hardware layer includes a processor 1004 (for example, a CPU) and a memory 1005, and may further include a network adapter 1003 (for example, an RDMA network adapter), a high-speed/low-speed input/output (I/O, Input/Output) device, and another device with a specific processing function.

[0034] In addition, the distributed system in the virtualization scenario may further include a host (Host) serving as a management layer, to manage and allocate a hardware resource, present a virtual hardware platform for the virtual machines, and implement scheduling and isolation of the virtual machines. The host may be a virtual machine monitor (VMM). In addition, the VMM sometimes cooperates with a privileged virtual machine to form a host. The virtual hardware platform provides various hardware resources for the virtual machines running on the virtual hardware platform. For example, the virtual hardware platform provides a virtual processor (for example, a VCPU), a virtual memory, a virtual disk, a virtual network adapter, or the like. The virtual disk may be corresponding to a file or a logical block device of the host. The virtual machines run on the virtual hardware platform that is prepared by the host for the virtual machines, and one or more virtual machines run on the host.

[0035] The privileged virtual machine is a special virtual machine that may also be referred to as a drive domain. For example, the special virtual machine is referred to as Dom0 on a Xen Hyperviserver platform. Drivers of real physical devices such as a network adapter and a SCSI disk are installed in the virtual machine, so as to detect and directly access these real physical devices. Another virtual machine uses a corresponding mechanism provided by the Hypervisor to access the real physical devices by using the privileged virtual machine.

[0036] The distributed system provided in the present invention may use a bulk synchronous parallel computing model (Bulk Synchronous Parallel Computing Model) that is also referred to as a bulk synchronization model or a BSP model. The master is responsible for dividing the entire graph data, allocating a computing task to the worker, and synchronizing messages. Each worker has a message queue, and each superstep (Superstep) is an iteration. In a superstep, each worker reads the message queue of the worker and performs parallel computing. Synchronization is performed between a plurality of supersteps. The workers send messages to exchange data. Specific principles and details of the BSP model belong to the prior art. Details are not provided herein.

[0037] The embodiments of the present invention further provide a method for processing graph data by using the distributed system described above. The master node 10 divides and schedules the graph data, processes "big data" into "small data", and schedules the small data to a plurality of worker nodes for parallel processing. The plurality of worker nodes complete graph computing together, to avoid a problem that a task of processing graph data fails due to insufficient hardware resources especially insufficient memory resources when a single-chip microcomputer or a single physical machine processes the graph data.

[0038] Specifically, refer to FIG. 4 for understanding a process in which the master node 10 processes the graph data.

[0039] As shown in FIG. 4, an embodiment of the graph data processing method provided in the embodiments of the present invention includes the following steps:

[0040] 101. A master node obtains graph data, where the graph data includes M vertexes and a plurality of directional edges, each edge connects two of the M vertexes, a direction of each edge is from a source vertex to a destination vertex in the two vertexes, and M is an integer greater than 2.

[0041] The graph data in this embodiment of the present invention may be obtained by the master node from a database used to store graph data, for example, the database 40 shown in FIG. 3A. If the graph data is stored in a storage resource of the master node, the graph data may be obtained by the master node from the storage resource of the master node. Certainly, if the graph data may be stored in another manner, the master node may obtain the graph data from a corresponding storage location of the graph data.

[0042] For a form of presenting the graph data and a description about the vertexes and the edges in the graph, refer to FIG. 2 and the corresponding description of FIG. 2 for understanding. Details are not described herein again.

[0043] 102. The master node divides the graph data, to obtain P shards (shard), where each shard includes an incoming edge of at least one target vertex, the incoming edge is an edge directed to the target vertex, a sum of quantities of target vertexes corresponding to the P shards is equal to M, the target vertices corresponding to each shard are different, P is a positive integer greater than 1, and the P shards include a first shard and a second shard.

[0044] It should be noted that, in most scenarios, the master node divides the graph data into a plurality of shards, but in some special scenarios, if the graph data is extremely small, the graph data does not need to be divided, that is, only one shard exists. This embodiment of the present invention is described by using an example of a scenario of a plurality of shards.

[0045] The graph data is divided according to the vertexes. The M vertexes may be divided. The shards may be corresponding to a same quantity of vertexes or different quantities of vertexes. The shards are corresponding to different vertexes regardless of whether the shards are corresponding to the same quantity of vertexes or different quantities of vertexes. For example, as shown in FIG. 2, there are six vertexes in FIG. 2, that is, M=6 in the example shown in FIG. 2. If each shard is corresponding to two vertexes, P=6/2=3, that is, the graph data may be divided into three shards. Two vertexes corresponding to each shard are defined as target vertexes in this embodiment of the present invention. Each shard includes incoming edges of the two target vertexes corresponding to the shard, that is, edges whose arrows are directed at the target vertexes. Certainly, the shards may be corresponding to different quantities of vertexes. For example, one shard is corresponding to one target vertex, another shard is corresponding to two target vertexes, and still another shard is corresponding to three target vertexes, provided that a sum of quantities of target vertexes corresponding to all the shards is equal to M, and the target vertexes corresponding to the shards do not overlap.

[0046] This embodiment of the present invention is described by using an example in which the shards are corresponding to the same quantity of target vertexes. Refer to FIG. 5 for understanding shards obtained after the processing of the graph data shown in FIG. 2. As shown in FIG. 5, for the six vertexes, each shard is corresponding to two of the six vertexes, and the graph data may be processed into three shards. As shown in FIG. 5, a shard 1 (shard 1) is corresponding to destination vertexes 1 and 2, a shard 2 (shard 2) is corresponding to destination vertexes 3 and 4, and a shard 3 (shard 3) is corresponding to destination vertexes 5 and 6. The shard 1 is used as an example. When the shard 1 is corresponding to the target vertexes 1 and 2, source vertexes 1, 3, 4, 5, and 6 have an incoming-edge relationship with the target vertexes 1 and 2. The shard 1 includes all incoming edges of the target vertexes 1 and 2, and values of all the incoming edges. The values of the incoming edges may be obtained from a record of the graph data. The values of the incoming edges are not a focus of this embodiment of the present invention. Therefore, the values of the incoming edges are not described in detail herein. Likewise, the shard 2 includes all incoming edges of the target vertexes 3 and 4, and values of all the incoming edges; and the shard 3 includes all incoming edges of the target vertexes 5 and 6, and values of all the incoming edges.

[0047] 103. The master node determines at least two edge sets from each shard.

[0048] The edge sets may be determined according to a source vertex. For example, each edge set includes a target vertex in a shard and incoming edges of determined R source vertexes, where R is a positive integer. Alternatively, the edge sets may be determined according to importance degrees of target vertexes, or may be determined according to a matrix form. That the edge sets are determined according to importance degrees of destination vertexes or according to the matrix form is described in detail in the following. Details are not provided herein. Actually, a division manner of the edge set may not be specifically limited, provided that each shard is divided into at least two parts. Because the shard is a set of edges of the target vertexes included in the shard, each part obtained after division may be an edge set.

[0049] 104. The master node schedules, to at least two worker nodes for processing, at least two edge sets included in the first shard.

[0050] The first shard in this embodiment of the present invention is a relative concept. Any shard in the P shards may be understood as the first shard, and a shard other than the first shard may be understood as the second shard. That is, if the shard 1 is the first shard, the shard 2 and the shard 3 are the second shards relative to the shard 1. Likewise, if the shard 2 is the first shard, the shard 1 and the shard 3 are the second shards relative to the shard 2. If the shard 3 is the first shard, the shard 1 and the shard 2 are the second shards relative to the shard 3.

[0051] For a process of scheduling edge sets, refer to FIG. 6 for understanding. As shown in FIG. 6, scheduling of edge sets (Edge-Set) in the shard 1 is used as an example. As shown in FIG. 6, the shard 1 is divided into three edge sets: an edge set ES 1, an edge set ES 2, and an edge set ES 3. If there are only two worker nodes available for scheduling, the edge set ES 1 and the edge set ES 2 may be scheduled to a worker node 1, and the edge set ES 3 may be scheduled to a worker node 2. Certainly, scheduling and allocation are not limited to the foregoing example, provided that the three edge sets are scheduled to the two worker nodes. If there are three worker nodes, each worker node may be scheduled with one edge set.

[0052] It should be noted that the at least two worker nodes in this embodiment of the present invention are worker nodes to which the edge sets are scheduled, and a quantity of at least two edge sets is not less than a quantity of at least two worker nodes.

[0053] 105. The master node schedules, to the at least two worker nodes (for example, the worker node 1 and the worker node 2 in FIG. 4) for processing, an associate edge set included in the second shard, where the associate edge set is an edge set that includes an outgoing edge of a target vertex corresponding to the first shard, and the outgoing edge is an edge directed from the target vertex in the first shard.

[0054] 106. The worker nodes perform graph computing on the scheduled edge sets.

[0055] In this embodiment of the present invention, a relationship between the first shard and the second shard has been described in the foregoing embodiment. Refer to the foregoing description for understanding. Details are not described herein again. As shown in FIG. 6, each shard includes an incoming edge of a target vertex corresponding to the shard. Actually, the target vertex corresponding to the shard also has a corresponding outgoing edge. For example, the shard 1 includes all incoming edges of the destination vertexes 1 and 2, and the shard 2 and the shard 3 include outgoing edges of the destination vertexes 1 and 2. As shown in FIG. 8, an edge set ES 4 and an edge set ES 5 include the outgoing edges of the destination vertexes 1 and 2. During scheduling, an edge set of outgoing edges may be scheduled to at least one of the at least two worker nodes. For example, when edge sets shown in FIG. 8 are scheduled, the edge set ES 4 and the edge set ES 5 may be scheduled to the worker node 1. Certainly, the foregoing description is merely an example. Alternatively, an edge set of outgoing edges may be scheduled to the worker node 2, provided that the edge set ES 4 and the edge set ES 5 are scheduled to a range of the worker node 1 and the worker node 2. In this way, input/output (I/O) overheads of communication between worker nodes can be reduced.

[0056] In this embodiment of the present invention, the graph data is processed by using the distributed system. The graph data is processed into the shards. Then, the edges sets in the shards are scheduled to the at least two worker nodes for graph data processing. Massive memory resources in the distributed system are fully used to process the graph data. This ensures normal processing of mass graph data, improves scalability of graph processing in a distributed computing environment, and improves overall throughput of the system. The outgoing edge of the target vertex in the first shard is scheduled to a worker node of the incoming edge, to reduce input/output (I/O) overheads of communication between the worker nodes.

[0057] A logical architecture of the distributed system is shown in FIG. 7. According to FIG. 7, the distributed system may be logically divided into a database, a data management area, a computing area, and an interface area. A function of the data management area is implemented by a master node, and a function of the computing area is implemented by worker nodes. The interface area includes a user-oriented interface and a user interface (UI). The data management area is responsible for loading graph data from the database, dividing the graph data according to the processing process described in the embodiment related to FIG. 4, determining edge sets, and scheduling the edge sets to the computing area. After the computing area completes computing the graph data, a computing result is output to the interface area for presentation.

[0058] In another embodiment of the graph data processing method provided in the embodiments of the present invention, that the master node determines at least two edge sets from each shard may include:

filling, by the master node, values of edges in the P shards into a data structure in a P×P matrix form according to directions of edges, to obtain P2 data blocks, where

each data block is an edge set, each shard includes at least two data blocks, the P×P matrix is formed by using the M vertexes as a horizontal axis and a vertical axis; and if a vertex on the horizontal axis is a source vertex, a vertex on the vertical axis is a destination vertex; or if a vertex on the horizontal axis is a destination vertex, a vertex on the vertical axis is a source vertex.



[0059] In this embodiment of the present invention, if the vertexes in the graph data are horizontally and vertically arranged, when a vertex on a horizontal axis is a source vertex, a vertex on a vertical axis is a destination vertex; or if a vertex on a horizontal axis is a destination vertex, a vertex on a vertical axis is a source vertex. In this way, an M×M matrix can be formed, including M×M blocks. A value of an edge from a source vertex and a destination vertex can be filled in each block. During processing, the graph data is scheduled according to the edge sets. Therefore, the M×M square may be processed according to the quantity of target vertexes included in each shard. For example, if each shard includes N target vertexes, the graph data can be processed into a P×P matrix, and P=M/N. Certainly, if the shards include different quantities of target vertexes, the graph data can also be processed into a P×P matrix, and data blocks have different sizes in a data structure of the formed matrix form. It can be learned from the foregoing that an edge set is determined in a matrix form, so that the edge set is determined in a more orderly way, thereby improving efficiency of determining the edge set, and further improving efficiency of graph data processing.

[0060] As shown in FIG. 9, the values of the edges in the shard 1, the shard 2, and the shard 3 in the foregoing example are filled into a data structure in a 3×3 matrix form, to obtain 32 data blocks, that is, to obtain nine data blocks.

[0061] As shown in FIG. 10A to FIG. 10D, FIG. 10A to FIG. 10D show a correspondence between nine data blocks in a data structure of a 3×3 matrix form and edge sets of incoming edges of target vertexes corresponding to the shard 1, the shard 2, and the shard 3 and of outgoing edges of the target vertexes in other shards.

[0062] Optionally, in another embodiment of the graph data processing method provided in the embodiments of the present invention, the method may further include:

setting, by the master node, a unique block identifier for each of the P2 data blocks; and

determining, by the master node, a correspondence between the block identifiers of the P2 data blocks and a plurality of worker nodes.



[0063] That the master node schedules, to at least two worker nodes for processing, at least two edge sets included in the first shard may include:
scheduling, by the master node according to the correspondence to the at least two worker nodes for processing, at least two data blocks included in the first shard.

[0064] In this embodiment of the present invention, for ease of scheduling, a block identifier that can indicate a sequence relationship may be set for each data block. For example, as shown in FIG. 11, each data block is numbered according to a horizontal or vertical sequence from a vertex 1 and a vertex 2. In FIG. 11, the data blocks are numbered row by row from left to right. Certainly, the data blocks may be numbered column by column from top to bottom. A specific sequence of setting block identifiers is not limited in this embodiment of the present invention, provided that the block identifier can represent the sequence. Alternatively, the block identifier may be a letter instead of a number.

[0065] After the block identifier is set for the data block, it is necessary to record the correspondence between the block identifier and the data block, to facilitate proper scheduling. After the block identifier is set, the master node only needs to schedule the data blocks of the incoming edges to the worker nodes according to the sequence of setting the block identifiers. It can be learned from the foregoing that the data blocks can be scheduled according to the block identifiers after the block identifiers are set for the data blocks. Therefore, the data blocks are scheduled in a more orderly and more efficient way, so as to improve efficiency of graph data processing.

[0066] Optionally, in another embodiment of the graph data processing method provided in the embodiments of the present invention, that the master node schedules, to the at least two worker nodes for processing, an associate edge set included in the second shard may include:
scheduling, by the master node according to the correspondence to the at least two worker nodes for processing, data blocks corresponding to the associate edge set.

[0067] In this embodiment of the present invention, as shown in FIG. 12, after the block identifier is set for each data block in the data structure, the data blocks can be scheduled according to the scheduling sequence indicated by the block identifiers. As shown in FIG. 12, the scheduling sequence is 1, 4, 7, 1, 2, 3, 2, 5, 8, 4, 5, 6, and the like. A data block 1 indicated by B1, a data block 2 indicated by B2, and a data block 4 indicated by B3 have been scheduled, and are not scheduled again. In this way, IO overheads can be reduced. In addition, a hard disk, a memory, and a central processing unit CPU shown in FIG. 12 are not resources of a same worker node and not particularly distinguished, provided that the scheduling sequence is described herein. For a scheduling relationship between the data blocks and the worker nodes, refer to descriptions about FIG. 6 and FIG. 8 for understanding.

[0068] From a perspective of a worker node, in another embodiment of the graph data processing method provided in the embodiments of the present invention, each worker node includes an I/O interface, a hard disk, a memory, and a processor.

[0069] A first worker node receives, by using an I/O interface, X edge sets that are scheduled by a master node according to a scheduling sequence from P shards. The P shards are obtained after the master node divides graph data. The graph data includes M vertexes and a plurality of directional edges. Each edge connects two of the M vertexes. A direction of each edge is from a source vertex to a destination vertex in the two vertexes. M is an integer greater than 2. Each shard includes an incoming edge of at least one target vertex. The incoming edge is an edge directed to the target vertex. A sum of quantities of target vertexes corresponding to the P shards is equal to M. The target vertices corresponding to each shard are different. P is a positive integer greater than 1, and X is a positive integer.

[0070] The X edge sets are stored in a hard disk by using the I/O interface of the first worker node.

[0071] A processor of the first worker node loads, to a memory according to the scheduling sequence of the master node, Y edge sets in the X edge sets stored in the hard disk, and extracts data of Z edge sets from the memory for graph computing, where XYZ, and X, Y, and Z are all positive integers.

[0072] In this embodiment of the present invention, FIG. 12 show scheduling performed according to block identifiers, that is, coarse-granularity scheduling. Actually, after the scheduling performed according to block identifiers, a worker node further needs to extract data of an edge set in a data block indicated by a block identifier, and then schedule the data of the edge set to a corresponding worker node for graph computing. Herein, scheduling the data of the edge set is fine-granularity scheduling.

[0073] As shown in FIG. 13, a data block 2 in the figure is used as an example. Data of an edge set in the data block includes (1, 3, 0.4) and (2, 3, 0.3). When the data block 2 is scheduled according to coarse-granularity scheduling, during graph computing, a worker node to which the data block 2 is scheduled loads Y of X edge sets from a hard disk to a memory according to a scheduling sequence, and extracts data of Z edge sets for graph computing. For example, during computing of the data block 2, a CPU extracts (1, 3, 0.4) and (2, 3, 0.3) for graph computing.

[0074] Generally, a quantity of edge sets in a hard disk of a worker node is greater than a quantity of edge sets in a memory, and the quantity of edge sets in the memory is greater than a quantity of edge sets processed by a CPU. During graph computing, the CPU loads a small quantity of edge sets to the memory according to a scheduling sequence, and then performs graph computing on the edge sets one by one according to the scheduling sequence. That is, the worker node uses a streaming processing manner. In the streaming processing manner, the memory can be less occupied, memory overheads can be reduced, and efficiency of graph computing can be improved.

[0075] Optionally, from a perspective of the master node, in another embodiment of the graph data processing method provided in the embodiments of the present invention, the method may further include:
setting, by the master node, a synchronization flag.

[0076] The synchronization flag is used to instruct a worker node where a first data block is located to perform data synchronization with a worker node where a second data block is located after processing the first data block. The first data block is a last scheduled data block according to a scheduling sequence in the first shard, and the second data block is a last scheduled data block in the data blocks corresponding to the associate edge set.

[0077] In this embodiment of the present invention, a shard 1, a shard 2, and a shard 3 are used as an example. Three data blocks 1, 4, and 7 in the shard 1, a data block 2 in the shard 2, and a data block 3 in the shard 3 belong to an edge set associated with destination vertexes 1 and 2. The data blocks 1, 4, 7, 2, and 3 may be understood as a data group. Because the data blocks 1, 4, and 7 are not scheduled to a same worker node, a worker node needs to be synchronized with another node after the worker node processing a last data block in a group allocated to the worker node. After all worker nodes complete processing all data blocks in this group, the worker node can perform graph computing of a next group of data blocks.

[0078] As shown in FIG. 14, that the nine data blocks are scheduled to two worker nodes is used as an example. According to a vertex-cut method, it is determined that the data blocks 1, 2, 3, 5, and 6 in the nine data blocks are to be scheduled to the worker node 1, and the data blocks 4, 7, 8, and 9 are to be scheduled to the worker node 2. For the data blocks 1, 4, 7, 2, and 3 in a first group of data blocks, the data block 7 is a data block that is last scheduled to the worker node 2 from the first shard, and a first synchronization flag needs to be set after the data block. The data block 3 is a data block that is last scheduled to the worker node 1 from the second shard, and a second synchronization flag needs to be set after the data block 3. Actually, the first synchronization flag may be the same as the second synchronization flag, to indicate that the worker node needs to perform data synchronization.

[0079] Optionally, in another embodiment of the graph data processing method provided in the embodiments of the present invention, that the master node determines the at least two edge sets from each shard may include:

determining, by the master node, a degree of a target vertex in each shard, where the degree indicates closeness of association between the target vertex and another vertex; and

when a degree of a first target vertex exceeds a preset threshold, classifying, by the master node, incoming edges of the first target vertex into a same edge set.



[0080] As described in the foregoing embodiment, shards are obtained by means of division according to a matrix form. Actually, to reduce IO overheads, the edge sets can be obtained by means of classification according to degrees of target vertexes. For example, in target vertexes corresponding to the shard 1, if a degree of a target vertex 2 is extremely high and exceeds a preset threshold, all incoming edges of the target vertex 2 may be classified to a same edge set.

[0081] In an embodiment, if the distributed system uses the deployment manner shown in FIG. 3A and FIG. 3B, that is, the master node and the worker nodes are physical hosts connected by using a network, the processor 510 of the physical host may execute the program in the memory 530 to complete all or some steps executed by the master node described in the foregoing embodiments. Correspondingly, all or some steps executed by the worker nodes described in the foregoing embodiments may be implemented in a similar manner. According to a general explanation, the term "program" used in this embodiment of the present invention should include but not be limited to an instruction, an instruction set, code, a code segment, a subroutine, a software module, an application, a software package, a thread, a process, a function, a firmware, a middleware, and the like.

[0082] In an embodiment, if the distributed system uses the deployment manner shown in FIG. 3C, that is, the master node and the worker nodes are all virtual machines, the virtual machine corresponding to the master node may provide various hardware resources by using a virtual hardware platform, such as a virtual processor (for example, a VCPU) and a virtual memory, and execute a program to implement all or some steps executed by the master node described in the foregoing embodiments. Correspondingly, the virtual machine corresponding to the worker nodes may also implement, in a similar manner, all or some steps performed by the worker nodes described in the foregoing embodiments.

[0083] Referring to FIG. 15, an embodiment of the present invention further provides a graph data processing apparatus 60. The data processing apparatus 60 may be the master node in FIG. 3A to FIG. 14. The graph data processing apparatus 60 includes:
an obtaining unit 601, a processing unit 602, a determining unit 603, a scheduling unit 604, a setting unit 605, and a recording unit 606.

[0084] The obtaining unit 601 may be the I/O interface in FIG. 3B. The processing unit 602, the determining unit 603, the scheduling unit 604, the setting unit 605, and the recording unit 606 may all be the processor in FIG. 3B.

[0085] The obtaining unit 601 may perform an operation process of step 101 in FIG. 4.

[0086] The processing unit 602 may perform an operation process of step 102 in FIG. 4.

[0087] The determining unit 603 may perform an operation process of step 103 in FIG. 4, and operation processes related to a step of determining in FIG. 3A to FIG. 14.

[0088] The scheduling unit 604, the setting unit 605, and the recording unit 606 may separately perform corresponding operation processes of the graph data processing method.

[0089] For functions of the foregoing units, refer to related descriptions corresponding to FIG. 3A to FIG. 14 for understanding. Details are not described herein again.

[0090] Referring to FIG. 16, an embodiment of the present invention further provides another graph data processing apparatus 70. The data processing apparatus 70 may be the worker node in FIG. 3A to FIG. 14. The graph data processing apparatus 70 includes:
a receiving unit 701, a first storage unit 702, a second storage unit 702, and a processing unit 704, where the receiving unit 701 may be the I/O interface in FIG. 3B, the first storage unit 702 may be the hard disk in FIG. 3B, the second storage unit 703 may be the memory in FIG. 3B, and the processing unit 704 may be the processor in FIG. 3B.

[0091] The receiving unit 701, the first storage unit 702, the second storage unit 703, and the processing unit 704 may separately perform operation processes corresponding to the worker node side in the graph data processing method. For functions of the units 701 to 704, refer to descriptions on the worker node side in the graph data processing method. Details are not described herein again.

[0092] A person of ordinary skill in the art may understand that all or some steps performed by the master node and the worker nodes described in the foregoing embodiments may be implemented by a program instructing related hardware (such as a processor). The program may be stored in a computer readable storage medium. The storage medium may include: a ROM, a RAM, a magnetic disk, an optical disc, or the like. According to a general explanation, the term "program" used in this embodiment of the present invention should include but not be limited to an instruction, an instruction set, code, a code segment, a subroutine, a software module, an application, a software package, a thread, a process, a function, a firmware, a middleware, and the like.

[0093] The graph data processing method and apparatus, and the system provided in the embodiments of the present invention are described in detail above. The principles and implementations of the present invention are describes herein by using specific examples. The description about the embodiments is merely used to help understand the method and core ideas of the present invention. In addition, a person of ordinary skill in the art can make modifications to the present invention in terms of the specific implementations and application scopes according to the ideas of the present invention. Therefore, the content of this specification shall not be construed as a limit to the present invention.


Claims

1. A graph data processing method, comprising:

obtaining, by a master node, graph data, wherein the graph data comprises M vertexes and a plurality of directional edges, each edge connects two of the M vertexes, a direction of each edge is from a source vertex to a destination vertex in the two vertexes, and M is an integer greater than 2;

dividing, by the master node, the graph data, to obtain P shards, wherein each shard comprises an incoming edge of at least one target vertex, the incoming edge is an edge directed to the target vertex, a sum of quantities of target vertexes corresponding to the P shards is equal to M, the target vertices corresponding to each shard are different, P is a positive integer greater than 1, and the P shards comprise a first shard and a second shard;

determining, by the master node, at least two edge sets from each shard;

scheduling, by the master node to at least two worker nodes for processing, at least two edge sets comprised in the first shard; and

scheduling, by the master node to the at least two worker nodes for processing, an associate edge set comprised in the second shard, wherein the associate edge set is an edge set that comprises an outgoing edge of a target vertex corresponding to the first shard, and the outgoing edge is an edge directed from the target vertex in the first shard.


 
2. The method according to claim 1, wherein the determining, by the master node, at least two edge sets from each shard comprises:

filling, by the master node, values of edges in the P shards into a data structure in a P×P matrix form according to directions of the edges, to obtain P2 data blocks, wherein

each data block is an edge set, each shard comprises at least two data blocks, the P×P matrix is formed by using the M vertexes as a horizontal axis and a vertical axis; and if a vertex on the horizontal axis is a source vertex, a vertex on the vertical axis is a destination vertex; or if a vertex on the horizontal axis is a destination vertex, a vertex on the vertical axis is a source vertex.


 
3. The method according to claim 2, wherein the method further comprises:

setting, by the master node, a unique block identifier for each of the P2 data blocks; and

determining, by the master node, a correspondence between the block identifiers of the P2 data blocks and a plurality of worker nodes; and

the scheduling, by the master node to at least two worker nodes for processing, at least two edge sets comprised in the first shard comprises:
scheduling, by the master node according to the correspondence to the at least two worker nodes for processing, at least two data blocks comprised in the first shard.


 
4. The method according to claim 3, wherein the scheduling, by the master node to the at least two worker nodes for processing, an associate edge set comprised in the second shard comprises:
scheduling, by the master node according to the correspondence to the at least two worker nodes for processing, data blocks corresponding to the associate edge set.
 
5. The method according to claim 3 or 4, wherein the method further comprises:

setting, by the master node, a synchronization flag, wherein

the synchronization flag is used to instruct a worker node where a first data block is located to perform data synchronization with a worker node where a second data block is located after processing the first data block, the first data block is a last scheduled data block according to a scheduling sequence in the first shard, and the second data block is a last scheduled data block in the data blocks corresponding to the associate edge set.


 
6. The method according to claim 1, wherein the determining, by the master node, at least two edge sets from each shard comprises:

determining, by the master node, a degree of a target vertex in each shard, wherein the degree indicates closeness of association between the target vertex and another vertex; and

when a degree of a first target vertex exceeds a preset threshold, classifying, by the master node, incoming edges of the first target vertex into a same edge set.


 
7. A graph data processing method, comprising:

receiving, by a first worker node by using an I/O interface, X edge sets that are scheduled by a master node according to a scheduling sequence from P shards, wherein the P shards are obtained after the master node divides graph data, the graph data comprises M vertexes and a plurality of directional edges, each edge connects two of the M vertexes, a direction of each edge is from a source vertex to a destination vertex in the two vertexes, M is an integer greater than 2, each shard comprises an incoming edge of at least one target vertex, the incoming edge is an edge directed to the target vertex, a sum of quantities of target vertexes corresponding to the P shards is equal to M, the target vertices corresponding to each shard are different, P is a positive integer greater than 1, and X is a positive integer;

storing the X edge sets in a hard disk by using the I/O interface of the first worker node; and

loading, by a processor of the first worker node to a memory according to the scheduling sequence of the master node, Y edge sets in the X edge sets stored in the hard disk, and extracting data of Z edge sets from the memory for graph computing, wherein XYZ, and X, Y, and Z are all positive integers.


 
8. The method according to claim 7, wherein each edge set is a data block, the P shards comprise P2 data blocks, the P2 data blocks are obtained after the master node fills values of edges in the P shards into a data structure in a P×P matrix form according to directions of edges, the P shards comprise a first shard and a second shard, and the method further comprises:
performing, by the processor of the first worker node, data synchronization with a second worker node where a second data block is located according to a synchronization flag after the processor of the first worker node processing a first data block, wherein the first data block is a data block that is last scheduled to the first worker node according to a scheduling sequence in the first shard, and the second data block is a data block that is last scheduled to the second worker node in the second shard and that comprises an outgoing edge of a target vertex corresponding to the first shard.
 
9. A graph data processing apparatus, comprising:

an obtaining unit, configured to obtain graph data, wherein the graph data comprises M vertexes and a plurality of directional edges, each edge connects two of the M vertexes, a direction of each edge is from a source vertex to a destination vertex in the two vertexes, and M is an integer greater than 2;

a processing unit, configured to divide the graph data obtained by the obtaining unit, to obtain P shards, wherein each shard comprises an incoming edge of at least one target vertex, the incoming edge is an edge directed to the target vertex, a sum of quantities of target vertexes corresponding to the P shards is equal to M, the destination vertexes corresponding to each shard are different, P is a positive integer greater than 1, and the P shards comprise a first shard and a second shard;

a determining unit, configured to determine at least two edge sets from each shard obtained after the processing unit performs processing; and

a scheduling unit, configured to: schedule, to at least two worker nodes for processing, at least two edge sets comprised in the first shard, and schedule, to the at least two worker nodes for processing, an associate edge set comprised in the second shard, wherein the associate edge set is an edge set that comprises an outgoing edge of a target vertex corresponding to the first shard, and the outgoing edge is an edge directed from the target vertex in the first shard.


 
10. The apparatus according to claim 9, wherein
the determining unit is specifically configured to:

fill values of edges in the P shards into a data structure in a P×P matrix form according to directions of the edges, to obtain P2 data blocks, wherein

each data block is an edge set, each shard comprises at least two data blocks, the P×P matrix is formed by using the M vertexes as a horizontal axis and a vertical axis; and if a vertex on the horizontal axis is a source vertex, a vertex on the vertical axis is a destination vertex; or if a vertex on the horizontal axis is a destination vertex, a vertex on the vertical axis is a source vertex.


 
11. The apparatus according to claim 10, wherein the apparatus further comprises a setting unit,
the setting unit is configured to set a unique block identifier for each of the P2 data blocks;
the determining unit is further configured to determine a correspondence between a plurality of worker nodes and the block identifiers that are set by the setting unit for the P2 data blocks; and
the scheduling unit is configured to schedule, according to the correspondence of a recoding unit to the at least two worker nodes for processing, at least two data blocks comprised in the first shard.
 
12. The apparatus according to claim 11, wherein
the scheduling unit is specifically configured to schedule, according to the correspondence to the at least two worker nodes for processing, data blocks corresponding to the associate edge set.
 
13. The apparatus according to claim 11 or 12, wherein
the setting unit is further configured to set a synchronization flag, wherein
the synchronization flag is used to instruct a worker node where a first data block is located to perform data synchronization with a worker node where a second data block is located after processing the first data block, the first data block is a last scheduled data block according to a scheduling sequence in the first shard, and the second data block is a last scheduled data block in the data blocks corresponding to the associate edge set.
 
14. The apparatus according to claim 9, wherein
the determining unit is specifically configured to:

determine a degree of a target vertex in each shard, wherein the degree indicates closeness of association between the target vertex and another vertex; and

when a degree of a first target vertex exceeds a preset threshold, classify incoming edges of the first target vertex into a same edge set.


 
15. A graph data processing apparatus, wherein the apparatus comprises:

a receiving unit, configured to receive X edge sets that are scheduled by a master node according to a scheduling sequence from P shards, wherein the P shards are obtained after the master node divides graph data, the graph data comprises M vertexes and a plurality of directional edges, each edge connects two of the M vertexes, a direction of each edge is from a source vertex to a destination vertex in the two vertexes, M is an integer greater than 2, each shard comprises an incoming edge of at least one target vertex, the incoming edge is an edge directed to the target vertex, a sum of quantities of target vertexes corresponding to the P shards is equal to M, the target vertices corresponding to each shard are different, P is a positive integer greater than 1, and X is a positive integer;

a first storage unit, configured to store the X edge sets received by the receiving unit;

a second storage unit, configured to cache Y edge sets loaded from the first storage unit; and

a processing unit, configured to: load, to the second storage unit, the Y edge sets in the X edge sets stored in the first storage unit, and extract data of Z edge sets from the second storage unit for graph computing, wherein XYZ, and X, Y, and Z are all positive integers.


 
16. The apparatus according to claim 15, wherein
each edge set is a data block, the P shards comprise P2 data blocks, the P2 data blocks are obtained after the master node fills values of edges in the P shards into a data structure in a P×P matrix form according to directions of edges, the P shards comprise a first shard and a second shard, and the processing unit is further configured to: read a synchronization flag, and perform data synchronization with a worker node where a second data block is located according to an instruction of the synchronization flag after the processing unit processing a first data block, wherein the first data block is a last scheduled data block according to a scheduling sequence in the first shard, and the second data block is a data block that is last scheduled to the worker node in the second shard and that comprises an outgoing edge of a target vertex corresponding to the first shard.
 
17. A distributed system, comprising a master node and a plurality of worker nodes, wherein the master node is the graph data processing apparatus according to any one of claims 9 to 14, and the worker node is the graph data processing apparatus according to claim 15 or 16.
 




Drawing

















































Search report










Cited references

REFERENCES CITED IN THE DESCRIPTION



This list of references cited by the applicant is for the reader's convenience only. It does not form part of the European patent document. Even though great care has been taken in compiling the references, errors or omissions cannot be excluded and the EPO disclaims all liability in this regard.

Patent documents cited in the description