- OS: Debian 12 VM on Proxmox VE 8
- CPUs: 8x Xeon E5-2620 v2
- RAM: 8 GiB DDR3
- HDD: Samsung PM863 NVMe in Ceph over Mellanox Infiniband 56 Gbps IPoIB
- Virtualized via
scsi-virtio-single
,aio=native
,io_threads=enabled
- Virtualized via
- FS: ext4
(rw,noatime)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import itertools | |
import uuid | |
from functools import lru_cache | |
from typing import Dict, List, Optional, Union | |
from sqlalchemy import (Column, DateTime, ForeignKey, Integer, String, | |
create_engine) | |
from sqlalchemy.dialects import mysql | |
from sqlalchemy.orm import (Session, declarative_base, relationship, | |
sessionmaker) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import configparser | |
import plistlib | |
import shutil | |
import subprocess | |
from enum import Enum | |
from pathlib import Path | |
from string import Template | |
from typing import NamedTuple, Optional | |
EXEC_START_TMPL = Template("/opt/homebrew/opt/mysql@${mysql_ver}/bin/mysqld_safe") |
OlderNewer