WO2018223678A1 - Data processing method and processing device - Google Patents

Data processing method and processing device Download PDF

Info

Publication number
WO2018223678A1
WO2018223678A1 PCT/CN2017/120155 CN2017120155W WO2018223678A1 WO 2018223678 A1 WO2018223678 A1 WO 2018223678A1 CN 2017120155 W CN2017120155 W CN 2017120155W WO 2018223678 A1 WO2018223678 A1 WO 2018223678A1
Authority
WO
WIPO (PCT)
Prior art keywords
data processing
data
processing module
warehouse controller
logic
Prior art date
Application number
PCT/CN2017/120155
Other languages
French (fr)
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 WO2018223678A1 publication Critical patent/WO2018223678A1/en

Links

Images

Classifications

    • 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/28Databases characterised by their database models, e.g. relational or object models
    • G06F16/283Multi-dimensional databases or data warehouses, e.g. MOLAP or ROLAP
    • 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/25Integrating or interfacing systems involving database management systems

Definitions

  • a data processing method comprising:
  • the data warehouse controller selects a data processing module corresponding to the business logic parameter instruction from the plurality of data processing modules, and performs corresponding business logic processing on the data content in the bean file by using the selected data processing module;
  • the data warehouse controller switches from the coupled plurality of data processing modules to the data processing module corresponding to the service logic parameter instruction according to the external incoming business logic parameter instruction, where each data processing module corresponds to Data processing logic class;
  • the interface function in the interface object is duplicated in the data processing logic class to implement data logical processing on the data content, wherein the data processing logic class inherits the interface object in the data warehouse controller.
  • step S21 includes:
  • a data processing module configured to perform corresponding business logic processing on the data content in the bean file
  • the data warehouse controller is further configured to:
  • the bean file and the data warehouse controller are strongly coupled, and the data warehouse controller and each data processing module are coupled by a unified protocol.
  • the embodiment implements data through interface design.
  • the coupling between the warehouse controller and each data processing module is a design.
  • a request is passed to the data warehouse controller.
  • a data processing logic class A can be designed, corresponding to the data processing module A, and the data processing logic class A inherits the IDataHander.
  • the interface object then overwrites the interface function handledata in the IDataHander interface object in the data processing logic class A, and finally completes the real database storage logic in the interface function handledata.
  • a data processing logic class B can be designed, corresponding to the data processing module B, the data processing logic class B inherits the IDataHander interface object, and then in the data processing logic class B.
  • the interface function handledata in the IDataHander interface object is rewritten, and the real disk file storage logic is finally completed in the interface function handledata.
  • the data warehouse controller 22 is further configured to:
  • the present invention also provides a non-transitory computer readable storage medium storing computer instructions for causing a computer to execute the smart layout control method provided by the corresponding embodiment, for example, including : storing the data content in the bean file, and passing the bean file to the data warehouse controller; the data warehouse controller selects a data processing module corresponding to the business logic parameter instruction from the plurality of data processing modules, and passes the selected The data processing module performs corresponding business logic processing on the data content in the bean file; wherein the bean file and the data warehouse controller are strongly coupled, and the data warehouse controller and each data processing module are unified The protocol is coupled.

