/images/avatar.jpg
杂七杂八的,随手记录。

All Major C++17 Features You Should Know

ByteHTAP: ByteDance’s HTAP System with High Data Freshness and Strong Data Consistency

Cardinality Estimation in DBMS: A Comprehensive Benchmark Evaluation

本文为摘录(或转载),侵删,原文为: attachments/pdf/2/p752-zhu.pdf

1 ABSTRACT

  • we compare the effectiveness of CardEst methods in a real DBMS

  • We establish a new benchmark for CardEst, which:

    • contains a new complex realworld dataset STATS and
    • a diverse query workload STATS-CEB.
  • We integrate multiple most representative CardEst methods into PostgreSQL,

cgroup memo

1 Threads (Tasks (threads) versus processes)

cgroup v1 可以单独操作进程中的线程, man cgroups :

In cgroups v1, a distinction is drawn between processes and tasks. In this view, a process can con‐ sist of multiple tasks (more commonly called threads, from a user-space perspective, and called such in the remainder of this man page). In cgroups v1, it is possible to independently manipulate the cgroup memberships of the threads in a process.

Chimp: Efficient Lossless Floating Point Compression for Time Series Databases

本文为摘录(或转载),侵删,原文为: attachments/pdf/1/p3058-liakos.pdf

1 ABSTRACT

  • 时序数据难以高效存储,导致存储代价高昂。

Columnar Formats for Schemaless LSM-based Document Stores

本文为摘录(或转载),侵删,原文为: attachments/pdf/f/p2085-alkowaileet.pdf

这篇论文探讨了文档存储数据库系统的数据模型灵活性限制其在列式关系数据库中进行分析工作负载的表现。作者提出了几种基于Log-Structured Merge (LSM) tree事件的技术,旨在将数据存储在列式布局中。他们扩展了Dremel格式并引入一个新的列式布局来组织和存储数据。论文还强调了在文档存储中使用查询编译技术的潜力,并介绍了他们在Apache AsterixDB中的实现和评估。实验结果显示了显著的性能增益,并在最小程度上影响了摄入性能。