WO2019062182A1 - Procédé et dispositif de synchronisation de données, et support de stockage lisible par ordinateur - Google Patents

Procédé et dispositif de synchronisation de données, et support de stockage lisible par ordinateur Download PDF

Info

Publication number
WO2019062182A1
WO2019062182A1 PCT/CN2018/089187 CN2018089187W WO2019062182A1 WO 2019062182 A1 WO2019062182 A1 WO 2019062182A1 CN 2018089187 W CN2018089187 W CN 2018089187W WO 2019062182 A1 WO2019062182 A1 WO 2019062182A1
Authority
WO
WIPO (PCT)
Prior art keywords
synchronization
task
data
task queue
update request
Prior art date
Application number
PCT/CN2018/089187
Other languages
English (en)
Chinese (zh)
Inventor
李占川
Original Assignee
平安科技(深圳)有限公司
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 平安科技(深圳)有限公司 filed Critical 平安科技(深圳)有限公司
Publication of WO2019062182A1 publication Critical patent/WO2019062182A1/fr

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/52Program synchronisation; Mutual exclusion, e.g. by means of semaphores
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/23Updating
    • G06F16/2358Change logging, detection, and notification
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/27Replication, distribution or synchronisation of data between databases or within a distributed database system; Distributed database system architectures therefor
    • G06F16/275Synchronous replication
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/50Allocation of resources, e.g. of the central processing unit [CPU]
    • G06F9/5005Allocation of resources, e.g. of the central processing unit [CPU] to service a request
    • G06F9/5027Allocation of resources, e.g. of the central processing unit [CPU] to service a request the resource being a machine, e.g. CPUs, Servers, Terminals
    • G06F9/5038Allocation of resources, e.g. of the central processing unit [CPU] to service a request the resource being a machine, e.g. CPUs, Servers, Terminals considering the execution order of a plurality of tasks, e.g. taking priority or time dependency constraints into consideration
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/544Buffers; Shared memory; Pipes
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q50/00Information and communication technology [ICT] specially adapted for implementation of business processes of specific business sectors, e.g. utilities or tourism
    • G06Q50/10Services
    • G06Q50/20Education
    • G06Q50/205Education administration or guidance