Landscapes

  • Engineering & Computer Science (AREA)
  • Databases & Information Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Data Mining & Analysis (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Stored Programmes (AREA)

Abstract

Disclosed are a data processing method and system, the method comprising: storing data content to a bean file and transferring the bean file to a data warehouse controller, wherein there is a strong coupling relationship between the bean file and the data warehouse controller (S1); the data warehouse controller selecting, according to an externally introduced service logic parameter instruction, a corresponding data processing module to process the data content in the bean file, wherein the data warehouse controller is coupled to each data processing module via a unified protocol (S2). The data warehouse controller is coupled to each data processing module via a unified protocol, ensuring that all of the data is processed according to a uniform principle; abstract unification of data processing logic facilitates use of a flow logic related to follow-up maintenance data, and increases the maintainability and expandability of procedures during a development process.

Description

一种数据处理方法及处理装置Data processing method and processing device
交叉引用cross reference
本申请引用于2017年6月7号提交的专利名称为“一种数据处理方法及处理装置”的第201710420830.3号中国专利申请,其通过引用被全部并入本申请。The present application is hereby incorporated by reference in its entirety in its entirety in its entirety in the the the the the the the the the the the the
技术领域Technical field
本发明涉及数据控制技术领域,更具体地,涉及一种数据处理方法及系统。The present invention relates to the field of data control technologies, and in particular, to a data processing method and system.
背景技术Background technique
在开发过程中,经常遇到对数据的处理,对数据不同的处理,对应不同的数据处理逻辑,比如,有的需要将数据存储到磁盘文件中,有的是将数据存储到数据库中等一系列数据相关的处理逻辑。In the development process, the data processing is often encountered, and the different processing of the data corresponds to different data processing logics. For example, some need to store the data in a disk file, and some store the data in a database. Processing logic.
在传统的方案中,这些数据的数据是分散的,没有进行统一的管理,一种类型的数据处理均需要设计一套对应的数据处理逻辑,这样整个代码的数据处理逻辑非常混乱。In the traditional scheme, the data of these data is decentralized, and there is no unified management. One type of data processing needs to design a corresponding set of data processing logic, so the data processing logic of the whole code is very confusing.
发明内容Summary of the invention
本发明提供一种克服上述问题或者至少部分地解决上述问题的数据处理方法及系统,克服了由于数据没有进行统一的管理导致的数据处理逻辑比较混乱的问题。The present invention provides a data processing method and system that overcomes the above problems or at least partially solves the above problems, and overcomes the problem that the data processing logic is confusing due to the lack of unified management of data.
根据本发明的第一方面,提供了一种数据处理方法,包括:According to a first aspect of the present invention, a data processing method is provided, comprising:
S1,将数据内容存储到bean文件中,并将bean文件传递给数据仓库控制器;S1, storing the data content in the bean file, and passing the bean file to the data warehouse controller;
S2,数据仓库控制器从多个数据处理模块中选定与业务逻辑参数指令对应的数据处理模块,并通过选定的数据处理模块对bean文件中的数据内容进行相应的业务逻辑处理;S2. The data warehouse controller selects a data processing module corresponding to the business logic parameter instruction from the plurality of data processing modules, and performs corresponding business logic processing on the data content in the bean file by using the selected data processing module;
其中,bean文件与数据仓库控制器之间属于强耦合关系,所述数据仓库控制器与每一个数据处理模块之间通过统一的协议进行耦合。The bean file and the data warehouse controller are strongly coupled, and the data warehouse controller and each data processing module are coupled by a unified protocol.
本发明的有益效果为:提出了一套完善的数据控制的设计方案,数据仓库控制器通过统一的协议与各个数据处理模块进行耦合,能够确保所有的数据能够按照统一规则进行处理,将数据处理逻辑进行了抽象的统一,方便后期维护数据相关的流转逻辑,提高了开发过程中程序的可维护性和程序的可扩展性。The invention has the beneficial effects that a perfect data control design scheme is proposed, and the data warehouse controller is coupled with each data processing module through a unified protocol, which can ensure that all data can be processed according to a unified rule, and the data is processed. The logic is abstracted and unified, which facilitates the maintenance of data-related flow logic in the later stage, and improves the maintainability of the program and the scalability of the program during the development process.
在上述技术方案的基础上,本发明还可以作如下改进。Based on the above technical solutions, the present invention can also be improved as follows.
进一步的,所述数据仓库控制器与每一个数据处理模块之间通过统一的协议进行耦合包括:Further, the data warehouse controller and each data processing module are coupled by a unified protocol, including:
在数据仓库控制器上定义一用于数据处理逻辑的接口对象,并在该接口对象中定义一接口函数,通过该接口函数实现具体的数据处理逻辑,其中,数据处理逻辑与数据处理模块具有对应关系。An interface object for data processing logic is defined on the data warehouse controller, and an interface function is defined in the interface object, and specific data processing logic is implemented through the interface function, wherein the data processing logic has a correspondence with the data processing module relationship.
进一步的,所述步骤S2包括:Further, the step S2 includes:
S21,根据外部传入的业务逻辑参数指令,数据仓库控制器从耦合的多个数据处理模块中切换至与所述业务逻辑参数指令对应的数据处理模块,其中,每一个数据处理模块均对应有数据处理逻辑类;S21. The data warehouse controller switches from the coupled plurality of data processing modules to the data processing module corresponding to the service logic parameter instruction according to the external incoming business logic parameter instruction, where each data processing module corresponds to Data processing logic class;
S22,在所述数据处理逻辑类中复写接口对象中的接口函数,实现对数据内容的数据逻辑处理,其中,所述数据处理逻辑类继承数据仓库控制器中的接口对象。S22. The interface function in the interface object is duplicated in the data processing logic class to implement data logical processing on the data content, wherein the data processing logic class inherits the interface object in the data warehouse controller.
进一步的,所述步骤S21包括:Further, the step S21 includes:
在数据仓库控制器中设计切换类,并在该切换类中编写切换函数;Design a switch class in the data warehouse controller and write a switch function in the switch class;
向该切换函数中传入所述接口对象,并在切换函数中调用接口对象中的接口函数来实现对数据处理逻辑的切换,进而实现对数据处理模块的切换。The interface object is input to the switching function, and an interface function in the interface object is called in the switching function to implement switching of the data processing logic, thereby implementing switching of the data processing module.
进一步的,所述bean文件中的数据内容有多种类型,所述接口对象中 的接口函数的参数为object对象,通过bean对象将bean文件中多种类型的数据内容传递给数据处理模块。Further, the data content in the bean file has multiple types, and the parameter of the interface function in the interface object is an object object, and multiple types of data content in the bean file are transmitted to the data processing module through the bean object.
进一步的,每一个所述数据处理模块与处理的数据类型具有一一对应关系,所述步骤S22还包括:Further, each of the data processing modules has a one-to-one correspondence with the processed data type, and the step S22 further includes:
数据处理模块对bean文件中的所有数据内容的数据类型进行判断,并对与该数据处理模块对应数据类型的数据进行相应的业务逻辑处理。The data processing module judges the data type of all the data contents in the bean file, and performs corresponding business logic processing on the data of the data type corresponding to the data processing module.
根据本发明的第二方面,还提供了一种数据处理系统,包括:According to a second aspect of the present invention, there is also provided a data processing system comprising:
存储模块,用于将数据内容存储到bean文件中,并将bean文件传递给数据仓库控制器;a storage module for storing data content in a bean file and passing the bean file to the data warehouse controller;
数据仓库控制器,用于数据仓库控制器从多个数据处理模块中选定与业务逻辑参数指令对应的数据处理模块;a data warehouse controller for selecting, by the data warehouse controller, a data processing module corresponding to the business logic parameter instruction from the plurality of data processing modules;
数据处理模块,用于对bean文件中的数据内容进行相应的业务逻辑处理;a data processing module, configured to perform corresponding business logic processing on the data content in the bean file;
其中,bean文件与数据仓库控制器之间属于强耦合关系,所述数据仓库控制器与每一个数据处理模块之间通过统一的协议进行耦合。The bean file and the data warehouse controller are strongly coupled, and the data warehouse controller and each data processing module are coupled by a unified protocol.
进一步的,所述数据仓库控制器,还用于:Further, the data warehouse controller is further configured to:
定义一用于数据处理逻辑的接口对象,并在该接口对象中定义一接口函数,通过该接口函数实现数据处理逻辑,其中,数据处理逻辑与数据处理模块具有对应关系。An interface object for data processing logic is defined, and an interface function is defined in the interface object, and data processing logic is implemented by the interface function, wherein the data processing logic has a corresponding relationship with the data processing module.
进一步的,所述数据仓库控制器具体用于:Further, the data warehouse controller is specifically configured to:
根据外部传入的业务逻辑参数指令,从耦合的多个数据处理模块中切换至与所述业务逻辑参数指令对应的数据处理模块,其中,每一个数据处理模块均对应有数据处理逻辑类;Switching from the coupled plurality of data processing modules to the data processing module corresponding to the service logic parameter instruction according to the external incoming business logic parameter instruction, wherein each data processing module corresponds to a data processing logic class;
每一个所述数据处理模块具体用于:Each of the data processing modules is specifically configured to:
定义一数据处理逻辑类,并在所述数据处理逻辑类中复写接口中的接口函数,来实现对数据内容的数据逻辑处理,其中,该数据处理逻辑类继承数据仓库控制器中的接口对象。Defining a data processing logic class and rewriting an interface function in the interface in the data processing logic class to implement data logical processing on the data content, wherein the data processing logic class inherits an interface object in the data warehouse controller.
根据第三方面,提供了一种电子设备,包括:According to a third aspect, an electronic device is provided, comprising:
至少一个处理器、至少一个存储器和总线;其中,At least one processor, at least one memory, and a bus; wherein
所述处理器和存储器、通过所述总线完成相互间的通信;The processor and the memory complete communication with each other through the bus;
所述存储器存储有可被所述处理器执行的程序指令,所述处理器调用所述程序指令能够执行如下方法:The memory stores program instructions executable by the processor, the processor invoking the program instructions to perform the following methods:
将数据内容存储到bean文件中,并将bean文件传递给数据仓库控制器;Store the data content in a bean file and pass the bean file to the data warehouse controller;
数据仓库控制器从多个数据处理模块中选定与业务逻辑参数指令对应的数据处理模块,并通过选定的数据处理模块对bean文件中的数据内容进行相应的业务逻辑处理;The data warehouse controller selects a data processing module corresponding to the business logic parameter instruction from the plurality of data processing modules, and performs corresponding business logic processing on the data content in the bean file through the selected data processing module;
其中,bean文件与数据仓库控制器之间属于强耦合关系,所述数据仓库控制器与每一个数据处理模块之间通过统一的协议进行耦合。The bean file and the data warehouse controller are strongly coupled, and the data warehouse controller and each data processing module are coupled by a unified protocol.
附图说明DRAWINGS
图1为本发明一个实施例的数据处理方法流程图;1 is a flow chart of a data processing method according to an embodiment of the present invention;
图2为本发明另一个实施例的数据处理系统连接框图;2 is a block diagram showing the connection of a data processing system according to another embodiment of the present invention;
图3为本发明一个实施例的电子设备连接框图。FIG. 3 is a block diagram of an electronic device connection according to an embodiment of the present invention.
具体实施方式detailed description
下面结合附图和实施例,对本发明的具体实施方式作进一步详细描述。以下实施例用于说明本发明,但不用来限制本发明的范围。The specific embodiments of the present invention are further described in detail below with reference to the drawings and embodiments. The following examples are intended to illustrate the invention but are not intended to limit the scope of the invention.
参见图1,图1提供了本发明一个实施例的数据处理方法,包括:S1,将数据内容存储到bean文件中,并将bean文件传递给数据仓库控制器;S2,数据仓库控制器从多个数据处理模块中选定与业务逻辑参数指令对应的数据处理模块,并通过选定的数据处理模块对bean文件中的数据内容进行相应的业务逻辑处理。其中,bean文件与数据仓库控制器之间属于强耦合关系,所述数据仓库控制器与每一个数据处理模块之间通过统一的协议进行耦合。Referring to FIG. 1, FIG. 1 provides a data processing method according to an embodiment of the present invention, comprising: S1, storing data content in a bean file, and passing the bean file to a data warehouse controller; S2, the data warehouse controller is from more than The data processing module corresponding to the business logic parameter instruction is selected in the data processing module, and the corresponding data processing is performed on the data content in the bean file by the selected data processing module. The bean file and the data warehouse controller are strongly coupled, and the data warehouse controller and each data processing module are coupled by a unified protocol.
数据控制及处理的整个流转过程为,首先将所有需要处理的数据内容存储到bean文件中,其中,bean文件是内存中存储数据的一个对象,然后将该bean文件传入到数据仓库控制器中,由数据仓库控制器负责选择对应的 数据处理模块对bean文件中的数据内容进行相应的业务逻辑处理。其中,数据仓库控制器是整个数据处理流转过程中的核心,通过选择对应的数据处理模块对bean文件中的数据进行真实的业务处理流程。在本方案中,bean文件与数据仓库控制器之间是直接耦合关系,也就是传统的强耦合关系,这一层级之所以设计成强耦合关系,是因为仅仅只是单纯的数据传递并没有涉及都任何的数据处理逻辑,简单地设计为强耦合关系,能够方便数据的传递。而数据仓库控制器与各个数据处理模块之间是通过统一的协议进行耦合的,数据仓库控制器会根据外部传入的业务逻辑参数指令,选择对应的数据处理模块对bean文件中的数据内容进行处理,每一个数据处理模块均对应有一套不同的业务逻辑处理,能够通过统一的协议实现各种不同的数据处理逻辑。The entire process of data control and processing is to first store all the data content that needs to be processed into a bean file, where the bean file is an object that stores data in memory, and then the bean file is passed to the data warehouse controller. The data warehouse controller is responsible for selecting the corresponding data processing module to perform corresponding business logic processing on the data content in the bean file. The data warehouse controller is the core of the entire data processing flow process, and the real data processing process is performed on the data in the bean file by selecting the corresponding data processing module. In this scheme, there is a direct coupling relationship between the bean file and the data warehouse controller, which is the traditional strong coupling relationship. The reason why this level is designed as a strong coupling relationship is because only the simple data transfer does not involve Any data processing logic is simply designed as a strong coupling relationship to facilitate data transfer. The data warehouse controller and each data processing module are coupled by a unified protocol, and the data warehouse controller selects the corresponding data processing module to perform the data content in the bean file according to the external incoming business logic parameter instruction. Processing, each data processing module has a different set of business logic processing, and can implement various data processing logics through a unified protocol.
本实施例提出了一套完善的数据控制的设计方案,数据仓库控制器通过统一的协议与各个数据处理模块进行耦合,能够确保所有的数据能够按照统一规则进行处理,将数据处理逻辑进行了抽象的统一,方便后期维护数据相关的流转逻辑,提高了开发过程中程序的可维护性和程序的可扩展性。This embodiment proposes a complete design scheme of data control. The data warehouse controller is coupled with each data processing module through a unified protocol, which can ensure that all data can be processed according to the unified rules, and the data processing logic is abstracted. The uniformity facilitates the maintenance of data-related flow logic in the later stage, improving the maintainability of the program and the scalability of the program during the development process.
在本发明的一个实施例中,所述数据仓库控制器与每一个数据处理模块之间通过统一的协议进行耦合包括:在数据仓库控制器上定义一用于数据处理逻辑的接口对象,并在该接口对象中定义一接口函数,通过该接口函数实现数据处理逻辑,其中,数据处理逻辑与数据处理模块具有对应关系。In an embodiment of the present invention, the data warehouse controller and each data processing module are coupled by a unified protocol, including: defining an interface object for data processing logic on the data warehouse controller, and The interface object defines an interface function, and the data processing logic is implemented by the interface function, wherein the data processing logic has a corresponding relationship with the data processing module.
为了使得数据仓库控制器和各个数据处理模块之间能够有统一的处理逻辑,同时为了降低数据仓库控制器与各个数据处理模块之间的耦合关系,本实施例是通过接口设计的方式来实现数据仓库控制器与各个数据处理模块之间的耦合的。In order to enable unified processing logic between the data warehouse controller and each data processing module, and in order to reduce the coupling relationship between the data warehouse controller and each data processing module, the embodiment implements data through interface design. The coupling between the warehouse controller and each data processing module.
具体的,在数据仓库控制器上设计一用于数据处理逻辑的接口对象,在本实施例中,设计的接口对象的名称为IDataHander,并且在这个接口对象中定义一个接口函数,该接口函数的定义如下所示:Specifically, an interface object for data processing logic is designed on the data warehouse controller. In this embodiment, the name of the designed interface object is IDataHander, and an interface function is defined in the interface object, and the interface function is The definition is as follows:
pubic viod handleData(Object data);Pubic viod handleData(Object data);
其中,接口函数的名称为handleData,接口函数的参数是一个object 对象,在java中object是一个基本数据类型,即是所有数据类型的父类,可以用于承载任何类型的数据对象,这样所有类型的数据都可以通过object对象来传递到对应的数据处理模块中。The name of the interface function is handleData, and the parameter of the interface function is an object object. In java, object is a basic data type, that is, the parent class of all data types, which can be used to carry any type of data object, so that all types The data can be passed to the corresponding data processing module through the object object.
通过定义的接口对象中的接口函数能够实现具体的数据处理逻辑,其中,数据处理逻辑与数据处理模块具有对应关系,某一个具体的数据处理逻辑会对应有具体的数据处理模块来进行处理。The specific data processing logic can be realized by the interface function in the defined interface object, wherein the data processing logic has a corresponding relationship with the data processing module, and a specific data processing logic corresponds to a specific data processing module for processing.
本实施例中数据仓库控制器与各个数据处理模块之间采用接口耦合的方式为后续数据处理逻辑的切换做铺垫的,能够通过统一的切换方式来切换不同的数据处理模块,从而达到数据被统一管理的目的。In this embodiment, the data warehouse controller and each data processing module adopt an interface coupling manner to pave the way for the subsequent data processing logic switching, and can switch different data processing modules through a unified switching manner, thereby achieving data unification. The purpose of management.
在本发明的另一个实施例中,所述步骤S2包括:S21,根据外部传入的业务逻辑参数指令,数据仓库控制器从耦合的多个数据处理模块中切换至与所述业务逻辑参数指令对应的数据处理模块,其中,每一个数据处理模块均对应有数据处理逻辑类;S22,在所述数据处理逻辑类中复写接口中的接口函数,来实现对数据内容的数据逻辑处理,其中,所述数据处理逻辑类继承数据仓库控制器中的接口对象。In another embodiment of the present invention, the step S2 includes: S21, according to an external incoming service logic parameter instruction, the data warehouse controller switches from the coupled plurality of data processing modules to the service logic parameter instruction. Corresponding data processing module, wherein each data processing module corresponds to a data processing logic class; S22, in the data processing logic class, an interface function in the interface is overwritten to implement data logical processing on the data content, wherein The data processing logic class inherits interface objects in the data warehouse controller.
在具体的业务处理逻辑中,数据仓库控制器接收从外部传入的业务逻辑参数指令,其中的业务逻辑参数指令是指具体需要对bean文件中的数据内容做何种业务处理。数据仓库控制器接收到业务逻辑参数指令后,从所有耦合的数据处理模块中切换到与该业务逻辑参数指令对应的数据处理模块,由该数据处理模块来进行具体的数据处理。In the specific business processing logic, the data warehouse controller receives the business logic parameter instruction introduced from the outside, wherein the business logic parameter instruction refers to what kind of business processing needs to be performed on the data content in the bean file. After receiving the business logic parameter instruction, the data warehouse controller switches from all the coupled data processing modules to the data processing module corresponding to the business logic parameter instruction, and the data processing module performs specific data processing.
其中,每一个数据处理模块中均涉及有对应的数据处理逻辑类,这些数据处理逻辑类都继承数据仓库控制器中的接口对象,然后在数据处理逻辑类中通过复写接口对象中的接口函数,来实现对bean文件的数据内容的具体逻辑处理。Wherein, each data processing module involves a corresponding data processing logic class, these data processing logic classes inherit the interface object in the data warehouse controller, and then overwrite the interface function in the interface object in the data processing logic class, To achieve specific logical processing of the data content of the bean file.
每一个数据处理逻辑都是一个单独的业务功能模块,为了方便数据仓库控制器快速切换不同的处理逻辑,在本实施例中,将所有的数据处理逻辑都设计成结构相同的功能模块,这样方便后期对数据逻辑进行切换。Each data processing logic is a separate business function module. In order to facilitate the data warehouse controller to quickly switch different processing logics, in this embodiment, all data processing logics are designed into functional modules having the same structure, which is convenient. The data logic is switched later.
比如,外部向数据仓库控制器传入了一个需求,要将bean文件中的数 据存储到数据库中,则可以设计一个数据处理逻辑类A,对应数据处理模块A,该数据处理逻辑类A继承IDataHander接口对象,然后在该数据处理逻辑类A中复写IDataHander接口对象中的接口函数handledata,最终在接口函数handledata中完成真实的数据库存储逻辑。For example, externally, a request is passed to the data warehouse controller. To store the data in the bean file into the database, a data processing logic class A can be designed, corresponding to the data processing module A, and the data processing logic class A inherits the IDataHander. The interface object, then overwrites the interface function handledata in the IDataHander interface object in the data processing logic class A, and finally completes the real database storage logic in the interface function handledata.
又比如,要将bean文件的数据存储到磁盘文件中,则可以设计一个数据处理逻辑类B,对应数据处理模块B,该数据处理逻辑类B继承IDataHander接口对象,然后在该数据处理逻辑类B中复写IDataHander接口对象中的接口函数handledata,最终在接口函数handledata中完成真实的磁盘文件存储逻辑。For another example, to store the data of the bean file into the disk file, a data processing logic class B can be designed, corresponding to the data processing module B, the data processing logic class B inherits the IDataHander interface object, and then in the data processing logic class B. The interface function handledata in the IDataHander interface object is rewritten, and the real disk file storage logic is finally completed in the interface function handledata.
通过上述两个实例的描述,可以发现所有的数据处理模块都具备有相同的结构,都是严格按照所设计的接口对象和接口函数来完成对应的数据处理逻辑功能的,实现了对数据的统一管理的目的。Through the description of the above two examples, it can be found that all the data processing modules have the same structure, and the corresponding data processing logic functions are completed strictly according to the designed interface object and interface function, and the data is unified. The purpose of management.
在本发明的一个实施例中,所述步骤S21包括:在数据仓库控制器中设计切换类,并在该切换类中编写切换函数;向该切换函数中传入所述接口对象,并在切换函数中调用接口对象中的接口函数来实现对数据处理逻辑的切换,进而实现对数据处理模块的切换。In an embodiment of the present invention, the step S21 includes: designing a switching class in the data warehouse controller, and writing a switching function in the switching class; transmitting the interface object to the switching function, and switching The interface function in the interface object is called to realize the switching of the data processing logic, thereby implementing the switching of the data processing module.
在数据仓库控制器对数据处理模块切换的过程中,数据处理模块的切换是面向抽象的方式来进行设计的,本实施例中,在数据仓库控制器中设计切换类,切换类的名称为SwitchUtils,并在切换类SwitchUtils中编写一个切换函数switchDataControl(IDataHander idataHandler)。其中,切换函数中的参数为接口对象,而前述设计的接口对象是用于实现数据处理逻辑的,因此,向切换函数中传入接口对象,即传入了数据处理逻辑参数,根据传入的数据处理逻辑参数,数据仓库控制器就可以知道需要切换到哪一个数据处理逻辑类,也即切换到哪一个数据处理模块。然后在切换函数switchDataControl中调用接口对象的IDataHander中的接口函数handledata,从而实现数据处理逻辑的调用。In the process of the data warehouse controller switching to the data processing module, the switching of the data processing module is designed in an abstract manner. In this embodiment, the switching class is designed in the data warehouse controller, and the name of the switching class is SwitchUtils. And write a switch function switchDataControl(IDataHander idataHandler) in the switch class SwitchUtils. Wherein, the parameter in the switching function is an interface object, and the interface object of the foregoing design is used to implement data processing logic. Therefore, the interface object is passed to the switching function, that is, the data processing logic parameter is passed, according to the incoming Data processing logic parameters, the data warehouse controller can know which data processing logic class to switch to, that is, which data processing module to switch to. Then, in the switch function switchDataControl, the interface function handledata in the IDataHander of the interface object is called, thereby implementing the call of the data processing logic.
本实施例在对数据处理模块进行切换的时候,是需要将对应的数据处理逻辑参数传入切换函数中的,比如,向切换函数中传入数据处理逻辑类名, 而数据处理逻辑类名与数据处理模块具有对应关系,因此,数据仓库控制器就能够知道当前应该切换至哪一个数据处理模块。In this embodiment, when the data processing module is switched, the corresponding data processing logic parameter needs to be input into the switching function, for example, the data processing logic class name is input to the switching function, and the data processing logic class name and The data processing module has a corresponding relationship, so the data warehouse controller can know which data processing module should be switched to.
在本发明的另一个实施例中,每一个所述数据处理模块与处理的数据类型具有一一对应关系,所述步骤S22还包括:数据处理模块对bean文件中的所有数据内容的数据类型进行判断,并对与该数据处理模块对应数据类型的数据进行业务逻辑处理。In another embodiment of the present invention, each of the data processing modules has a one-to-one correspondence with the processed data type, and the step S22 further includes: the data processing module performs the data type of all the data contents in the bean file. Judging and performing business logic processing on data of a data type corresponding to the data processing module.
需要说明的是,bean文件中的数据内容通常有多种类型,由于一个数据处理模块只能处理一种类型的数据,因此,数据仓库控制器向数据处理模块传递了bean文件中所有数据类型的数据后,数据处理模块对bean文件中的所有的数据进行数据类型的判断,只对自身能够处理的类型的数据进行具体的业务逻辑处理。It should be noted that the data content in the bean file usually has multiple types. Since a data processing module can only process one type of data, the data warehouse controller passes all data types in the bean file to the data processing module. After the data, the data processing module judges the data type of all the data in the bean file, and performs specific business logic processing only on the data of the type that can be processed by itself.
参见图2,为本发明另一个实施例的数据处理系统,包括存储模块21、数据仓库控制器22和数据处理模块23。Referring to FIG. 2, a data processing system according to another embodiment of the present invention includes a storage module 21, a data warehouse controller 22, and a data processing module 23.
存储模块21,用于将数据内容存储到bean文件中,并将bean文件传递给数据仓库控制器;。The storage module 21 is configured to store the data content in the bean file and pass the bean file to the data warehouse controller.
数据仓库控制器22,用于从多个数据处理模块中选定与业务逻辑参数指令对应的数据处理模。The data warehouse controller 22 is configured to select a data processing mode corresponding to the business logic parameter instruction from the plurality of data processing modules.
数据处理模块23,用于对bean文件中的数据内容进行相应的业务逻辑处理;其中,bean文件与数据仓库控制器之间属于强耦合关系,所述数据仓库控制器与每一个数据处理模块之间通过统一的协议进行耦合。The data processing module 23 is configured to perform corresponding business logic processing on the data content in the bean file; wherein the bean file and the data warehouse controller are strongly coupled, and the data warehouse controller and each data processing module Coupling through a unified protocol.
所述数据仓库控制器22,还用于:The data warehouse controller 22 is further configured to:
定义一用于数据处理逻辑的接口对象,并在该接口对象中定义一接口函数,通过该接口函数实现数据处理逻辑,其中,数据处理逻辑与数据处理模块具有对应关系。An interface object for data processing logic is defined, and an interface function is defined in the interface object, and data processing logic is implemented by the interface function, wherein the data processing logic has a corresponding relationship with the data processing module.
所述数据仓库控制器22具体用于:The data warehouse controller 22 is specifically configured to:
根据外部传入的业务逻辑参数指令,从耦合的多个数据处理模块中切换至与所述业务逻辑参数指令对应的数据处理模块,其中,每一个数据处理模块均对应有数据处理逻辑类;Switching from the coupled plurality of data processing modules to the data processing module corresponding to the service logic parameter instruction according to the external incoming business logic parameter instruction, wherein each data processing module corresponds to a data processing logic class;
每一个所述数据处理模块23具体用于:Each of the data processing modules 23 is specifically configured to:
定义一数据处理逻辑类,并在所述数据处理逻辑类中复写接口中的接口函数,来实现对数据内容的数据逻辑处理,其中,数据处理逻辑类继承数据仓库控制器中的接口对象。Defining a data processing logic class and rewriting an interface function in the interface in the data processing logic class to implement data logical processing on the data content, wherein the data processing logic class inherits the interface object in the data warehouse controller.
参见图3,为本发明一种电子设备,包括:处理器(processor)301、存储器(memory)302和总线303;其中,所述处理器301和存储器302通过所述总线303完成相互间的通信。Referring to FIG. 3, an electronic device according to the present invention includes: a processor 301, a memory 302, and a bus 303. The processor 301 and the memory 302 complete communication with each other through the bus 303. .
所述处理器301用于调用所述存储器302中的程序指令,以执行上述各方法实施例所提供的方法,例如包括:将数据内容存储到bean文件中,并将bean文件传递给数据仓库控制器;数据仓库控制器从多个数据处理模块中选定与业务逻辑参数指令对应的数据处理模块,并通过选定的数据处理模块对bean文件中的数据内容进行相应的业务逻辑处理;其中,bean文件与数据仓库控制器之间属于强耦合关系,所述数据仓库控制器与每一个数据处理模块之间通过统一的协议进行耦合。The processor 301 is configured to invoke program instructions in the memory 302 to perform the methods provided by the foregoing method embodiments, for example, including: storing data content in a bean file, and passing the bean file to a data warehouse control The data warehouse controller selects a data processing module corresponding to the business logic parameter instruction from the plurality of data processing modules, and performs corresponding business logic processing on the data content in the bean file through the selected data processing module; The bean file and the data warehouse controller are strongly coupled, and the data warehouse controller and each data processing module are coupled by a unified protocol.
本发明公开一种计算机程序产品,该计算机程序产品包括存储在非暂态计算机可读存储介质上的计算机程序,该计算机程序包括程序指令,当程序指令被计算机执行时,计算机能够执行上述对应实施例所提供的智能过滤的控件布局方法,例如包括:将数据内容存储到bean文件中,并将bean文件传递给数据仓库控制器;数据仓库控制器从多个数据处理模块中选定与业务逻辑参数指令对应的数据处理模块,并通过选定的数据处理模块对bean文件中的数据内容进行相应的业务逻辑处理;其中,bean文件与数据仓库控制器之间属于强耦合关系,所述数据仓库控制器与每一个数据处理模块之间通过统一的协议进行耦合。The invention discloses a computer program product comprising a computer program stored on a non-transitory computer readable storage medium, the computer program comprising program instructions, the computer being capable of executing the corresponding implementation when the program instructions are executed by the computer The intelligent filtering control layout method provided by the example includes, for example, storing the data content in the bean file and passing the bean file to the data warehouse controller; the data warehouse controller is selected from the plurality of data processing modules and the business logic a data processing module corresponding to the parameter instruction, and performing corresponding business logic processing on the data content in the bean file by the selected data processing module; wherein the bean file and the data warehouse controller are strongly coupled, the data warehouse The controller is coupled to each data processing module by a uniform protocol.
本发明还提供一种非暂态计算机可读存储介质,该非暂态计算机可读存储介质存储计算机指令,该计算机指令使计算机执行上述对应实施例所提供的智能过滤的控件布局方法,例如包括:将数据内容存储到bean文件中,并将bean文件传递给数据仓库控制器;数据仓库控制器从多个数据处理模块中选定与业务逻辑参数指令对应的数据处理模块,并通过选定的数据处理 模块对bean文件中的数据内容进行相应的业务逻辑处理;其中,bean文件与数据仓库控制器之间属于强耦合关系,所述数据仓库控制器与每一个数据处理模块之间通过统一的协议进行耦合。The present invention also provides a non-transitory computer readable storage medium storing computer instructions for causing a computer to execute the smart layout control method provided by the corresponding embodiment, for example, including : storing the data content in the bean file, and passing the bean file to the data warehouse controller; the data warehouse controller selects a data processing module corresponding to the business logic parameter instruction from the plurality of data processing modules, and passes the selected The data processing module performs corresponding business logic processing on the data content in the bean file; wherein the bean file and the data warehouse controller are strongly coupled, and the data warehouse controller and each data processing module are unified The protocol is coupled.
本领域普通技术人员可以理解:实现上述方法实施例的全部或部分步骤可以通过程序指令相关的硬件来完成,前述的程序可以存储于一计算机可读取存储介质中,该程序在执行时,执行包括上述方法实施例的步骤;而前述的存储介质包括:ROM、RAM、磁碟或者光盘等各种可以存储程序代码的介质。A person skilled in the art can understand that all or part of the steps of implementing the above method embodiments may be completed by using hardware related to the program instructions. The foregoing program may be stored in a computer readable storage medium, and the program is executed when executed. The foregoing steps include the steps of the foregoing method embodiments; and the foregoing storage medium includes: a medium that can store program codes, such as a ROM, a RAM, a magnetic disk, or an optical disk.
以上所描述的实施例仅仅是示意性的,其中作为分离部件说明的单元可以是或者也可以不是物理上分开的,作为单元显示的部件可以是或者也可以不是物理单元,即可以位于一个地方,或者也可以分布到多个网络单元上。可以根据实际的需要选择其中的部分或者全部模块来实现本实施例方案的目的。本领域普通技术人员在不付出创造性的劳动的情况下,即可以理解并实施。The embodiments described above are merely illustrative, wherein the units illustrated as separate components may or may not be physically separate, and the components displayed as units may or may not be physical units, ie may be located in one place. Or it can be distributed to multiple network elements. Some or all of the modules may be selected according to actual needs to achieve the purpose of the solution of the embodiment. Those of ordinary skill in the art can understand and implement without deliberate labor.
通过以上的实施方式的描述,本领域的技术人员可以清楚地了解到各实施方式可借助软件加必需的通用硬件平台的方式来实现,当然也可以通过硬件。基于这样的理解,上述技术方案本质上或者说对现有技术做出贡献的部分可以以软件产品的形式体现出来,该计算机软件产品可以存储在计算机可读存储介质中,如ROM/RAM、磁碟、光盘等,包括若干指令用以使得一台计算机设备(可以是个人计算机,服务器,或者网络设备等)执行各个实施例或者实施例的某些部分方法。Through the description of the above embodiments, those skilled in the art can clearly understand that the various embodiments can be implemented by means of software plus a necessary general hardware platform, and of course, by hardware. Based on such understanding, the above-described technical solutions may be embodied in the form of software products in essence or in the form of software products, which may be stored in a computer readable storage medium such as ROM/RAM, magnetic Discs, optical discs, etc., include instructions for causing a computer device (which may be a personal computer, server, or network device, etc.) to perform various embodiments of the various embodiments or embodiments.
本发明提供的一种数据处理方法及系统,通过对数据仓库控制器的设计,将原本分散的数据处理进行统一和归并管理,本方案首先通过介绍层级之间的耦合关系给出整体方案的设计框架,然后,分别介绍数据处理逻辑和数据处理逻辑切换的具体实现方法,最终达到设计的目的,提高程序的可维护性和可扩展性。The invention provides a data processing method and system. By designing a data warehouse controller, the original distributed data processing is unified and merged and managed. The scheme firstly gives the overall scheme design by introducing the coupling relationship between the levels. The framework then introduces the specific implementation methods of data processing logic and data processing logic switching, and finally achieves the purpose of design, improving the maintainability and scalability of the program.
最后,本申请的方法仅为较佳的实施方案,并非用于限定本发明的保护范围。凡在本发明的精神和原则之内,所作的任何修改、等同替换、改进等,均应包含在本发明的保护范围之内。Finally, the method of the present application is only a preferred embodiment and is not intended to limit the scope of the present invention. Any modifications, equivalent substitutions, improvements, etc. made within the spirit and scope of the present invention are intended to be included within the scope of the present invention.

Claims (12)

  1. 一种数据处理方法,其特征在于,包括:A data processing method, comprising:
    S1,将数据内容存储到bean文件中,并将bean文件传递给数据仓库控制器;S1, storing the data content in the bean file, and passing the bean file to the data warehouse controller;
    S2,数据仓库控制器从多个数据处理模块中选定与业务逻辑参数指令对应的数据处理模块,并通过选定的数据处理模块对bean文件中的数据内容进行相应的业务逻辑处理;S2. The data warehouse controller selects a data processing module corresponding to the business logic parameter instruction from the plurality of data processing modules, and performs corresponding business logic processing on the data content in the bean file by using the selected data processing module;
    其中,bean文件与数据仓库控制器之间属于强耦合关系,所述数据仓库控制器与每一个数据处理模块之间通过统一的协议进行耦合。The bean file and the data warehouse controller are strongly coupled, and the data warehouse controller and each data processing module are coupled by a unified protocol.
  2. 如权利要求1所述的数据处理方法,其特征在于,所述数据仓库控制器与每一个所述数据处理模块之间通过统一的协议进行耦合包括:The data processing method according to claim 1, wherein the coupling between the data warehouse controller and each of the data processing modules by a unified protocol comprises:
    在数据仓库控制器上定义一用于数据处理逻辑的接口对象,并在该接口对象中定义一接口函数,通过该接口函数实现数据处理逻辑,其中,数据处理逻辑与数据处理模块具有对应关系。An interface object for data processing logic is defined on the data warehouse controller, and an interface function is defined in the interface object, and the data processing logic is implemented by the interface function, wherein the data processing logic has a corresponding relationship with the data processing module.
  3. 如权利要求2所述的数据处理方法,其特征在于,所述步骤S2包括:The data processing method according to claim 2, wherein the step S2 comprises:
    S21,根据外部传入的业务逻辑参数指令,数据仓库控制器从耦合的多个数据处理模块中切换至与所述业务逻辑参数指令对应的数据处理模块,其中,每一个数据处理模块均对应有数据处理逻辑类;S21. The data warehouse controller switches from the coupled plurality of data processing modules to the data processing module corresponding to the service logic parameter instruction according to the external incoming business logic parameter instruction, where each data processing module corresponds to Data processing logic class;
    S22,在所述数据处理逻辑类中复写接口对象中的接口函数,实现对数据内容的数据逻辑处理,其中,所述数据处理逻辑类继承数据仓库控制器中的接口对象。S22. The interface function in the interface object is duplicated in the data processing logic class to implement data logical processing on the data content, wherein the data processing logic class inherits the interface object in the data warehouse controller.
  4. 如权利要求3所述的数据处理方法,其特征在于,所述步骤S21包括:The data processing method according to claim 3, wherein said step S21 comprises:
    在数据仓库控制器中设计切换类,并在该切换类中编写切换函数;Design a switch class in the data warehouse controller and write a switch function in the switch class;
    向该切换函数中传入所述接口对象,并在切换函数中调用接口对象中的接口函数来实现对数据处理逻辑的切换,进而实现对数据处理模块的切换。The interface object is input to the switching function, and an interface function in the interface object is called in the switching function to implement switching of the data processing logic, thereby implementing switching of the data processing module.
  5. 如权利要求4所述的数据处理方法,其特征在于,所述bean文件中 的数据内容有多种类型,所述接口对象中的接口函数的参数为object对象,通过bean对象将bean文件中多种类型的数据内容传递给数据处理模块。The data processing method according to claim 4, wherein the data content in the bean file has multiple types, and the parameter of the interface function in the interface object is an object object, and the bean file is used in the bean file. Types of data content are passed to the data processing module.
  6. 如权利要求5所述的数据处理方法,其特征在于,每一个所述数据处理模块与处理的数据类型具有一一对应关系,所述步骤S22还包括:The data processing method according to claim 5, wherein each of the data processing modules has a one-to-one correspondence with the processed data type, and the step S22 further includes:
    数据处理模块对bean文件中的所有数据内容的数据类型进行判断,并对与该数据处理模块对应数据类型的数据进行相应的业务逻辑处理。The data processing module judges the data type of all the data contents in the bean file, and performs corresponding business logic processing on the data of the data type corresponding to the data processing module.
  7. 一种数据处理系统,其特征在于,包括:A data processing system, comprising:
    存储模块,用于将数据内容存储到bean文件中,并将bean文件传递给数据仓库控制器;a storage module for storing data content in a bean file and passing the bean file to the data warehouse controller;
    数据仓库控制器,用于从多个数据处理模块中选定与业务逻辑参数指令对应的数据处理模块;a data warehouse controller, configured to select, from a plurality of data processing modules, a data processing module corresponding to the business logic parameter instruction;
    数据处理模块,用于对bean文件中的数据内容进行相应的业务逻辑处理;a data processing module, configured to perform corresponding business logic processing on the data content in the bean file;
    其中,bean文件与数据仓库控制器之间属于强耦合关系,所述数据仓库控制器与每一个数据处理模块之间通过统一的协议进行耦合。The bean file and the data warehouse controller are strongly coupled, and the data warehouse controller and each data processing module are coupled by a unified protocol.
  8. 如权利要求7所述的一种数据处理系统,其特征在于,所述数据仓库控制器,还用于:A data processing system according to claim 7, wherein said data warehouse controller is further configured to:
    定义一用于数据处理逻辑的接口对象,并在该接口对象中定义一接口函数,通过该接口函数实现数据处理逻辑,其中,数据处理逻辑与数据处理模块具有对应关系。An interface object for data processing logic is defined, and an interface function is defined in the interface object, and data processing logic is implemented by the interface function, wherein the data processing logic has a corresponding relationship with the data processing module.
  9. 如权利要求8所述的一种数据处理系统,其特征在于,所述数据仓库控制器具体用于:A data processing system according to claim 8, wherein said data warehouse controller is specifically configured to:
    根据外部传入的业务逻辑参数指令,从耦合的多个数据处理模块中切换至与所述业务逻辑参数指令对应的数据处理模块,其中,每一个数据处理模块均对应有数据处理逻辑类;Switching from the coupled plurality of data processing modules to the data processing module corresponding to the service logic parameter instruction according to the external incoming business logic parameter instruction, wherein each data processing module corresponds to a data processing logic class;
    每一个所述数据处理模块具体用于:Each of the data processing modules is specifically configured to:
    定义一数据处理逻辑类,并在所述数据处理逻辑类中复写接口中的接口函数,来实现对数据内容的数据逻辑处理,其中,该数据处理逻辑类继承数 据仓库控制器中的接口对象。A data processing logic class is defined, and an interface function in the interface is overwritten in the data processing logic class to implement data logical processing on the data content, wherein the data processing logic class inherits the interface object in the data warehouse controller.
  10. 一种玩具控制系统的设备,其特征在于,包括:A device for a toy control system, comprising:
    至少一个处理器、至少一个存储器、通信接口和总线;At least one processor, at least one memory, a communication interface, and a bus;
    其中,所述处理器、存储器、通信接口通过所述总线完成相互间的通信;Wherein the processor, the memory, and the communication interface complete communication with each other through the bus;
    所述通信接口用于该设备与玩具控制系统的通信设备之间的信息传输;The communication interface is used for information transmission between the device and a communication device of the toy control system;
    所述存储器存储有可被所述处理器执行的程序指令,所述处理器调用所述程序指令能够执行如权利要求1-6所述的方法。The memory stores program instructions executable by the processor, the processor invoking the program instructions to perform the method of claims 1-6.
  11. 一种计算机程序产品,其特征在于,所述计算机程序产品包括存储在非暂态计算机可读存储介质上的计算机程序,所述计算机程序包括程序指令,当所述程序指令被计算机执行时,所述计算机指令使所述计算机执行如权利要求1-6所述的方法。A computer program product, comprising: a computer program stored on a non-transitory computer readable storage medium, the computer program comprising program instructions, when the program instructions are executed by a computer, The computer instructions cause the computer to perform the method of claims 1-6.
  12. 一种非暂态计算机可读存储介质,其特征在于,所述非暂态计算机可读存储介质存储计算机指令,所述计算机指令使所述计算机执行如权利要求1-6所述的方法。A non-transitory computer readable storage medium, characterized in that the non-transitory computer readable storage medium stores computer instructions that cause the computer to perform the method of claims 1-6.
PCT/CN2017/120155 2017-06-07 2017-12-29 Data processing method and processing device WO2018223678A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201710420830.3 2017-06-07
CN201710420830.3A CN107368523B (en) 2017-06-07 2017-06-07 Data processing method and system

Publications (1)

Publication Number Publication Date
WO2018223678A1 true WO2018223678A1 (en) 2018-12-13

Family

ID=60305602

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2017/120155 WO2018223678A1 (en) 2017-06-07 2017-12-29 Data processing method and processing device

Country Status (2)

Country Link
CN (1) CN107368523B (en)
WO (1) WO2018223678A1 (en)

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107368523B (en) * 2017-06-07 2020-05-12 武汉斗鱼网络科技有限公司 Data processing method and system
CN113554513A (en) * 2017-11-28 2021-10-26 创新先进技术有限公司 Data processing method, device and system
US10628244B1 (en) * 2019-10-29 2020-04-21 Snowflake Inc. Calling external functions from a data warehouse

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1996293A (en) * 2006-12-31 2007-07-11 华为技术有限公司 Portal analysis system and method for implementing portal analysis service
CN102081605A (en) * 2009-11-30 2011-06-01 中国移动通信集团上海有限公司 Data warehouse-based data encapsulation device and service data acquisition method
CN102508912A (en) * 2011-11-09 2012-06-20 深圳市同洲电子股份有限公司 Method and system for data extracting, converting and loading
US20150006467A1 (en) * 2013-06-28 2015-01-01 eBao Tech Corporation Method and system for designing business domain model, data warehouse model and mapping therebetween synchronously
CN107368523A (en) * 2017-06-07 2017-11-21 武汉斗鱼网络科技有限公司 A kind of data processing method and system

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2005026964A2 (en) * 2003-09-04 2005-03-24 Koninklijke Philips Electronics N.V. Data processing system
CN102571720B (en) * 2010-12-27 2015-02-04 中国移动通信集团辽宁有限公司 Method and device for processing heterogeneous information contents
CN103765384A (en) * 2011-09-02 2014-04-30 飞思卡尔半导体公司 Data processing system and method for task scheduling in a data processing system
US9361240B2 (en) * 2013-04-12 2016-06-07 International Business Machines Corporation Dynamic reservations in a unified request queue

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1996293A (en) * 2006-12-31 2007-07-11 华为技术有限公司 Portal analysis system and method for implementing portal analysis service
CN102081605A (en) * 2009-11-30 2011-06-01 中国移动通信集团上海有限公司 Data warehouse-based data encapsulation device and service data acquisition method
CN102508912A (en) * 2011-11-09 2012-06-20 深圳市同洲电子股份有限公司 Method and system for data extracting, converting and loading
US20150006467A1 (en) * 2013-06-28 2015-01-01 eBao Tech Corporation Method and system for designing business domain model, data warehouse model and mapping therebetween synchronously
CN107368523A (en) * 2017-06-07 2017-11-21 武汉斗鱼网络科技有限公司 A kind of data processing method and system

Also Published As

Publication number Publication date
CN107368523A (en) 2017-11-21
CN107368523B (en) 2020-05-12

Similar Documents

Publication Publication Date Title
US11575518B2 (en) Updateable smart contracts
CN108536761B (en) Report data query method and server
US10296329B2 (en) Callable notebook for cluster execution
CN102893272B (en) Sharing with synchronous of object
WO2018223678A1 (en) Data processing method and processing device
WO2019047441A1 (en) Communication optimization method and system
CN110062041B (en) Method and device for changing IOT (input/output) equipment based on block chain
CN108776756A (en) Access authorization for resource management method and device
CN104052792A (en) Augmenting Middleware Communication Services
CN108810164A (en) A kind of device for supporting the on-demand customization of SaaS application flows and operation
JP2020177671A (en) Modeling with digital twins
CN113256095A (en) Draggable configured agile flow service construction method, system, device and medium
CN109976725B (en) Flow program development method and device based on lightweight flow engine
CN107608746A (en) A kind of optimization method and device for opening application more
US10291746B2 (en) Context switch of database connections
CN109445966A (en) Event-handling method, device, medium and calculating equipment
CN114493493A (en) Decision engine and decision engine implementation method
CN108153564A (en) Methods for interface management, equipment and system
CN113254825A (en) Page generation method and device, electronic equipment and storage medium
US8655910B1 (en) Methods and systems for coupling client-side and server-side persistence frameworks
CN108156201A (en) It is managed collectively the method and apparatus of application system configuration data
US20200272962A9 (en) Workflow integration
CN110417978A (en) Menu configuration method, device, equipment and storage medium
CN109194976A (en) Video processing, dissemination method, storage management, Content Management Platform and system
US20240103941A1 (en) Flow configurable event-driven microservices

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: 17912795

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 17912795

Country of ref document: EP

Kind code of ref document: A1