LSM-Tree(2)

1. Introduction(1)

As long-lived transactions in activity flow management systems become commercially available ([10], [11], [12], [20], [24], [27]), there will be increased need to provide indexed access to transactional log records.
随着长周期的事务管理系统商业应用,需要提供事务日志系统的索引操作。
Traditionally, transactional logging has focused on aborts and recovery, and has required the system to refer back to a relatively short-term history in normal processing with occasional transaction rollback, while recovery was performed using batched sequential reads.
传统事务日志关注挂掉和恢复,需要一个相对短时间记录批量读取恢复系统。
However, as systems take on responsibility for more complex activities, the duration and number of events that make up a single long-lived activity will increase to a point where there is sometimes a need to review past transactional steps in real time to remind users of what has been accomplished.
然而,随着系统负责的系统更加复杂,单个用户需要了解之前事物步骤,事件周期和数量要多的多。
At the same time, the total number of active events known to a system will increase to the point where memory-resident data structures now used to keep track of active logs are no longer feasible, notwithstanding the continuing decrease in memory cost to be expected.
随着系统总的事件数量增长,基于内存的日志系统在可预期情况下变得不可行了。
The need to answer queries about a vast number of past activity logs implies that indexed log access will become more and more important.
需要查询的数量巨大,日志查询系统的要求越来越重要。

Even with current transactional systems there is clear value in providing indexing to support queries on history tables with high insert volume.
即使现在的事务系统查询表格也是有很大量的插入操作。
Networking, electronic mail, and other nearly-transactional systems produce huge logs often to the detriment of their host systems.
网络应用、邮件和其他接近的事务系统产生巨大的日志损害主机系统。
To start from a concrete and well-known example, we explore a modified TPC-A benchmark in the following Examples 1.1 and 1.2.
一个众所周知的示例开始介绍,TPC-A。
Note that examples presented in this paper deal with specific numeric parametric values for ease of presentation;
注意示例使用了便于分析的特殊参数值。
it is a simple task to generalize these results.
这是一个简单任务生成结果。
Note too that although both history tables and logs involve time-series data, the index entries of the LSM-Tree are not assumed to have indentical temporal key order.
也要注意虽然历史表和涉及时间序列的数据,LSM-tree索引内容不以时间作为key。
The only assumption for improved efficiency is high update rates compared to retrieval rates.
唯一假设是高效的检索比较速度。

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • The Log-Structured Merge-Tree (LSM-Tree) ABSTRACT High-pe...
    i_need_job阅读 192评论 0 0
  • LSM-tree 在 NoSQL 系统里非常常见,基本已经成为必选方案了。今天介绍一下 LSM-tree 的主要思...
    爱情小傻蛋阅读 328评论 0 1
  • LSM-tree 在 NoSQL 系统里非常常见,基本已经成为必选方案了。今天介绍一下 LSM-tree 的主要思...
    叫我不矜持阅读 44,566评论 0 36
  • 思想:数据修改增量保持在内存中,达到限制后将修改操作批量写入到磁盘中,相比较于写入操作的高性能,读取需要合并内存中...
    hedgehog1112阅读 614评论 0 0
  • 2019-10-18 LSM 核心思想的核心就是放弃部分读能力,换取写入的最大化能力。LSM Tree ,这个概念...
    Ary_zz阅读 208评论 0 0