Skip to content
Published on

테크 미팅 필수 영어 표현 완벽 가이드 — 스탠드업부터 장애 대응까지

Authors
  • Name
    Twitter

들어가며

글로벌 개발팀에서 일하거나 외국계 기업에 다니는 개발자라면, 매일 다양한 종류의 영어 미팅에 참여해야 합니다. 데일리 스탠드업에서 간단히 업데이트를 공유하는 것부터, 코드 리뷰에서 기술적인 피드백을 주고받는 것, 스프린트 회고에서 개선점을 논의하는 것, 그리고 새벽에 갑자기 발생한 장애에 대응하는 것까지 -- 상황마다 필요한 영어 표현이 다릅니다.

이 가이드에서는 개발자가 가장 자주 마주치는 6가지 미팅 유형별로 핵심 영어 표현을 정리하고, 실전 대화문과 자주 틀리는 표현 비교표, 그리고 바로 쓸 수 있는 체크리스트를 제공합니다.


1. 데일리 스탠드업 (Daily Standup)

스탠드업 미팅은 보통 15분 이내로 진행되며, 세 가지 질문에 답하는 구조입니다.

기본 프레임워크

1. What did you do yesterday? (어제 한 일)
2. What will you do today? (오늘 할 일)
3. Any blockers? (막히는 것)

상황별 핵심 표현

상황영어 표현한국어 의미
작업 완료I finished implementing the auth middleware.인증 미들웨어 구현을 완료했습니다.
진행 중I'm about 80% done with the API refactoring.API 리팩토링을 약 80% 진행했습니다.
PR 올림I opened a PR for the caching layer optimization.캐싱 레이어 최적화 PR을 올렸습니다.
리뷰 요청Could someone take a look at PR #342?PR #342 좀 봐주실 수 있나요?
블로커 있음I'm blocked on the deployment because the CI pipeline is failing.CI 파이프라인이 실패해서 배포가 막혀 있습니다.
블로커 없음No blockers at the moment.현재 블로커 없습니다.
도움 요청I might need some help from the infra team on this.이 건에 대해 인프라 팀의 도움이 필요할 수 있습니다.

실전 대화문: 스탠드업 업데이트

[You]
"Yesterday, I wrapped up the database migration script and opened a PR
for it — PR #215. I also spent some time investigating the intermittent
timeout issue on the /users endpoint.

Today, I'm going to start working on the rate limiting feature. I'll
also need to address the review comments on PR #215.

One blocker — I need access to the staging Redis cluster to test the
rate limiter. Could someone from the infra team help me with that?"

[Team Lead]
"Thanks for the update. I'll ping the infra team on Slack right after
standup to get you that access."

유용한 연결 표현

"Carrying over from yesterday..." (어제에 이어서...)
"Just a quick heads-up..." (참고로 알려드리면...)
"I'll need to sync with [name] on this." ([이름]과 이 건에 대해 싱크해야 합니다.)
"I'll keep the team posted." (팀에 계속 공유하겠습니다.)
"That's it from my side." (제 쪽에서는 이상입니다.)

2. 코드 리뷰 (Code Review)

코드 리뷰에서는 기술적으로 정확하면서도 건설적인 피드백을 영어로 전달해야 합니다. PR 코멘트에서 자주 사용되는 약어와 표현을 숙지하면 커뮤니케이션 효율이 크게 올라갑니다.

PR 코멘트 필수 약어

약어풀이의미사용 예
LGTMLooks Good To Me코드가 좋아 보임 (승인)"LGTM, ship it!"
SGTMSounds Good To Me좋은 것 같음"SGTM, let's go with this approach."
PTALPlease Take A Look리뷰 요청"PTAL when you get a chance."
WIPWork In Progress작업 중"WIP — not ready for review yet."
NITNitpick사소한 지적"Nit: variable naming could be clearer."
IMO / IMHOIn My (Humble) Opinion내 의견으로는"IMO, we should use a map here."
AFAIKAs Far As I Know내가 아는 한"AFAIK, this API is deprecated."
TL;DRToo Long; Didn't Read요약하자면"TL;DR: We need to refactor the auth module."

리뷰어로서 피드백 주기

[승인할 때]
"LGTM! Clean implementation. Approved."
(코드가 좋습니다! 깔끔한 구현이네요. 승인합니다.)

