-
Notifications
You must be signed in to change notification settings - Fork 0
/
9.index.sql
48 lines (38 loc) · 1.73 KB
/
9.index.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
-- index 조회
show index from author;
-- 조회시 index를 통해 조회하려면 반드시 where 조건에 해당 컬럼이 있어야 함
select * from author where email = "hongildong@naver.com";
-- id에 index가 걸려있으므로, id의 index를 통해 조회 후 name full scan
select * from author where id=1 and name='hongildong';
-- 만약에 두 컬럼에 동시에 index가 걸려있다면 해당 index활요
-- 만약에 두 컬럼 각각 index가 설정돼 있다면 mariadb엔진에서 최적의 알고리즘 실행
select * from author where name ='hongildong' and address='서울시'
-- index 제거
alter table author drop index 인덱스명(→show index from author; 했을 때 key name으로 되어있는 것이 인덱스명이다.);
-- 데이터 대량생성 후 조회(100만개) → 속도 느려진다.
DELIMITER //
CREATE PROCEDURE insert_authors()
BEGIN
DECLARE i INT DEFAULT 1;
DECLARE email VARCHAR(100);
DECLARE batch_size INT DEFAULT 10000; -- 한 번에 삽입할 행 수
DECLARE max_iterations INT DEFAULT 100; -- 총 반복 횟수 (100000000 / batch_size)
DECLARE iteration INT DEFAULT 1;
WHILE iteration <= max_iterations DO
START TRANSACTION;
WHILE i <= iteration * batch_size DO
SET email = CONCAT('seonguk', i, '@naver.com');
INSERT INTO author (email) VALUES (email);
SET i = i + 1;
END WHILE;
COMMIT;
SET iteration = iteration + 1;
DO SLEEP(0.1); -- 각 트랜잭션 후 0.1초 지연
END WHILE;
END //
DELIMITER ;
-- 프로시저 호출
call insert_authors();
-- index 생성 → index 생성 후 속도가 얼마나 빨라지는지 비교
create index email_index on author(email);
-- 조회 성능 재확인