Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- yum
- Eclipse
- MySQL
- RabbitMQ
- 부모창
- docker
- jQuery
- 한글 깨짐
- i18n
- Postfix
- mariadb
- smarty
- 천단위
- Python
- random
- 문자열자르기
- JavaScript
- Selectbox
- install
- 확장자
- replace
- centos
- Oracle
- 일괄변경
- SVN
- TextBox
- TPL
- ubuntu
- php
Archives
- Today
- Total
wilson's story
RabbitMQ 초과 시간 설정 본문
반응형
RabbitMQ 에서 consumer의 기본 제한 시간은 30분(1800000ms)이다
이 시간을 변경하려면
/etc/rabbitmq/ 경로에서
rabbitmq.conf 파일을 새로 생성 하고 내용은 아래와 같이 작성
# 1시간으로 설정 rabbitmq.conf
consumer_timeout = 3600000
시간값은 ms(미리세컨드) 단위로 설정해준다
적용후 재기동 해주면 된다
systemctl restart rabbitmq
참고: https://www.rabbitmq.com/consumers.html#acknowledgement-timeout
반응형