[사소한 수정 제안]
"Nit: Could we rename this variable to something more descriptive,
like 'userSessionTimeout' instead of 'timeout'?"
(사소한 건데, 이 변수명을 'timeout' 대신 'userSessionTimeout'처럼
좀 더 설명적으로 바꿀 수 있을까요?)

[변경 요청]
"I'd suggest extracting this logic into a separate utility function.
It's used in three different places, so having a single source of
truth would reduce duplication."
(이 로직을 별도 유틸리티 함수로 추출하는 것을 제안합니다.  곳에서
사용되고 있어서 하나로 통합하면 중복이 줄어듭니다.)

[질문하기]
"Could you walk me through the reasoning behind using a recursive
approach here instead of iteration?"
(여기서 반복문 대신 재귀를 선택한 이유를 설명해 주실 수 있나요?)

[보안/성능 이슈 지적]
"This could be a potential SQL injection vulnerability. Let's use
parameterized queries instead of string concatenation."
(SQL 인젝션 취약점이 될 수 있습니다. 문자열 연결 대신
파라미터화된 쿼리를 사용합시다.)

PR 작성자로서 응답하기

"Thanks for the catch! Fixed in the latest commit."
(지적 감사합니다! 최신 커밋에서 수정했습니다.)

"Good point. I'll refactor this in a follow-up PR to keep
this one focused."
(좋은 지적입니다.  PR의 범위를 유지하기 위해 후속 PR에서
리팩토링하겠습니다.)

"I intentionally chose this approach because [reason].
What do you think?"
(이 접근법을 [이유] 때문에 의도적으로 선택했습니다. 어떻게 생각하세요?)

"Addressed all comments. PTAL at the updated version."
(모든 코멘트를 반영했습니다. 업데이트된 버전을 확인해 주세요.)

3. 스프린트 플래닝 및 회고 (Sprint Planning and Retrospective)

스프린트 플래닝 표현

상황영어 표현한국어 의미
스토리 포인트 추정I'd estimate this at 5 story points.이건 5 스토리 포인트로 추정합니다.
우선순위 논의Should we prioritize this over the tech debt items?기술 부채 항목보다 이걸 우선해야 할까요?
용량 확인Do we have the bandwidth to take this on this sprint?이번 스프린트에서 이걸 소화할 여유가 되나요?
의존성 언급This is dependent on the backend API being ready.이건 백엔드 API가 준비되어야 합니다.
스코프 조정I think we should descope the analytics dashboard for now.분석 대시보드는 일단 스코프에서 제외하는 게 좋겠습니다.
티켓 분할Can we break this epic into smaller, shippable stories?이 에픽을 배포 가능한 작은 스토리로 나눌 수 있을까요?

스프린트 회고 (Retrospective) 표현

회고는 보통 세 가지 카테고리로 진행됩니다:

What went well? (잘된 점)
What didn't go well? (개선할 점)
What can we improve? (앞으로 어떻게 개선할까?)

실전 대화문: 스프린트 회고

[Facilitator]
"Let's start with what went well this sprint. Anyone want to kick
things off?"

[Developer A]
"I think our deployment process has really improved since we
introduced the automated rollback mechanism. We shipped three
releases this sprint with zero downtime."

[Developer B]
"On the flip side, I felt like we underestimated the complexity
of the payment integration. We ended up carrying over two stories
to the next sprint."

[Developer C]
"I agree. I think we should spend more time during planning to
break down complex stories. Maybe we could do a quick spike
before committing to estimates."

[Facilitator]
"Great suggestion. Let's capture that as an action item. Who wants
to own this?"

[Developer C]
"I can take the lead on proposing a spike process for the team."

[Facilitator]
"Perfect. Let's follow up on this in next sprint's planning session."

회고에서 자주 쓰는 표현

"One thing that worked really well was..." (정말 잘 됐던 건...)
"I noticed we struggled with..." (우리가 힘들어했던 부분은...)
"Going forward, I suggest we..." (앞으로는 ...하면 좋겠습니다.)
"Let's make this an action item." (이걸 액션 아이템으로 잡읍시다.)
"Can we follow up on last sprint's action items?" (지난 스프린트 액션 아이템 후속 확인할 수 있을까요?)
"I'd like to give a shout-out to [name] for..." ([이름]에게 ...에 대해 칭찬하고 싶습니다.)

4. 기술 발표 (Tech Talk / Technical Presentation)

기술 발표에서는 복잡한 개념을 명확하게 전달하는 것이 핵심입니다.

발표 구조별 표현

