ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

2014:Hardware Acceleration of Database Operation

2020-11-25 18:02:00  阅读:236  来源: 互联网

标签:operations database column Hardware bandwidth memory 2014 Operation data


文章目录

ABSTRACT

  • memory in database systems grows,
  • entire database tables,
    • or even databases,
  • fit in the system’s memory,
  • making in-memory database operations
    • more prevalent.

  • disk-based to in-memory database systems
    • contributed to
    • a move from row-wise to columnar data storage.

为啥放到内存里就要用按列了呢?

  • common database workloads
    • grown beyond OLTP to
    • online analytical processing and data mining.

  • These workloads
    • analyze huge datasets
      • irregular and not indexed,
    • making traditional database operations
      • like joins more expensive.

第二段

  • dedicated hardware
    • to accelerate in-memory database operations.

  • accelerate the selection process of
    • compacting a single column into a linear column of selected data,
    • joining two sorted columns via merging,
    • and sorting a column.

啥叫compacting a single column into a linear column of selected data

  • implement a prototype of this system using FPGAs and
  • show substantial improvements in
    • both absolute throughput
    • and
    • utilization of memory bandwidth.

  • Using the prototype as a guide,
    • we explore how the hardware resources required
    • by our design change with the desired throughput.

1. INTRODUCTION

  • Database systems
    • historically
    • constrained by disk performance.

  • with advances of memory technology
    • amount of main memory available in large database
      systems
    • has grown enough that many large database tables
      now reside entirely in main memory.

  • While Moore’s law continues to hold and the number of transistors available to chip architects continues to increase, power constraints limit the number of logic transistors that can be active at any given time on a chip [3].

  • unlikely
    • general purpose processing elements
    • be able to fully utilize the amount of memory bandwidth available to a chip
    • while performing all but the most basic database operations.

你很难充分利用主存提供的高带宽,当然除了一些基本的操作喽!

  • increased join performance into the 100s of million tuples per second [7,6],
    • 64-bit tuples
    • this corresponds to a data bandwidth
      • of one to five gigabytes per second.

啥意思啊?

  • Modern chips,
    • achieve memory bandwidth over 100 GB/s [1].

  • using general purpose compute is leaving performance on the table.

啥意思啊?

标签:operations,database,column,Hardware,bandwidth,memory,2014,Operation,data
来源: https://blog.csdn.net/zhoutianzi12/article/details/110138507

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有