# Headless Service。类似绑定了mysql-0的IP地址# 通过为 Pod 分配 DNS 记录来固定它的拓扑状态,比如“mysql-0.mysql”和“mysql-1.mysql”这样的 DNS 名字# 其中,编号为 0 的节点就是我们的主节点# 写请求,则必须直接以 DNS 记录的方式访问到 MySQL 的主节点apiVersion: v1
kind: Service
metadata:name: mysqllabels:app: mysql
spec:ports:-name: mysqlport:3306clusterIP: Noneselector:app: mysql
---# 常规的 Service。用于负载均衡# 所有用户的读请求,都必须访问第二个 Service 被自动分配的 DNS 记录# 即:“mysql-read”(当然,也可以访问这个 Service 的 VIP)# 读请求就可以被转发到任意一个 MySQL 的主节点或者从节点上apiVersion: v1
kind: Service
metadata:name: mysql-readlabels:app: mysql
spec:ports:-name: mysqlport:3306selector:app: mysql
[root@master ~]# kubectl logs mysql-0 init-mysql
+ [[ mysql-0 =~ -([0-9]+)$ ]]
+ ordinal=0
+ echo'[mysqld]'
+ echo server-id=100
+ [[0-eq0]]
+ cp /mnt/config-map/primary.cnf /mnt/conf.d/
[root@master ~]# kubectl logs mysql-0 mysql2023-03-24 07:09:15+00:00 [Note][Entrypoint]: Entrypoint script for MySQL Server 5.7.36-1debian10 started.
2023-03-24 07:09:15+00:00 [Note][Entrypoint]: Switching to dedicated user 'mysql'2023-03-24 07:09:15+00:00 [Note][Entrypoint]: Entrypoint script for MySQL Server 5.7.36-1debian10 started.
2023-03-24T07:09:15.578039Z 0[Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation formore details).
2023-03-24T07:09:15.579656Z 0[Note] mysqld (mysqld 5.7.36-log) starting as process 1...
2023-03-24T07:09:15.580982Z 0[Warning] No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a master and has his hostname changed!! Please use '--log-bin=mysql-0-bin' to avoid this problem.
2023-03-24T07:09:15.607203Z 0[Note] InnoDB: PUNCH HOLE support available
2023-03-24T07:09:15.607219Z 0[Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2023-03-24T07:09:15.607222Z 0[Note] InnoDB: Uses event mutexes
2023-03-24T07:09:15.607224Z 0[Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
2023-03-24T07:09:15.607226Z 0[Note] InnoDB: Compressed tables use zlib 1.2.11
2023-03-24T07:09:15.607229Z 0[Note] InnoDB: Using Linux native AIO
2023-03-24T07:09:15.607506Z 0[Note] InnoDB: Number of pools: 12023-03-24T07:09:15.607671Z 0[Note] InnoDB: Using CPU crc32 instructions
2023-03-24T07:09:15.609449Z 0[Note] InnoDB: Initializing buffer pool, total size = 128M, instances =1, chunk size = 128M
2023-03-24T07:09:15.617162Z 0[Note] InnoDB: Completed initialization of buffer pool
2023-03-24T07:09:15.620370Z 0[Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
2023-03-24T07:09:15.644357Z 0[Note] InnoDB: Highest supported fileformat is Barracuda.
2023-03-24T07:09:16.057153Z 0[Note] InnoDB: Creating shared tablespace for temporary tables
2023-03-24T07:09:16.057222Z 0[Note] InnoDB: Setting file'./ibtmp1' size to 12 MB. Physically writing the file full; Please wait...
2023-03-24T07:09:19.387580Z 0[Note] InnoDB: File './ibtmp1' size is now 12 MB.
2023-03-24T07:09:19.388076Z 0[Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
2023-03-24T07:09:19.388095Z 0[Note] InnoDB: 32 non-redo rollback segment(s) are active.
2023-03-24T07:09:19.388889Z 0[Note] InnoDB: Waiting for purge to start
2023-03-24T07:09:19.446231Z 0[Note] InnoDB: 5.7.36 started; log sequence number 126661492023-03-24T07:09:19.447072Z 0[Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
2023-03-24T07:09:19.447166Z 0[Note] Plugin 'FEDERATED' is disabled.
2023-03-24T07:09:19.694456Z 0[Note] InnoDB: Buffer pool(s) load completed at 2303247:09:19
2023-03-24T07:09:19.787835Z 0[Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
2023-03-24T07:09:19.787892Z 0[Note] Skipping generation of SSL certificates as certificate files are present in data directory.
2023-03-24T07:09:19.787897Z 0[Warning] A deprecated TLS version TLSv1 is enabled. Please use TLSv1.2 or higher.
2023-03-24T07:09:19.787898Z 0[Warning] A deprecated TLS version TLSv1.1 is enabled. Please use TLSv1.2 or higher.
2023-03-24T07:09:19.790876Z 0[Warning] CA certificate ca.pem is self signed.
2023-03-24T07:09:19.790926Z 0[Note] Skipping generation of RSA key pair as key files are present in data directory.
2023-03-24T07:09:19.794145Z 0[Note] Server hostname(bind-address): '*'; port: 33062023-03-24T07:09:19.794362Z 0[Note] IPv6 is available.
2023-03-24T07:09:19.794440Z 0[Note] - '::' resolves to '::';2023-03-24T07:09:19.794469Z 0[Note] Server socket created on IP: '::'.2023-03-24T07:09:19.795754Z 0[Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld'in the path is accessible to all OS users. Consider choosing a different directory.
2023-03-24T07:09:20.029315Z 0[Note] Failed to start slave threads for channel ''2023-03-24T07:09:20.567496Z 0[Note] Event Scheduler: Loaded 0 events
2023-03-24T07:09:20.568119Z 0[Note] mysqld: ready for connections.
Version: '5.7.36-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MySQL Community Server (GPL)2023-03-24T07:09:46.837520Z 9[Warning] IP address '10.244.4.62' could not be resolved: Name or service not known
2023-03-24T07:09:46.844496Z 9[Note] Start binlog_dump to master_thread_id(9) slave_server(101), pos(mysql-0-bin.000006, 756)2023-03-24T07:10:40.115743Z 43[Warning] IP address '10.244.3.116' could not be resolved: Name or service not known
2023-03-24T07:10:40.173087Z 43[Note] Start binlog_dump to master_thread_id(43) slave_server(102), pos(mysql-0-bin.000006, 756)
kubectl run mysql-client --image=mysql:5.7 -i --rm --restart=Never -- mysql -h mysql-read -uroot -e'SELECT * FROM test.messages'If you don't see a command prompt, try pressing enter.
message
hello
pod "mysql-client" deleted
题目来源:
蓝桥杯 2023 省 A]更小的数 - 洛谷
这题只需要用到双指针就OK~
思路1:
翻转数组的子数组,然后进行比较大小将翻转后的数组存储在字符串 k k k中,然后将字符串 k k k与字符串 a a a进行逐一元素比较(因为…