단계영어 표현한국어 의미
도입Today I'd like to walk you through our new observability stack.오늘 새로운 관측 가능성 스택에 대해 설명드리겠습니다.
배경To give you some context, we were experiencing...배경을 말씀드리면, 저희가 겪고 있던 문제는...
핵심 설명The key takeaway here is...여기서 핵심 포인트는...
데모 전환Let me switch over to the demo to show you this in action.데모로 전환해서 실제로 보여드리겠습니다.
비교Compared to the previous approach, this gives us...이전 접근법과 비교하면, 이것은...
질의응답That's a great question. Let me address that.좋은 질문입니다. 답변드리겠습니다.
마무리To wrap up, the three main things I want you to take away are...마무리하면, 기억해 주셨으면 하는 세 가지는...

실전 대화문: 기술 발표 Q&A

[Presenter]
"...and that's how we reduced our p99 latency from 800ms to under
200ms by implementing connection pooling and query optimization.
I'm happy to take any questions."

[Audience Member 1]
"How did you handle the connection pool sizing? Did you run into
any issues with too many idle connections?"

[Presenter]
"Great question. We initially set the pool size to 50, but found
that was overkill for our traffic patterns. We ended up using a
dynamic sizing approach based on the HikariCP recommendations —
roughly 2x the number of CPU cores plus the number of disk
spindles. That brought us down to about 20 connections per
instance, which actually improved our throughput."

[Audience Member 2]
"Is this approach applicable to our microservices that use
connection-per-request patterns?"

[Presenter]
"That's a good point. For connection-per-request services, you'd
want to look at connection multiplexing instead. I can share some
resources on that after the talk."

발표에서 유용한 전환 표현

"Building on that..." (그것을 바탕으로...)
"To put this in perspective..." (이것을 맥락에 맞게 보면...)
"One thing worth noting is..." (주목할 점 하나는...)
"Let me zoom in on this part." (이 부분을 자세히 보겠습니다.)
"I'll circle back to this point later." (이 포인트는 나중에 다시 다루겠습니다.)
"As a quick aside..." (잠깐 덧붙이자면...)

5. 장애 대응 (Incident Response)

장애 대응 상황에서는 명확하고 간결한 커뮤니케이션이 생명입니다. 모호한 표현은 피하고, 사실 기반으로 상황을 전달해야 합니다.

장애 대응 핵심 역할 및 용어

용어영어 설명한국어 의미
Incident Commander (IC)The person leading the incident response장애 대응 총괄자
On-call engineerThe engineer currently responsible for alerts당직 엔지니어
SEV1 / SEV2Severity level 1 (critical) / 2 (major)심각도 1 (치명적) / 2 (중대)
RCA (Root Cause Analysis)Investigation into the underlying cause근본 원인 분석
PostmortemReview meeting after incident resolution사후 분석
MitigationTemporary fix to reduce impact임시 완화 조치
RollbackReverting to a previous version이전 버전으로 되돌리기
ETAEstimated Time of Arrival (for fix)수정 예상 시간

실전 대화문: 장애 대응 채널