Definitions

  • the present application relates to the field of computer technologies, and in particular, to a data synchronization apparatus, method, and computer readable storage medium.
  • the existing data synchronization method is: the business management system opens a specific interface to the training management system, and the training management system
  • data update the operation of adding, deleting, modifying, etc. related data such as course data and personnel data
  • the update request is triggered in real time, and the update information is synchronized to the business management system, and the existing request method is in each request.
  • the synchronization code is added to the method to synchronize the information.
  • the present application provides a data synchronization apparatus, method, and computer readable storage medium, the main purpose of which is to reduce code redundancy and improve data synchronization efficiency.
  • the present application provides a data synchronization apparatus including a memory and a processor in which a data synchronization program executable on the processor is stored, the data synchronization program being processed
  • a data synchronization apparatus including a memory and a processor in which a data synchronization program executable on the processor is stored, the data synchronization program being processed
  • the thread in the thread pool is started to process the task queue.
  • the synchronization task in the middle to send the synchronization data stored in the cache area to the external management system.
  • the present application further provides a data synchronization method, where the method includes:
  • the thread in the thread pool is started to process the task queue.
  • the synchronization task in the middle to send the synchronization data stored in the cache area to the external management system.
  • the present application further provides a computer readable storage medium having a data synchronization program stored thereon, the data synchronization program being executable by one or more processors to implement The steps of the data synchronization method as described above.
  • the data synchronization device, the method, and the computer readable storage medium provided by the present application when detecting an update request, acquire data to be updated from the update request, and generate synchronization data according to the acquired data, and establish corresponding to the synchronization data.
  • the synchronization task is added to the task queue, and the synchronization data is associated with the synchronization task and cached in the cache area.
  • the startup is started.
  • the thread in the thread pool starts to process the synchronization task in the task queue to send the synchronization data cached in the cache area to the external management system.
  • the present application batches the data by creating the task list and buffering the data at the same time. Synchronization processing does not need to trigger the update request every time there is an update request, which avoids the occurrence of code redundancy.
  • the task of processing the task queue through threads in the thread pool greatly improves the efficiency of data synchronization.
  • FIG. 1 is a schematic diagram of a preferred embodiment of a data synchronization apparatus of the present application
  • FIG. 2 is a schematic diagram of functional modules of a data synchronization program in an embodiment of a data synchronization apparatus according to the present application;
  • FIG. 3 is a flow chart of a preferred embodiment of a data synchronization method of the present application.
  • the application provides a data synchronization device.
  • FIG. 1 a schematic diagram of a preferred embodiment of a data synchronization apparatus of the present application is shown.
  • the data synchronization device may be a PC (Personal Computer), or may be a smart phone, a tablet computer, an e-book reader, or an MP3 (Moving Picture Experts Group Audio Layer III). Level 3) Player, MP4 (Moving Picture Experts Group Audio Layer IV) player, portable computer and other portable terminal devices with display functions.
  • PC Personal Computer
  • MP3 Moving Picture Experts Group Audio Layer III
  • MP4 Moving Picture Experts Group Audio Layer IV
  • the data synchronization device includes a memory 11, a processor 12, a communication bus 13, and a network interface 14.
  • the memory 11 includes at least one type of readable storage medium including a flash memory, a hard disk, a multimedia card, a card type memory (for example, an SD or DX memory, etc.), a magnetic memory, a magnetic disk, an optical disk, and the like.
  • the memory 11 may be an internal storage unit of the data synchronization device, such as a hard disk of the data synchronization device, in some embodiments.
  • the memory 11 may also be an external storage device of the data synchronization device in other embodiments, such as a plug-in hard disk equipped with a data synchronization device, a smart memory card (SMC), and a secure digital (SD). Card, flash card, etc.
  • the memory 11 may also include both an internal storage unit of the data synchronization device and an external storage device.
  • the memory 11 can be used not only for storing application software installed in the data synchronization device and various types of data, such as codes of a data synchronization program, but also for temporarily storing data that has been output or is to be output.
  • the processor 12 may be a Central Processing Unit (CPU), controller, microcontroller, microprocessor or other data processing chip for running program code or processing stored in the memory 11. Data, such as executing a data synchronization program.
  • CPU Central Processing Unit
  • controller microcontroller
  • microprocessor or other data processing chip for running program code or processing stored in the memory 11.
  • Data such as executing a data synchronization program.
  • Communication bus 13 is used to implement connection communication between these components.
  • the network interface 14 can optionally include a standard wired interface, a wireless interface (such as a WI-FI interface), and is typically used to establish a communication connection between the device and other electronic devices.
  • a standard wired interface such as a WI-FI interface
  • Figure 1 shows only data synchronization devices having components 11-14 and data synchronization procedures, but it should be understood that not all illustrated components may be implemented, and more or fewer components may be implemented instead.
  • the device may further include a user interface
  • the user interface may include a display
  • an input unit such as a keyboard
  • the optional user interface may further include a standard wired interface and a wireless interface.
  • the display may be an LED display, a liquid crystal display, a touch-sensitive liquid crystal display, an OLED (Organic Light-Emitting Diode) touch sensor, or the like.
  • the display may also be suitably referred to as a display screen or display unit for displaying information processed in the data synchronization device and a user interface for displaying visualizations.
  • the device may also include a touch sensor.
  • the area provided by the touch sensor for the user to perform a touch operation is referred to as a touch area.
  • the touch sensor described herein may be a resistive touch sensor, a capacitive touch sensor, or the like.
  • the touch sensor includes not only a contact type touch sensor but also a proximity type touch sensor or the like.
  • the touch sensor may be a single sensor or a plurality of sensors arranged, for example, in an array.
  • the area of the display of the device may be the same as or different from the area of the touch sensor.
  • a display is stacked with the touch sensor to form a touch display. The device detects a user-triggered touch operation based on a touch screen display.
  • a data synchronization program is stored in the memory 11; when the processor 12 executes the data synchronization program stored in the memory 11, the following steps are implemented:
  • the synchronization data corresponding to the update request is acquired, and a synchronization task corresponding to the synchronization data is established.
  • the training management system can be run in the synchronization device provided in this embodiment, and the synchronization device can be combined with one or more
  • the training course manages the client to establish remote communication. If the client generates new data during use, it needs to update the data to the external management system synchronously. For example, when there are operations such as adding, deleting, or modifying related data such as course data and personnel data in the client, the client sends an update request to the synchronization device, and the new data after the data update is sent to the synchronization device.
  • an external management system such as a business management system.
  • the synchronization device proposed in this embodiment interfaces with an external management system through a specific interface.
  • the client performs real-time detection on the above update operation, for example, an operation of adding, deleting, and modifying related data such as course data and personnel data.
  • the data content corresponding to the update operation is obtained.
  • the modified data content corresponding to the modification operation and the location of the data content are acquired, and synchronization data is generated, and the client sends an update request based on the synchronization data to the update request.
  • the synchronization device when receiving the update request, acquires synchronization data corresponding to the update request, and establishes a synchronization task corresponding to the synchronization data.
  • a synchronization task is added to the task queue, and the synchronization data is associated with the synchronization task and stored in the cache area.
  • a task queue is established in advance, and the synchronization task established in the update device is added to the task queue as a task to be processed.
  • the synchronization tasks may be added to the task queue in a first to last order according to the setup time of the synchronization tasks when a new synchronization task is generated.
  • the tasks in the task queue are arranged according to the priority order of the various institutional nodes of the training course management system.
  • the processor 12 is further configured to execute the data synchronization program to perform the following steps: after acquiring the synchronization data corresponding to the update request, before the step of adding the synchronization task to the task queue Obtaining an organization identifier from the update request, to determine a priority of the organization node corresponding to the to-be-updated request according to the organization identifier.
  • the step of adding the synchronization task to the task queue includes adding the synchronization task to the task queue in descending order of priority of the corresponding organization node.
  • the above-mentioned institutional nodes are training courses distributed in various places, and these institutions use the same training courses to manage the clients.
  • the client sends an update request to the synchronization device
  • the client carries the organization identifier of the institution in the update request.
  • the synchronization device pre-sets a different priority order for each organization node, and the data updated by the higher-priority organization node can be preferentially synchronized, and the data updated by the lower-priority organization node can be synchronized later. .
  • the synchronization device determines the structural node corresponding to the update request according to the organization identifier carried in the update request, and determines the priority of the organization node according to the priority order of the preset organization node, and stores the corresponding synchronization data into the task list. , store in order of priority.
  • the synchronization device is pre-divided with a storage area of a certain size for storing synchronization data corresponding to the synchronization task, and the size of the storage area can be set according to actual application conditions.
  • the thread in the thread pool is started to process the task queue.
  • the synchronization task in the middle to send the synchronization data stored in the cache area to the external management system.
  • the synchronization device detects the storage amount of the synchronization data in the cache area or the number of tasks in the task queue in real time, when the storage amount of the synchronization data cached in the cache area reaches a first preset threshold, or the task quantity in the task queue reaches When the second preset threshold is reached, the threads in the thread pool are started, and the synchronization task is executed in the order of the tasks in the task queue.
  • the maximum number of threads can be set in advance according to the workload of the task, and each time the thread pool is started to execute the task, multiple threads that do not exceed the maximum number of threads can be opened according to the amount of tasks in the task queue.
  • the thread in the thread pool when it is detected that the storage amount of the synchronization data cached in the cache area reaches a preset threshold, the thread in the thread pool is started to process the synchronization task in the task queue to synchronize the cached synchronization data to the first
  • the steps in the second system may be replaced by the following steps: when detecting that the synchronization time interval reaches a preset time interval, the thread in the startup thread pool processes the synchronization task in the task queue to synchronize the storage in the cache area.
  • the data is sent to an external management system.
  • the data synchronization device of the embodiment obtains the data to be updated from the update request when the update request is detected, and generates synchronization data according to the acquired data, and establishes a synchronization task corresponding to the synchronization data, and the synchronization task is generated.
  • the above synchronization data is associated with the synchronization task and cached in the cache area.
  • the thread in the thread pool starts to process.
  • the synchronization task in the task queue is used to send the synchronization data cached in the cache area to the external management system that is connected to the host.
  • the present invention performs batch synchronization processing on the data by means of establishing the task list and buffering the data at the same time.
  • the update request is triggered when there is an update request, which avoids the occurrence of code redundancy.
  • the task of processing the task queue through the thread in the thread pool greatly improves the efficiency of data synchronization.
  • the data synchronization program may also be divided into one or more modules, one or more modules being stored in the memory 11 and being processed by one or more processors (this embodiment is The processor 12) is executed to complete the application.
  • a module referred to herein refers to a series of computer program instructions capable of performing a particular function for describing the execution of a data synchronization program in a data synchronization device.
  • FIG. 2 it is a functional block diagram of a data synchronization program in an embodiment of the data synchronization apparatus of the present application.
  • the data synchronization program may be divided into a data processing module 10, a task creation module 20, and data.
  • the storage module 30 and the data sending module 40 are exemplarily:
  • the data processing module 10 is configured to: when receiving the update request, acquire synchronization data corresponding to the update request;
  • the task establishing module 20 is configured to: establish a synchronization task corresponding to the synchronization data;
  • the data storage module 30 is configured to: add a synchronization task to the task queue, and associate the synchronization data with the synchronization task and store the data in the cache area;
  • the data sending module 40 is configured to: when detecting that the storage amount of the synchronization data cached in the cache area reaches a first preset threshold, or the task quantity in the task queue reaches a second preset threshold, start the thread pool The thread processes the synchronization task in the task queue to send the synchronization data stored in the cache area to the external management system.
  • the functions or operation steps performed by the data processing module 10, the task creation module 20, the data storage module 30, and the data transmission module 40 are substantially the same as those of the foregoing embodiment, and are not described herein again.
  • the present application also provides a data synchronization method.
  • FIG. 3 it is a flowchart of a preferred embodiment of the data synchronization method of the present application.
  • the data synchronization method includes:
  • Step S10 When receiving the update request, acquire synchronization data corresponding to the update request, and establish a synchronization task corresponding to the synchronization data.
  • the method proposed in this embodiment can be performed by a device, and the synchronization device can be implemented by software and/or hardware.
  • the device can be a synchronizing device.
  • the training management system can be run in the synchronization device provided in this embodiment, and the synchronization device can be combined with one or more
  • the training course manages the client to establish remote communication. If the client generates new data during use, it needs to update the data to the external management system synchronously.
  • the client when there are operations such as adding, deleting, or modifying related data such as course data and personnel data in the client, the client sends an update request to the synchronization device, and the new data after the data update is sent to the synchronization device.
  • an external management system such as a business management system.
  • the synchronization device proposed in this embodiment interfaces with an external management system through a specific interface.
  • the client performs real-time detection on the above update operation, for example, an operation of adding, deleting, and modifying related data such as course data and personnel data.
  • the data content corresponding to the update operation is obtained.
  • the modified data content corresponding to the modification operation and the location of the data content are acquired, and synchronization data is generated, and the client sends an update request based on the synchronization data to the update request.
  • the synchronization device when receiving the update request, acquires synchronization data corresponding to the update request, and establishes a synchronization task corresponding to the synchronization data.
  • step S20 the synchronization task is added to the task queue, and the synchronization data is associated with the synchronization task and stored in the cache area.
  • a task queue is established in advance, and the synchronization task established in the update device is added to the task queue as a task to be processed.
  • the synchronization tasks may be added to the task queue in a first to last order according to the setup time of the synchronization tasks when a new synchronization task is generated.
  • the tasks in the task queue are arranged according to the priority order of the various institutional nodes of the training course management system.
  • the method further includes the following steps: after acquiring the synchronization data corresponding to the update request, acquiring the organization identifier from the update request, to Determining, according to the organization identifier, a priority of an organization node corresponding to the to-be-updated request.
  • the step of adding the synchronization task to the task queue includes adding the synchronization task to the task queue in descending order of priority of the corresponding organization node.
  • the above-mentioned institutional nodes are training courses distributed in various places, and these institutions use the same training courses to manage the clients.
  • the client sends an update request to the synchronization device
  • the client carries the organization identifier of the institution in the update request.
  • the synchronization device pre-sets a different priority order for each organization node, and the data updated by the higher-priority organization node can be preferentially synchronized, and the data updated by the lower-priority organization node can be synchronized later. .
  • the synchronization device determines the structural node corresponding to the update request according to the organization identifier carried in the update request, and determines the priority of the organization node according to the priority order of the preset organization node, and stores the corresponding synchronization data into the task list. , store in order of priority.
  • the synchronization device is pre-divided with a storage area of a certain size for storing synchronization data corresponding to the synchronization task, and the size of the storage area can be set according to actual application conditions.
  • Step S30 when it is detected that the storage amount of the synchronization data cached in the cache area reaches a first preset threshold, or the task quantity in the task queue reaches a second preset threshold, the thread processing in the thread pool is started. Synchronizing tasks in the task queue to send synchronization data stored in the cache area to an external management system.
  • the synchronization device detects the storage amount of the synchronization data in the cache area or the number of tasks in the task queue in real time, when the storage amount of the synchronization data cached in the cache area reaches a first preset threshold, or the task quantity in the task queue reaches When the second preset threshold is reached, the threads in the thread pool are started, and the synchronization task is executed in the order of the tasks in the task queue.
  • the maximum number of threads can be set in advance according to the workload of the task, and each time the thread pool is started to execute the task, multiple threads that do not exceed the maximum number of threads can be opened according to the amount of tasks in the task queue.
  • the thread in the thread pool when it is detected that the storage amount of the synchronization data cached in the cache area reaches a preset threshold, the thread in the thread pool is started to process the synchronization task in the task queue to synchronize the cached synchronization data to the first
  • the steps in the second system may be replaced by the following steps: when detecting that the synchronization time interval reaches a preset time interval, the thread in the startup thread pool processes the synchronization task in the task queue to synchronize the storage in the cache area.
  • the data is sent to an external management system.
  • the data synchronization method in this embodiment obtains the data to be updated from the update request when the update request is detected, and generates synchronization data according to the acquired data, and establishes a synchronization task corresponding to the synchronization data, and the synchronization task is generated.
  • the above synchronization data is associated with the synchronization task and cached in the cache area.
  • the thread in the thread pool starts to process.
  • the synchronization task in the task queue is used to send the synchronization data cached in the cache area to the external management system that is connected to the host.
  • the present application performs the batch synchronization processing on the data by the method of establishing the task list and buffering the data at the same time.
  • the update request is triggered when there is an update request, which avoids the occurrence of code redundancy.
  • the task of processing the task queue through the thread in the thread pool greatly improves the efficiency of data synchronization.
  • the embodiment of the present application further provides a computer readable storage medium, where the data synchronization program is stored, and the data synchronization program can be executed by one or more processors to implement the following operations:
  • the thread in the thread pool is started to process the task queue.
  • the synchronization task in the middle to send the synchronization data stored in the cache area to the external management system.
  • the thread in the thread pool is started.
  • the step of processing the synchronization task in the task queue to send the synchronization data stored in the cache area to the external management system may be replaced by the following steps:
  • the thread in the startup thread pool processes the synchronization task in the task queue to send the synchronization data stored in the cache area to the external management system.
  • the number of threads started is dynamically adjusted according to the total number of synchronization tasks to be processed and the maximum number of threads of the thread pool set in advance.
  • the synchronization tasks are added to the task queue in a first-to-last order in accordance with the setup time of the synchronization tasks.
  • the technical solution of the present application which is essential or contributes to the prior art, may be embodied in the form of a software product stored in a storage medium (such as ROM/RAM as described above). , a disk, an optical disk, including a number of instructions for causing a terminal device (which may be a mobile phone, a computer, a server, or a network device, etc.) to perform the methods described in the various embodiments of the present application.
  • a terminal device which may be a mobile phone, a computer, a server, or a network device, etc.

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Software Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • Business, Economics & Management (AREA)
  • Databases & Information Systems (AREA)
  • Tourism & Hospitality (AREA)
  • Strategic Management (AREA)
  • Educational Technology (AREA)
  • Data Mining & Analysis (AREA)
  • Educational Administration (AREA)
  • Marketing (AREA)
  • Human Resources & Organizations (AREA)
  • General Health & Medical Sciences (AREA)
  • Primary Health Care (AREA)
  • General Business, Economics & Management (AREA)
  • Computing Systems (AREA)
  • Economics (AREA)
  • Health & Medical Sciences (AREA)
  • Multi Processors (AREA)

