Skip to content

Commit 17742ff

Browse files
committed
fix: move to hugo
1 parent d2aa243 commit 17742ff

File tree

196 files changed

+5498
-126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+5498
-126
lines changed

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Generated files by hugo
2+
/public/
3+
/resources/_gen/
4+
/assets/jsconfig.json
5+
hugo_stats.json
6+
7+
# Executable may be added to repository
8+
hugo.exe
9+
hugo.darwin
10+
hugo.linux
11+
12+
# Temporary lock file while building
13+
/.hugo_build.lock

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/hugo-dusk"]
2+
path = themes/hugo-dusk
3+
url = https://github.com/gyorb/hugo-dusk

_config.landscape.yml

Whitespace-only changes.

_config.yml

Lines changed: 0 additions & 105 deletions
This file was deleted.

archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
3+
date = {{ .Date }}
4+
draft = true
5+
+++
Loading
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: "AWS ALB Target Group의 Draining 이 너무 길다면"
3+
author: elegantcoder
4+
date: 2020-05-11T23:43:14
5+
publishDate: 2020-05-11T23:43:14
6+
summary: "최근 ECS를 도입하면서 Rolling Deploy 를 적용했다. 이전에는 EC2인스턴스마다 방문하면서 배포를 했다면 이제는 새로운 Fargate기반 태스크가 생성되면서 기존 태스크는 없애는 방식으로 배포된다. 테스트를 진행하다보니 ALB Target Group에 등록된 아이템이 Draining에 걸리는 시간이 긴 것이 눈에 들어왔다. 기본값으로 이 값은 300초가 주어지기 때문에 트래픽이 많지 않거나 커넥션을 오래 유지할 필요가 없다면 이 시간만큼 Fargate인스턴스를 더 사용하는 […]
7+
"
8+
url: "/posts/alb-target-group의-draining-이-너무-길다면"
9+
titleImage: "undefined"
10+
draft: false
11+
lastmod: 2020-06-30T22:49:06
12+
isCJKLanguage: true
13+
categories:
14+
- aws
15+
- dev
16+
tags:
17+
- aws
18+
- TIL
19+
- outdated
20+
params:
21+
images:
22+
- "undefined"
23+
---
24+
최근 ECS를 도입하면서 Rolling Deploy 를 적용했다. 이전에는 EC2인스턴스마다 방문하면서 배포를 했다면 이제는 새로운 Fargate기반 태스크가 생성되면서 기존 태스크는 없애는 방식으로 배포된다.
25+
26+
테스트를 진행하다보니 ALB Target Group에 등록된 아이템이 Draining에 걸리는 시간이 긴 것이 눈에 들어왔다. 기본값으로 이 값은 300초가 주어지기 때문에 트래픽이 많지 않거나 커넥션을 오래 유지할 필요가 없다면 이 시간만큼 Fargate인스턴스를 더 사용하는 셈이다.
27+
28+
타겟그룹의 Draining에 걸리는 시간은 “Deregistration delay”항목에서 수정할 수 있다.
29+
30+
<figure><img src="Pasted_Image_2020_05_11_11_34_PM-1-2048x1137-2-1024x569.png" alt=""></figure>
31+
32+
> 참고: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-target-groups.html#deregistration-delay
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"id": "alb-target-group%ec%9d%98-draining-%ec%9d%b4-%eb%84%88%eb%ac%b4-%ea%b8%b8%eb%8b%a4%eb%a9%b4",
3+
"title": "AWS ALB Target Group의 Draining 이 너무 길다면",
4+
"status": "published",
5+
"authors": [
6+
"elegantcoder"
7+
],
8+
"excerpt": "최근 ECS를 도입하면서 Rolling Deploy 를 적용했다. 이전에는 EC2인스턴스마다 방문하면서 배포를 했다면 이제는 새로운 Fargate기반 태스크가 생성되면서 기존 태스크는 없애는 방식으로 배포된다. 테스트를 진행하다보니 ALB Target Group에 등록된 아이템이 Draining에 걸리는 시간이 긴 것이 눈에 들어왔다. 기본값으로 이 값은 300초가 주어지기 때문에 트래픽이 많지 않거나 커넥션을 오래 유지할 필요가 없다면 이 시간만큼 Fargate인스턴스를 더 사용하는 [&hellip;]\n",
9+
"categories": [
10+
"aws",
11+
"dev"
12+
],
13+
"tags": [
14+
"aws",
15+
"TIL"
16+
],
17+
"publishedDate": "2020-05-11T23:43:14",
18+
"updatedAt": "2020-06-30T22:49:06",
19+
"wordpressId": 697
20+
}
38.8 KB
Loading
67.9 KB
Loading

0 commit comments

Comments
 (0)