[On-call Engineer - Slack #incident-channel]
"@channel SEV1 incident declared. The checkout service is returning
500 errors for approximately 30% of requests. I'm the Incident
Commander. Setting up a war room call now."

[Backend Engineer]
"I'm looking at the logs. Seeing a spike in connection timeouts
to the payments database starting at 14:32 UTC."

[Incident Commander]
"Thanks. Can you check if there were any recent deployments or
config changes around that time?"

[Backend Engineer]
"Confirmed — there was a config change pushed at 14:30 UTC that
reduced the connection pool size from 20 to 5. That's likely the
root cause."

[Incident Commander]
"Let's roll back that config change immediately. What's the ETA
on the rollback?"

[Backend Engineer]
"Rollback is in progress. ETA 3 minutes."

[Incident Commander]
"Copy that. I'll update the status page. @frontend-team, can you
confirm if you're seeing recovery on your end once the rollback
is complete?"

[3 minutes later]
[Backend Engineer]
"Rollback complete. Error rates are dropping. We're back to
normal levels."

[Incident Commander]
"Confirmed. Incident resolved at 14:50 UTC. Total impact duration:
18 minutes. I'll schedule a postmortem for tomorrow. Everyone
involved, please jot down your timelines."

장애 대응에서 자주 쓰는 표현

"We're seeing elevated error rates on..." (...에서 에러 비율 상승이 보이고 있습니다.)
"I'm investigating the issue now." (현재 이슈를 조사 중입니다.)
"I don't know yet, but I'm looking into it." (아직 모르지만 확인 중입니다.)
"Let's not speculate — let's look at the data." (추측하지 말고 데이터를 봅시다.)
"Can we get eyes on this?" (누가 이거 좀 확인해 줄 수 있나요?)
"What's the blast radius?" (영향 범위가 어떻게 되나요?)
"Is this customer-facing?" (고객에게 영향이 가는 건가요?)
"Let's page the database on-call." (데이터베이스 당직 엔지니어를 호출합시다.)

6. 원격 미팅 에티켓 영어

원격 근무 환경에서는 화상 미팅에서의 에티켓과 관련 표현도 중요합니다.

미팅 시작과 기술 문제

"Can everyone see my screen?"
(제 화면 보이시나요?)

"You're on mute."
(음소거 상태입니다.)

"Sorry, I was on mute. Let me repeat that."
(죄송합니다, 음소거였네요. 다시 말씀드리겠습니다.)

"I'm having some connectivity issues. Let me turn off my video."
(연결 상태가 좋지 않아서 비디오를 끄겠습니다.)

"Can you hear me okay? My audio seems to be cutting out."
(제 소리 잘 들리시나요? 음성이 끊기는 것 같습니다.)

"Let me drop off and rejoin — I'm having technical difficulties."
(기술적 문제가 있어서 나갔다 다시 들어오겠습니다.)

대화 흐름 관리

"Sorry, go ahead — I didn't mean to interrupt."
(죄송합니다, 말씀하세요 — 끊을 의도는 아니었습니다.)

"I'd like to add something to what [name] just said."
([이름]이 방금 말한 것에 추가하고 싶은 게 있습니다.)

"Could you elaborate on that a bit more?"
(그 부분을 좀 더 설명해 주실 수 있나요?)

"Let me share my screen to show you what I mean."
(제가 의미하는 바를 보여드리기 위해 화면을 공유하겠습니다.)

"I'll drop the link in the chat."
(링크를 채팅에 올려놓겠습니다.)

"Does anyone have any questions before we move on?"
(넘어가기 전에 질문 있으신 분?)

미팅 마무리

"Let me quickly recap the action items."
(액션 아이템을 빠르게 정리하겠습니다.)

"I'll send out the meeting notes after this."
(미팅 노트를 이후에 보내드리겠습니다.)

"Same time next week works for everyone?"
(다음 주 같은 시간 괜찮으세요?)

"Thanks everyone. I'll give you five minutes back."
(감사합니다. 5분 일찍 끝내겠습니다.)

7. 자주 틀리는 표현 비교표

한국어 사고방식에서 영어로 전환할 때 흔히 발생하는 실수를 정리했습니다.

흔히 틀리는 표현올바른 표현설명
"I will explain about the architecture.""I'll walk you through the architecture."explain은 about을 붙이지 않으며, walk through가 더 자연스럽습니다.
"Please check my code.""Could you review my PR?"check보다 review가 코드 리뷰 맥락에서 정확하며, 정중한 요청 형태를 씁니다.
"I have a question about this code.""I have a concern about this approach."코드 리뷰에서 concern이 더 전문적인 어감입니다.
"This code has a problem.""I noticed a potential issue here.""문제가 있다"고 직접 말하기보다 부드럽게 표현합니다.
"I think this is wrong.""I'm not sure this handles the edge case where..."틀렸다고 단정하기보다 구체적인 시나리오로 지적합니다.
"I don't understand.""Could you clarify what you mean by...?"모른다고 하기보다 구체적으로 무엇을 명확히 해달라고 요청합니다.
"We should do it like this.""What if we tried this approach instead?"지시형보다 제안형이 협업 환경에서 더 효과적입니다.
"It's finished.""It's been shipped / deployed / merged."개발 맥락에서는 구체적인 완료 상태를 명시합니다.
"I'm sorry for the delay.""Thanks for your patience on this."사과보다 감사 표현이 영어권에서 더 긍정적으로 받아들여집니다.
"The server is down.""We're experiencing a service disruption."장애 상황에서 공식적인 표현을 사용합니다.

8. 이메일 및 Slack 메시지 템플릿

PR 리뷰 요청 Slack 메시지

Hey team! I just opened PR #427 for the user notification
refactoring. It's a medium-sized change (~300 lines) that
introduces a new event-driven architecture for notifications.

Key changes:
- Replaced polling mechanism with WebSocket-based events
- Added retry logic with exponential backoff
- Updated unit tests for the notification service

Would appreciate a review when you get a chance. PTAL!
No rush — targeting merge by end of sprint.

장애 보고 이메일 템플릿

Subject: [Postmortem] SEV1 - Checkout Service Outage (2026-03-08)

Hi team,

Summary:
On March 8, 2026, we experienced an 18-minute outage affecting
the checkout service. Approximately 30% of checkout requests
returned 500 errors between 14:32 and 14:50 UTC.

Root Cause:
A configuration change reduced the database connection pool
size from 20 to 5 connections, causing connection exhaustion
under normal traffic load.

Impact:
- Estimated 1,200 failed checkout attempts
- Revenue impact: ~$45,000

Timeline:
- 14:30 UTC: Config change deployed
- 14:32 UTC: Alerts fired for elevated 5xx rates
- 14:35 UTC: Incident declared, war room opened
- 14:42 UTC: Root cause identified
- 14:47 UTC: Rollback initiated
- 14:50 UTC: Service fully recovered

Action Items:
1. Add validation checks to config deployment pipeline
2. Implement connection pool size alerts
3. Update runbook for database connection issues

Postmortem meeting: March 10, 2026, 2:00 PM UTC

Best regards,
[Your Name]

9. 실전 체크리스트

스탠드업 미팅 체크리스트

  • 어제 한 일을 구체적인 작업 단위로 준비 (completed, opened PR, reviewed 등)
  • 오늘 할 일을 우선순위 기준으로 1-2개 준비
  • 블로커가 있다면 누구의 도움이 필요한지 명시
  • 2분 이내로 간결하게 업데이트
  • 상세 논의가 필요한 건 "Let's take this offline"으로 미루기

코드 리뷰 체크리스트

  • PR 설명에 변경 사항의 목적(why)과 방법(how)을 기술
  • Nit와 Blocking 코멘트를 구분해서 작성
  • 부정적 피드백은 질문형이나 제안형으로 작성
  • "I suggest..." / "What if we..." / "Have you considered..." 패턴 활용
  • 좋은 코드에는 긍정적 피드백도 남기기 ("Nice refactoring!", "Clean approach!")

스프린트 회고 체크리스트

  • 잘된 점(What went well) 최소 1개 준비
  • 개선할 점(What could be improved) 구체적 사례와 함께 준비
  • 액션 아이템은 담당자와 기한 명시
  • 동료 칭찬(Shout-out) 1개 이상 준비
  • 이전 스프린트 액션 아이템 후속 확인

기술 발표 체크리스트

  • 도입부에서 발표의 목적(why this matters)을 1-2문장으로 설명
  • 기술 용어는 처음 사용 시 간단히 정의
  • 데모가 있다면 "Let me switch to the demo" 전환 멘트 준비
  • Q&A에서 모르는 질문은 "I'll follow up on that" 사용
  • 핵심 포인트 3개 이내로 마무리 요약

장애 대응 체크리스트

  • 장애 선언 시 심각도, 영향 범위, IC를 명확히 공지
  • 모르는 것은 "I don't know yet, but I'm investigating"으로 솔직하게
  • 추측하지 말고 데이터 기반으로 소통 ("The logs show..." / "The metrics indicate...")
  • 15-20분 간격으로 상태 업데이트 제공
  • 해결 후 타임라인과 액션 아이템을 포함한 포스트모텀 작성

원격 미팅 체크리스트

  • 미팅 5분 전 오디오, 비디오, 인터넷 연결 테스트
  • 발언하지 않을 때 음소거 유지
  • 끼어들기(interrupt) 대신 "raise hand" 기능이나 채팅 활용
  • 화면 공유 시 불필요한 창 정리
  • 미팅 종료 시 액션 아이템 요약

마무리

테크 미팅에서의 영어 커뮤니케이션은 단순히 영어를 잘하는 것이 아니라, 상황에 맞는 표현을 사용하는 것입니다. 스탠드업에서는 간결하게, 코드 리뷰에서는 건설적으로, 장애 대응에서는 명확하게 소통하는 것이 핵심입니다.

이 가이드의 표현들을 처음부터 모두 외우려 하지 말고, 당장 내일 미팅에서 한 가지 표현부터 사용해 보세요. 매일 하나씩 새로운 표현을 시도하면, 한 달 후에는 자연스럽게 영어 미팅을 리드할 수 있을 것입니다.


참고 자료