Abstract

La présente invention concerne un dispositif de synchronisation de données, comprenant une mémoire et un processeur, un programme de synchronisation de données pouvant être exécuté sur le processeur qui est stocké sur la mémoire. Lorsque le programme est exécuté par le processeur, les étapes suivantes sont mises en œuvre : lorsqu'une demande de mise à jour est reçue, acquérir des données de synchronisation correspondant à la demande de mise à jour, et établir des tâches de synchronisation correspondant aux données de synchronisation; ajouter les tâches de synchronisation dans une file d'attente de tâches, et associer les données de synchronisation aux tâches de synchronisation, puis les stocker dans une région de mémoire cache; et lorsqu'il est détecté que la quantité de stockage des données de synchronisation mises en cache dans la région de mémoire cache atteint un premier seuil prédéfini ou que le nombre de tâches dans la file d'attente de tâches atteint un second seuil prédéfini, démarrer des fils dans un groupe de fils pour traiter les tâches de synchronisation dans la file d'attente de tâches, de telle sorte que les données de synchronisation stockées dans la région de mémoire cache sont envoyées à un système de gestion externe. La présente invention concerne en outre un procédé de synchronisation de données et un support de stockage lisible par ordinateur. La présente invention réduit la redondance de code et améliore l'efficacité de synchronisation de données.
PCT/CN2018/089187 2017-09-30 2018-05-31 Procédé et dispositif de synchronisation de données, et support de stockage lisible par ordinateur WO2019062182A1 (fr)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201710916482.9A CN107908472A (zh) 2017-09-30 2017-09-30 数据同步装置、方法及计算机可读存储介质
CN201710916482.9 2017-09-30

