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

Greenplum 资源管理——Resource Group使用和实现分析

Hash Index of PG

Table of Contents

本文为摘录(或转载),侵删,原文为: ../../../Work/pg_master/src/backend/access/hash/README

1 Hash Indexing

这个目录包含了 Postgres 的散列索引实现。其中大部分核心思想来自于 Margo Seltzer 和 Ozan Yigit 在 1991 年 1 月举行的冬季 USENIX 会议上的论文《A New Hashing Package for UNIX》。我们的内存哈希表实现(src/backend/utils/hash/dynahash.c)也依赖于相同的概念;它源自于 Esmond Pitt 编写的代码,后来又由 Margo 和其他人进行了改进。

How To Use Journalctl to View and Manipulate Systemd Logs

本文为摘录(或转载),侵删,原文为: https://www.digitalocean.com/community/tutorials/how-to-use-journalctl-to-view-and-manipulate-systemd-logs

1 Basic Log Viewing

要查看 journald 守护程序收集的日志,请使用 journalctl 命令。

当单独使用时,系统中的每个日志条目都会在翻页器(通常是 less)中显示,供您浏览。最旧的条目将显示在顶部:

Hybrid Blockchain Database Systems: Design and Performance

Table of Contents

本文为摘录(或转载),侵删,原文为: attachments/pdf/e/p1092-loghin.pdf

1 ABSTRACT

Abbrs:

  • CFT: crash fault-tolerant
  • BFT: byzantine fault-tolerant
    Byzantine Fault Tolerance (BFT) is a trait of decentralized, permissionless systems which are capable of successfully identifying and rejecting dishonest or faulty information. Byzantine fault tolerant systems have successfully solved the Byzantine Generals Problem and are robust against sybil attacks.

2 INTRODUCTION

  • 学术界出现了集成分布式数据库与区块链特性的系统

iReader & Calibre

Table of Contents

1 表现

通过 Calibre 向 iReader 中传输书籍失败,报 MTP 相关错误。

2 原因

不知道为什么,无法在设备存储空间中创建目录

3 绕过方法

  1. 用文件管理器提前创建 Books目录 (不推荐), 或者
  2. 在 Calibre 中找到设备,选择配置,将传输目录指向已有的目录,例如 iTransfer

推荐第二种,配置过后会生成下面的配置文件 ~/.config/calibre/mtp_devices.json

Linux Process States

本文为摘录(或转载),侵删,原文为: https://www.baeldung.com/linux/process-states

1 The Linux Process States

  • Running or Runnable (R)
  • Uninterruptible Sleep (D)
  • Interruptable Sleep (S)
  • Stopped (T)
  • Zombie (Z)

状态机如下: