CN110109898B - Hash connection acceleration method and system based on BRAM in FPGA chip - Google Patents

Hash connection acceleration method and system based on BRAM in FPGA chip Download PDF

Info

Publication number
CN110109898B
CN110109898B CN201910327778.6A CN201910327778A CN110109898B CN 110109898 B CN110109898 B CN 110109898B CN 201910327778 A CN201910327778 A CN 201910327778A CN 110109898 B CN110109898 B CN 110109898B
Authority
CN
China
Prior art keywords
hash
dimension
column data
data
fact
Prior art date
Legal status (The legal status 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 status listed.)
Active
Application number
CN201910327778.6A
Other languages
Chinese (zh)
Other versions
CN110109898A (en
Inventor
齐乐
彭福来
李凯一
吴登勇
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Chaoyue Technology Co Ltd
Original Assignee
Chaoyue Technology Co Ltd
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 Chaoyue Technology Co Ltd filed Critical Chaoyue Technology Co Ltd
Priority to CN201910327778.6A priority Critical patent/CN110109898B/en
Publication of CN110109898A publication Critical patent/CN110109898A/en
Application granted granted Critical
Publication of CN110109898B publication Critical patent/CN110109898B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F15/00Digital computers in general; Data processing equipment in general
    • G06F15/76Architectures of general purpose stored program computers
    • G06F15/78Architectures of general purpose stored program computers comprising a single central processing unit
    • G06F15/7867Architectures of general purpose stored program computers comprising a single central processing unit with reconfigurable architecture
    • 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/21Design, administration or maintenance of databases
    • G06F16/217Database tuning
    • 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/22Indexing; Data structures therefor; Storage structures
    • G06F16/2228Indexing structures
    • G06F16/2255Hash tables
    • 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/22Indexing; Data structures therefor; Storage structures
    • G06F16/2282Tablespace storage structures; Management thereof
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Abstract

The invention discloses a Hash connection acceleration method and a Hash connection acceleration system based on BRAM (block and branch management) in an FPGA (field programmable gate array) chip, belongs to the field of database acceleration, and aims to solve the technical problem of how to overcome the defect that a Hash connection software scheme occupies more CPU (central processing unit) calculation and I/O (input/output) resources. The method is that a plurality of dimension tables or a plurality of columns of the same dimension table are connected to a fact table in parallel through a plurality of channels, and comprises the following steps: in a hash connection construction stage, configuring a corresponding channel for each dimension table in an FPGA (field programmable gate array), and storing the hash table and an address table through BRAM (binary redundancy management) in an FPGA chip; and in the stage of Hash connection detection, routing the fact table to a corresponding channel, and connecting the row data of the matched fact table with the row data of the dimension table. The structure of the system comprises a BRAM in an FGPA chip configured on a PFGA, a plurality of channels, a hash calculation module, an extraction/hash module, a verification module, a connection module and a control module.

Description

Hash connection acceleration method and system based on BRAM in FPGA (field programmable Gate array) chip
Technical Field
The invention relates to the field of database acceleration, in particular to a Hash connection acceleration method and a Hash connection acceleration system based on BRAM in an FPGA chip.
Background
Business decision of enterprises, stock exchange of financial systems and the like in modern society increasingly depend on database systems with high efficiency and low delay, and particularly, the real-time performance is required to be high in data query and data analysis links. In the relational database, the Join operator, as an operation that needs to be executed frequently, occupies a considerable amount of CPU computing resources. Common Join operators include Sort Merge-Join (Sort Merge-Join), nested Loop-Join (Nested Loop-Join), and so on. However, with the continuous increase of the database scale, for the sorting and merging connection, if the result set obtained after applying the predicate condition specified in the target SQL is large and needs to be sorted, the execution efficiency of the sorting and merging connection is not high; for the nested loop connection, if the number of records of the driving result set corresponding to the driving table is large, even if there is an index on the connection column of the driven table, there is a problem that the execution efficiency is not high when the nested loop connection is used. The two software implementation schemes of the Join operator occupy a large amount of CPU computing resources, and when the data volume is large, the operation and time cost is high.
In order to solve the complexity problem of the two Join operators, a Hash connection (Hash-Join) operator is introduced into a large database: in the Hash connection, the optimizer firstly selects a smaller table of the two tables according to the statistical information, and establishes a Hash table based on a connection key of the table in a memory; the optimizer rescans the larger table in the table join, compares the data in the large table with the hash table, and if there is associated data, adds the data to the result set. Through Hash operation, the time complexity can be reduced from quadratic to linear, but more CPU calculation and I/O resources are still occupied.
How to overcome the problem of occupying more CPU calculation and I/O resources in the hash connection software scheme is a technical problem to be solved.
Disclosure of Invention
The technical task of the invention is to provide a hash connection acceleration method and a hash connection acceleration system based on BRAM in an FPGA chip to solve the problem of how to occupy more CPU (central processing unit) calculation and I/O (input/output) resources in a hash connection software scheme.
In a first aspect, the present invention provides a hash connection acceleration method based on BRAM in FPGA slice, which connects multiple dimension tables or multiple columns of the same dimension table to a fact table in parallel through multiple channels, including:
s100, configuring a corresponding channel for each dimension table in an FPGA (field programmable gate array) at a hash connection construction stage, calculating a hash value of column data of each dimension table to generate a hash table, linking the column data of the dimension tables with the same hash value to the same linked list to generate an address table, and storing the hash table and the address table through a BRAM (block counter) in an FPGA chip;
s200, in the hash connection detection stage, routing the fact table to a corresponding channel, calculating a hash value of column data of the fact table, and connecting the row data of the matched fact table with the row data of the dimension table.
Preferably, step S100 includes the following substeps:
s110, inputting the dimension tables into the FPGA in a sequential streaming manner according to the connection conditions, and configuring a corresponding associated channel for each dimension table in the FPGA;
s120, extracting a corresponding database page unit for each dimension table through the FPGA, and storing the database page unit through BRAM in the FPGA chip;
s130, calculating a hash value of column data of each dimension table through the FPGA, and storing the hash value in a hash table;
and S140, linking the column data of the dimension tables with the same hash value to the same linked list, and storing the linked list in an address table.
Preferably, each channel is provided with a proprietary resource that allows all the channels of the above configuration to be processed in parallel during the probing phase of the hash table.
Preferably, S200 includes the following steps;
s210, extracting and verifying the column data of the fact table through FFPGA, and routing the column data of the fact table to a corresponding channel according to a matching requirement;
s220, synchronously performing hash calculation on the column data of the fact table in each channel, verifying the columns of the fact table and the columns of the dimension table based on the hash values of the column data of the fact table, and executing the step S230 after the verification is successful;
and S230, comparing and matching the data flow type of the line data of the fact table with the data of the line data of the dimension table, connecting the data of the line data of the fact table with the data of the line data of the dimension table if the matching conditions are met, and discarding the corresponding data of the line data of the fact table if the matching conditions are not met. A join result is obtained and formatted into database page units of 4 KB.
Preferably, the hash calculation of the column data of the fact table in each channel synchronization in step S220, and the verification of the columns of the fact table and the columns of the dimension table based on the hash values of the column data of the fact table, includes:
calculating the column data hash value of each fact table, transmitting the column data hash value of the fact table to a hash table for verification, and judging whether the column data hash value of the fact table is the same as the column data hash value of the dimension table;
and if the column data hash value of the fact table is the same as the column data hash value of the dimension table, transmitting the column data of the fact table to the address table, and judging whether the column number of the fact table is the same as the column data of the dimension table.
Preferably, in step S230, after the line data of the fact table and the line data of the dimension table are linked, the linking result is formatted into a database page unit of 4 KB.
In the above embodiment, the database page unit of 4KB is transmitted to the database management system for later analysis processing.
In a second aspect, the present invention provides a hash connection acceleration system based on BRAM in FPGA slice, which includes:
the FGPA on-chip BRAM is used for storing a hash table, an address table and a database meta-unit;
a plurality of channels, each channel being provided with a proprietary resource allowing parallel processing of all the configured channels in a probing phase of a hash table;
the hash calculation module is used for calculating the hash value of the column data of the dimension table;
the extraction module is used for extracting a database page unit for each dimension table;
the extraction/hash module is used for matching the fact tables into the corresponding channels and calculating the column data hash value of each fact table;
the verification module is matched with the hash table and the address table and used for verifying the columns of the fact table and the columns of the dimension table; the connection module is used for connecting the line data of the matched fact table with the line data of the dimension table through a connection function;
and the control module is used for coordinating the work of each module through a state machine method, and comprises the steps of analyzing instructions from a database management system, and controlling data inflow, hash calculation and BRAM data access.
Preferably, the verification module is a module having the following functions:
judging whether the column data hash value of the fact table is the same as the column data hash value of the dimension table or not according to the column data hash value of the fact table on the basis of the hash table;
and if the column data hash value of the fact table is the same as the column data hash value of the dimension table, judging whether the column number of the fact table is the same as the column data of the dimension table or not based on the address table.
The hash connection acceleration method and system based on BRAM in the FPGA chip have the following advantages:
1. the FPGA retrieves the latest data from the system memory and executes the table connection operation with high parallelism, thereby realizing performance acceleration of several times compared with the traditional software scheme;
2. hash calculation is carried out in the FPGA, the Hash table and the address table are stored in the BRAM in the FPGA chip, and the BRAM in the FPGA chip can provide a quick searching function, so that a Hash operator can be directly operated in the FPGA without being externally connected with a DDR storage unit, and the application with quick processing response requirements is adapted;
3. the main module is stored in the high-speed Block RAM in the FPGA chip, so that the external main memory does not need to be frequently accessed, and the memory bottleneck in a CPU software scheme is overcome.
Drawings
In order to more clearly illustrate the technical solutions in the embodiments of the present invention, the drawings needed to be used in the description of the embodiments will be briefly introduced below, and it is obvious that the drawings in the following description are only some embodiments of the present invention, and it is obvious for those skilled in the art to obtain other drawings based on these drawings without creative efforts.
The invention is further described below with reference to the accompanying drawings.
Fig. 1 is a flow diagram of a hash connection acceleration method based on BRAM in an FPGA slice in embodiment 1;
fig. 2 is a working principle block diagram of a hash connection construction stage in the hash connection acceleration method based on BRAM in FPGA slice in embodiment 1;
fig. 3 is a working principle box of a hash connection detection stage in the hash connection acceleration method based on BRAM in the FPGA slice in embodiment 1;
fig. 4 is a schematic block diagram of hash connection in the hash connection acceleration method based on BRAM on the FPGA slice in embodiment 1.
Detailed Description
The present invention is further described below with reference to the accompanying drawings and specific embodiments so that those skilled in the art can better understand the present invention and can implement the present invention, but the embodiments are not intended to limit the present invention, and the embodiments and technical features of the embodiments can be combined with each other without conflict.
It is to be understood that "a plurality" in the embodiments of the present invention means two or more.
The embodiment of the invention provides a Hash connection acceleration method and a Hash connection acceleration system based on BRAM in an FPGA chip, which are used for solving the technical problem of how to overcome the occupation of more CPU calculation and I/O resources in a Hash connection software scheme.
Example 1:
as shown in fig. 1-4, the hash connection acceleration method based on BRAM in FPGA slice of the present invention connects multiple dimension tables or multiple columns of the same dimension table to a fact table in parallel through multiple channels, including:
s100, configuring a corresponding channel for each dimension table in the FPGA at a hash connection construction stage, calculating the hash value of the column data of each dimension table to generate a hash table, linking the column data of the dimension tables with the same hash value to the same linked list to generate an address table, and storing the hash table and the address table through a BRAM (binary redundancy management) in an FPGA chip;
s200, in the hash connection detection stage, routing the fact table to a corresponding channel, calculating a hash value of column data of the fact table, and connecting the row data of the matched fact table with the row data of the dimension table.
In the hash join construction stage, the method comprises the following steps:
s110, the dimension tables are sequentially transmitted to an FPGA in a streaming mode by a database management system according to connection adjustment, the FPGA configures corresponding channels for each dimension table, each channel is provided with a proprietary resource, and the proprietary resource allows all the configured channels to be processed in parallel in a detection stage of the hash table;
s120, extracting a corresponding database page unit for each dimension table through the FPGA, storing the database page unit through BRAM (file management module) in an FPGA chip, directly reading the database page unit into a memory from a disk, and then transmitting the database page unit to the FPGA in a flowing manner;
s130, calculating a hash value of column data of each dimension table through the FPGA, and storing the hash value in a hash table;
and S140, linking the column data of the dimension tables with the same hash value to the same linked list, and storing the linked list in an address table.
Streaming dimension tables in order does not add significant overhead in the above steps, because dimension tables are typically smaller in size than fact tables.
The hash table is in the form of bitvector in the FPGA, namely, the hash table is a bit vector.
Step S200 includes the following sub-steps:
s210, extracting and verifying the column data of the fact table through FFPGA, and routing the column data of the fact table to a corresponding channel according to a matching requirement;
s220, synchronously performing hash calculation on the column data of the fact table in each channel, verifying the columns of the fact table and the columns of the dimension table based on the hash values of the column data of the fact table, and executing the step S230 after the verification is successful;
and S230, comparing and matching the data flow type of the data of the fact table with the data of the dimension table, connecting the data of the fact table with the data of the dimension table if the matching conditions are met, discarding the corresponding data of the rows of the fact table if the matching conditions are not met, obtaining a connection result, and formatting the connection result into a database page unit of 4 KB. And sends the 4KB database page unit to the database management system for later analysis processing.
In step S220, performing hash calculation on the column data of the fact table in each channel synchronization, and verifying the columns of the fact table and the columns of the dimension table based on the hash value of the column data of the fact table, including: and calculating the column data hash value of each fact table, transmitting the column data hash value of each fact table to a hash table for verification, judging whether the column data hash value of each fact table is the same as the column data hash value of each dimension table, if the column data hash value of each fact table is the same as the column data hash value of each dimension table, transmitting the column data of each fact table to an address table, and judging whether the column number of each fact table is the same as the column data of each dimension table.
In step S230, the line data of the fact table and the line data of the dimension table are connected by an address mapping method.
Example 2:
the invention provides a Hash connection acceleration subsystem based on BRAM in an FPGA (field programmable gate array) chip, which comprises the BRAM in the FGPA chip, a plurality of channels, a Hash calculation module, an extraction/Hash module, a verification module and a control module which are arranged on a PFGA (field programmable gate array).
The BRAM in the FGPA chip is used for storing a hash table, an address table and a database meta-unit.
Each channel is equipped with proprietary resources that allow all of the channels of the multiple above configurations to be processed in parallel during the probing phase of the hash table.
The hash calculation module is used for calculating a hash value of column data of the dimension table.
The extraction module is used for extracting a database page unit for each dimension table.
The decimation/hashing module is used for matching the fact tables into the corresponding channels and calculating the column data hash value of each fact table.
The verification module is matched with the hash table and the address table and used for verifying the columns of the fact table and the columns of the dimension table; and the connection module is used for connecting the line data of the matched fact table with the line data of the dimension table through a connection function.
And the control module is used for coordinating the work of each module through a state machine method, and comprises the steps of analyzing instructions from a database management system, and controlling data inflow, hash calculation and BRAM data access.
The verification module realizes verification through the following method: and judging whether the column data hash value of the fact table is the same as the column data hash value of the dimension table or not according to the column data hash value of the fact table on the basis of the hash table, and if so, judging whether the column number of the fact table is the same as the column data hash value of the dimension table on the basis of the address table.
The hash connection acceleration system based on the BRAM in the FPGA chip can realize the hash connection acceleration method based on the BRAM in the FPGA chip disclosed by the embodiment 1.
The above-mentioned embodiments are merely preferred embodiments for fully illustrating the present invention, and the scope of the present invention is not limited thereto. The equivalent substitution or change made by the technical personnel in the technical field on the basis of the invention is all within the protection scope of the invention. The protection scope of the invention is subject to the claims.

Claims (7)

1. The Hash connection acceleration method based on BRAM in FPGA chips is characterized in that a plurality of dimension tables are connected to a fact table in parallel through a plurality of channels, and comprises the following steps:
s100, configuring a corresponding channel for each dimension table in an FPGA (field programmable gate array) at a hash connection construction stage, calculating a hash value of column data of each dimension table to generate a hash table, linking the column data of the dimension tables with the same hash value to the same linked list to generate an address table, and storing the hash table and the address table through a BRAM (block counter) in an FPGA chip;
s200, in a hash connection detection stage, routing the column data of the fact table to a corresponding channel according to matching requirements, calculating a hash value of the column data of the fact table, and connecting the row data of the matched fact table with the row data of the dimension table;
wherein, S200 comprises the following steps;
s210, extracting and verifying the column data of the fact table through the FPGA, and routing the column data of the fact table to a corresponding channel according to a matching requirement;
s220, synchronously performing hash calculation on the column data of the fact table in each channel, verifying the columns of the fact table and the columns of the dimension table based on the hash values of the column data of the fact table, and executing the step S230 after the verification is successful;
and S230, comparing and matching the data flow type of the data of the fact table with the data of the dimension table, connecting the data of the fact table with the data of the dimension table if the matching conditions are met, discarding the corresponding data of the rows of the fact table if the matching conditions are not met, obtaining a connection result, and formatting the connection result into a database page unit of 4 KB.
2. The hash connection acceleration method based on BRAM on FPGA slice of claim 1, wherein the step S100 comprises the following sub-steps:
s110, inputting the dimension tables into the FPGA in a sequential streaming manner according to the connection conditions, and configuring a corresponding associated channel for each dimension table in the FPGA;
s120, extracting a corresponding database page unit for each dimension table through the FPGA, and storing the database page unit through BRAM in the FPGA chip;
s130, calculating a hash value of column data of each dimension table through the FPGA, and storing the hash value in a hash table;
and S140, linking the column data of the dimension tables with the same hash value to the same linked list, and storing the linked list in an address table.
3. The method of claim 2, wherein each channel is configured with proprietary resources that allow all of the configured channels to be processed in parallel during the probing phase of the hash table.
4. The hash connection acceleration method based on BRAM on FPGA slice of claim 1, wherein the step S220 performs hash calculation on the column data of the fact table at each channel synchronization, and verifies the columns of the fact table and the columns of the dimension table based on the hash value of the column data of the fact table, comprising:
calculating the column data hash value of each fact table, transmitting the column data hash value of the fact table to a hash table for verification, and judging whether the column data hash value of the fact table is the same as the column data hash value of the dimension table;
and if the column data hash value of the fact table is the same as the column data hash value of the dimension table, transmitting the column data of the fact table to the address table, and judging whether the column number of the fact table is the same as the column data of the dimension table.
5. The hash join acceleration method based on BRAM on FPGA slice as claimed in claim 1, wherein in step S230, after the line data of the fact table and the line data of the dimension table are joined, the join result is formatted into a database page unit of 4 KB.
6. Hash connection acceleration system based on BRAM in FPGA chip is characterized by comprising the following components configured on PFGA:
the FGPA on-chip BRAM is used for storing a hash table, an address table and a database meta-unit;
a plurality of channels, each channel being provided with a proprietary resource allowing parallel processing of all the configured channels in a probing phase of a hash table;
the hash calculation module is used for calculating the hash value of the column data of the dimension table;
the extraction module is used for extracting a database page unit for each dimension table;
the extraction and hash module is used for matching the fact tables into the corresponding channels and calculating the column data hash value of each fact table;
the verification module is matched with the hash table and the address table and used for verifying the columns of the fact table and the columns of the dimension table; the connection module is used for connecting the line data of the matched fact table with the line data of the dimension table through a connection function;
and the control module is used for coordinating the work of each module through a state machine method, and comprises the steps of analyzing instructions from a database management system, and controlling data inflow, hash calculation and BRAM data access.
7. The BRAM hash connection acceleration system in FPGA-based on-chip of claim 6, wherein the verification module is a module having functions of:
judging whether the column data hash value of the fact table is the same as the column data hash value of the dimension table or not according to the column data hash value of the fact table on the basis of the hash table;
and if the column data hash value of the fact table is the same as the column data hash value of the dimension table, judging whether the column number of the fact table is the same as the column data of the dimension table or not based on the address table.
CN201910327778.6A 2019-04-23 2019-04-23 Hash connection acceleration method and system based on BRAM in FPGA chip Active CN110109898B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910327778.6A CN110109898B (en) 2019-04-23 2019-04-23 Hash connection acceleration method and system based on BRAM in FPGA chip

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910327778.6A CN110109898B (en) 2019-04-23 2019-04-23 Hash connection acceleration method and system based on BRAM in FPGA chip

Publications (2)

Publication Number Publication Date
CN110109898A CN110109898A (en) 2019-08-09
CN110109898B true CN110109898B (en) 2023-04-18

Family

ID=67486343

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910327778.6A Active CN110109898B (en) 2019-04-23 2019-04-23 Hash connection acceleration method and system based on BRAM in FPGA chip

Country Status (1)

Country Link
CN (1) CN110109898B (en)

Families Citing this family (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110990638B (en) * 2019-10-28 2023-04-28 北京大学 Large-scale data query acceleration device and method based on FPGA-CPU heterogeneous environment
CN111382158B (en) * 2020-03-09 2023-04-28 北京东方金信科技股份有限公司 Method and system for realizing parallel connection by adopting two-stage hash table structure
CN112069216A (en) * 2020-09-18 2020-12-11 山东超越数控电子股份有限公司 Join algorithm implementation method, system, device and medium based on FPGA
CN112256704A (en) * 2020-10-23 2021-01-22 山东超越数控电子股份有限公司 Quick join method, storage medium and computer
CN112765174B (en) * 2021-01-20 2024-03-29 上海达梦数据库有限公司 Hash connection-based detection method, device, equipment and storage medium
CN113296705B (en) * 2021-05-27 2022-09-27 浙江萤火虫区块链科技有限公司 Framework system for parallel computing Poseido Hash in Filecin
CN113468181B (en) * 2021-07-14 2022-10-11 中国人民解放军军事科学院国防科技创新研究院 Parallel Hash connection acceleration method and system based on FPGA

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8660985B2 (en) * 2012-04-11 2014-02-25 Renmin University Of China Multi-dimensional OLAP query processing method oriented to column store data warehouse
CN103942343B (en) * 2014-05-12 2017-03-08 中国人民大学 A kind of data store optimization method towards Hash connection
US9817612B2 (en) * 2014-11-20 2017-11-14 International Business Machines Corporation High-performance hash joins using memory with extensive internal parallelism
CN104866608B (en) * 2015-06-05 2018-01-09 中国人民大学 Enquiring and optimizing method based on join index in a kind of data warehouse
CN105868388B (en) * 2016-04-14 2019-03-19 中国人民大学 A kind of memory OLAP enquiring and optimizing method based on FPGA

Also Published As

Publication number Publication date
CN110109898A (en) 2019-08-09

Similar Documents

Publication Publication Date Title
CN110109898B (en) Hash connection acceleration method and system based on BRAM in FPGA chip
JP6207619B2 (en) Profiling data with source tracking
US8171047B2 (en) Query execution and optimization utilizing a combining network in a parallel computer system
US20170083573A1 (en) Multi-query optimization
CN103176974B (en) The method and apparatus of access path in optimization data storehouse
CN109815283B (en) Heterogeneous data source visual query method
Wang et al. Research on parallelization of Apriori algorithm in association rule mining
US20070143246A1 (en) Method and apparatus for analyzing the effect of different execution parameters on the performance of a database query
WO2014031481A1 (en) Hardware implementation of the aggregation/group by operation: filter method
CN110781231B (en) Database-based batch import method, device, equipment and storage medium
US11030196B2 (en) Method and apparatus for processing join query
EP2646928A1 (en) Systems and methods for performing a nested join operation
US20170270162A1 (en) Query optimization method in distributed query engine and apparatus thereof
CN104685499A (en) Hardware implementation of the filter/project operations
US20090043750A1 (en) Query Optimization in a Parallel Computer System with Multiple Networks
US9189489B1 (en) Inverse distribution function operations in a parallel relational database
JP6418431B2 (en) Method for efficient one-to-one coupling
US20240118939A1 (en) Utilizing key value-based record distribution data to perform parallelized segment generation in a database system
US20180276289A1 (en) Efficient database query aggregation of variable length data
EP4352627A1 (en) Query execution utilizing probabilistic indexing
CN116483831B (en) Recommendation index generation method for distributed database
CN112631754A (en) Data processing method, data processing device, storage medium and electronic device
CN110297858B (en) Optimization method and device for execution plan, computer equipment and storage medium
US20220114155A1 (en) Per-segment secondary indexing in database systems
JP2016130929A (en) Aggregation device, aggregation system, aggregation method, and program

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
CB02 Change of applicant information
CB02 Change of applicant information

Address after: 250100 No. 2877 Kehang Road, Sun Village Town, Jinan High-tech District, Shandong Province

Applicant after: Chaoyue Technology Co.,Ltd.

Address before: 250100 No. 2877 Kehang Road, Sun Village Town, Jinan High-tech District, Shandong Province

Applicant before: SHANDONG CHAOYUE DATA CONTROL ELECTRONICS Co.,Ltd.

GR01 Patent grant
GR01 Patent grant