Publications (1)

Publication Number Publication Date
WO2019062182A1 true WO2019062182A1 (fr) 2019-04-04

Family

ID=61841078

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2018/089187 WO2019062182A1 (fr) 2017-09-30 2018-05-31 Procédé et dispositif de synchronisation de données, et support de stockage lisible par ordinateur

Country Status (2)

Country Link
CN (1) CN107908472A (fr)
WO (1) WO2019062182A1 (fr)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110569123A (zh) * 2019-07-31 2019-12-13 苏宁云计算有限公司 线程分配方法、装置、计算机设备和存储介质
CN112187889A (zh) * 2020-09-15 2021-01-05 中信银行股份有限公司 一种数据同步方法、装置及存储介质
CN113467661A (zh) * 2021-07-19 2021-10-01 维沃移动通信有限公司 任务同步方法、装置、设备及可读存储介质
US20220237153A1 (en) * 2020-03-24 2022-07-28 Tencent Technology (Shenzhen) Company Limited Synchronization processing method and related apparatus
US12099482B2 (en) * 2020-03-24 2024-09-24 Tencent Technology (Shenzhen) Company Limited Synchronization processing method and related apparatus

Families Citing this family (16)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107908472A (zh) * 2017-09-30 2018-04-13 平安科技(深圳)有限公司 数据同步装置、方法及计算机可读存储介质
CN108572919A (zh) * 2018-05-30 2018-09-25 平安普惠企业管理有限公司 自动化测试方法、装置、计算机设备及存储介质
CN109116818B (zh) * 2018-08-08 2020-03-17 新智能源系统控制有限责任公司 一种scada系统升级时的实时数据转储方法和装置
CN109299122A (zh) * 2018-09-26 2019-02-01 努比亚技术有限公司 一种数据同步方法、设备和计算机可存储介质
CN111340202B (zh) * 2018-12-18 2023-06-09 上海寒武纪信息科技有限公司 运算方法、装置及相关产品
CN109542216B (zh) 2018-10-11 2022-11-22 平安科技(深圳)有限公司 人机交互方法、系统、计算机设备及存储介质
CN109542428B (zh) * 2018-10-16 2024-06-11 北京神州数码云科信息技术有限公司 业务处理方法、装置、计算机设备和存储介质
CN109634853A (zh) * 2018-11-30 2019-04-16 平安科技(深圳)有限公司 数据测试方法、系统、电子装置及计算机可读存储介质
CN111865834B (zh) * 2019-04-26 2021-12-03 华为技术有限公司 一种消息处理方法及装置
CN110196884B (zh) * 2019-05-31 2022-04-29 北京大米科技有限公司 基于分布式数据库的数据写入方法、存储介质和电子设备
CN110602165B (zh) * 2019-08-08 2022-09-06 数字广东网络建设有限公司 政务数据同步方法、装置、系统、计算机设备和存储介质
CN110765288B (zh) * 2019-09-04 2022-09-27 北京旷视科技有限公司 一种图像信息同步方法、装置、系统及存储介质
CN111488366B (zh) * 2020-04-09 2023-08-01 百度在线网络技术(北京)有限公司 关系型数据库更新方法、装置、设备及存储介质
CN111666339B (zh) * 2020-05-26 2023-10-24 和芯星通科技(北京)有限公司 一种多线程数据同步方法
CN112818054B (zh) * 2020-10-15 2022-05-06 广州南天电脑系统有限公司 数据同步方法、装置、计算机设备和存储介质
CN113504907A (zh) * 2021-07-06 2021-10-15 上海商汤智能科技有限公司 课程定制方法及装置、电子设备和存储介质

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6446176B1 (en) * 2000-03-09 2002-09-03 Storage Technology Corporation Method and system for transferring data between primary storage and secondary storage using a bridge volume and an internal snapshot copy of the data being transferred
CN104408048A (zh) * 2014-10-27 2015-03-11 清华大学 一种缓冲式云存储数据同步的方法和装置
CN105208060A (zh) * 2014-06-19 2015-12-30 阿里巴巴集团控股有限公司 业务数据同步方法、装置及系统
CN107908472A (zh) * 2017-09-30 2018-04-13 平安科技(深圳)有限公司 数据同步装置、方法及计算机可读存储介质

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20140279871A1 (en) * 2013-03-13 2014-09-18 Marcelo Ochoa System and method for providing near real time data synchronization
CN106156165A (zh) * 2015-04-16 2016-11-23 阿里巴巴集团控股有限公司 异构数据源之间的数据同步方法和装置
CN105677849A (zh) * 2016-01-06 2016-06-15 北京京东尚科信息技术有限公司 数据更新方法和装置
CN106412088B (zh) * 2016-10-25 2019-10-18 深圳市万普拉斯科技有限公司 一种数据同步方法及终端

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6446176B1 (en) * 2000-03-09 2002-09-03 Storage Technology Corporation Method and system for transferring data between primary storage and secondary storage using a bridge volume and an internal snapshot copy of the data being transferred
CN105208060A (zh) * 2014-06-19 2015-12-30 阿里巴巴集团控股有限公司 业务数据同步方法、装置及系统
CN104408048A (zh) * 2014-10-27 2015-03-11 清华大学 一种缓冲式云存储数据同步的方法和装置
CN107908472A (zh) * 2017-09-30 2018-04-13 平安科技(深圳)有限公司 数据同步装置、方法及计算机可读存储介质

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110569123A (zh) * 2019-07-31 2019-12-13 苏宁云计算有限公司 线程分配方法、装置、计算机设备和存储介质
CN110569123B (zh) * 2019-07-31 2022-08-02 苏宁云计算有限公司 线程分配方法、装置、计算机设备和存储介质
US20220237153A1 (en) * 2020-03-24 2022-07-28 Tencent Technology (Shenzhen) Company Limited Synchronization processing method and related apparatus
US12099482B2 (en) * 2020-03-24 2024-09-24 Tencent Technology (Shenzhen) Company Limited Synchronization processing method and related apparatus
CN112187889A (zh) * 2020-09-15 2021-01-05 中信银行股份有限公司 一种数据同步方法、装置及存储介质
CN113467661A (zh) * 2021-07-19 2021-10-01 维沃移动通信有限公司 任务同步方法、装置、设备及可读存储介质
WO2023001027A1 (fr) * 2021-07-19 2023-01-26 维沃移动通信有限公司 Procédé et appareil de synchronisation de tâche, dispositif et support de stockage lisible

