2022-08-20から1日間の記事一覧

{VPN}Site-to-Site VPN(複数VPC)

https://aws.amazon.com/jp/blogs/news/aws-hands-on-for-beginners-16/ 前提: AWS側の作業OS: CentOS7(オンプレ)GCP側の作業OS: CentOS7(オンプレ)AWS側の作業ユーザ: testuserGCP側の作業ユーザ: testuser AWS側のASN: 64512GCP側のASN: 64513 IPSec tunne…

IN句上限

DB

MySQL (8.0.29)調べた限り上限はない模様実際には100万件程度が上限の模様 前提:CPU2コア、メモリ4Gtab1の件数=1 vim /etc/my.cnf max_allowed_packet = 1Ginnodb_buffer_pool_size = 2G : > a.sql echo "select 1 from tab1" >> a.sqlecho "where col1 in …

ブロック破損再現

DB

MySQL (8.0.29) drop table tab1; create table tab1( col1 numeric not null primary key, col2 char(255)); drop procedure proc1; delimiter //create procedure proc1(in x int)begin declare i int; set i = 1; start transaction; while i <= x do ins…