Also Published As

Publication number Publication date
CN107908472A (zh) 2018-04-13

Similar Documents

Publication Publication Date Title
WO2019062182A1 (fr) Procédé et dispositif de synchronisation de données, et support de stockage lisible par ordinateur
AU2020203219B2 (en) Sharing unmanaged content using a content management system
US10455542B2 (en) Method of synchronizing notification messages for electronic devices and electronic devices
WO2019148722A1 (fr) Dispositif électronique, procédé de migration et d'appel de données, et support d'informations
CN107172182B (zh) 一种消息推送方法、消息推送服务器及终端
WO2020082558A1 (fr) Procédé de réglage de point d'arrêt basé sur un nom de fonction, dispositif, appareil informatique et support de stockage
US10942938B2 (en) Caching for query processing systems
EP3142304A1 (fr) Procédé de synchronisation pour un message de notification d'un dispositif électronique, serveur et dispositif électronique
US20160330299A1 (en) Data distribution method and system and data receiving apparatus
US20150116540A1 (en) Method and apparatus for applying a tag/identification to a photo/video immediately after capture
TW201601059A (zh) 螢幕分享方法以及使用該方法的裝置
WO2019056793A1 (fr) Dispositif, procédé et support d'enregistrement lisible par ordinateur pour l'identification de curriculum vitae
US10528560B2 (en) Filtering for data models
US10558663B2 (en) Automated application of query hints
JP2016533546A (ja) ネットワーク通信環境における仲介主体のための信頼できるメッセージングのための手法
WO2020024403A1 (fr) Dispositif et procédé d'exploration de données de corpus cible, et support d'informations
WO2019114158A1 (fr) Procédé et dispositif d'affichage d'animation en temps réel, terminal électronique et support d'informations lisible
US10817281B2 (en) Packaged application resources for mobile applications
US20190073226A1 (en) Layout management for mobile applications
US11250092B2 (en) Managing multi-dimensional array of data definitions
US10909206B2 (en) Rendering visualizations using parallel data retrieval
US20150169168A1 (en) Methods and systems for managing displayed content items on touch-based computer devices
US20200201928A1 (en) Managing Data For Rendering Visualizations
WO2019136813A1 (fr) Procédé de gestion de fichiers d'api, serveur, et support de stockage
US10652363B2 (en) Handling data processing units deployed on cloud computing systems for mobile applications

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 18862126

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

32PN Ep: public notification in the ep bulletin as address of the adressee cannot be established

Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205 DATED 28/09/2020)

122 Ep: pct application non-entry in european phase

Ref document number: 18862126

Country of ref document: EP

Kind code of ref document: A1