- 유레카 피어링 주석 처리

- 이벤트 서비스 컨피그 서버 제거
This commit is contained in:
assu10
2020-11-01 23:22:08 +09:00
parent 5e38188512
commit 0e73c70005
3 changed files with 27 additions and 22 deletions

View File

@@ -28,7 +28,8 @@ eureka:
register-with-eureka: false # 유레카 서비스에 (자신을) 등록하지 않는다. (클러스터 모드가 아니므로) -> false 로 해도 피어링이 된다.
fetch-registry: false # 레지스트리 정보를 로컬에 캐싱하지 않는다. (클러스터 모드가 아니므로)
serviceUrl:
defaultZone: http://peer2:8763/eureka/ #http://peer1:8762/eureka/
defaultZone: http://peer1:8762/eureka/ #http://peer1:8762/eureka/
# defaultZone: http://peer2:8763/eureka/ #http://peer1:8762/eureka/
#server:
#wait-time-in-ms-when-sync-empty: 5 # 서버가 요청을 받기 전 대기할 초기 시간 (5ms, 운영 환경에선 삭제 필요)

View File

@@ -1,3 +1,19 @@
spring:
application:
name: event-service # 서비스 ID (컨피그 클라이언트가 어떤 서비스를 조회하는지 매핑)
profiles:
active: default # 서비스가 실행할 기본 프로파일
cloud:
stream:
bindings:
inboundMemberChanges: # inboundMemberChanges 은 채널명, EventServiceApplication 의 Sink.INPUT 채널에 매핑되고, input 채널을 mgChangeTopic 큐에 매핑함
destination: mbChangeTopic # 메시지를 넣은 메시지 큐(토픽) 이름
content-type: application/json
group: eventGroup # 메시지를 소비할 소비자 그룹의 이름
kafka: # stream.kafka 는 해당 서비스를 카프카에 바인딩
binder:
zkNodes: localhost # zkNodes, brokers 는 스트림에게 카프카와 주키퍼의 네트워크 위치 전달
brokers: localhost
server:
port: 8070
your.name: "EVENT DEFAULT."
@@ -41,19 +57,7 @@ security:
user-info-uri: http://localhost:8901/auth/user # OAuth2 콜백 URL
signing:
key: assusingkey
# 스프링 클라우드 스트림 설정
spring:
cloud:
stream:
bindings:
inboundMemberChanges: # inboundMemberChanges 은 채널명, EventServiceApplication 의 Sink.INPUT 채널에 매핑되고, input 채널을 mgChangeTopic 큐에 매핑함
destination: mbChangeTopic # 메시지를 넣은 메시지 큐(토픽) 이름
content-type: application/json
group: eventGroup # 메시지를 소비할 소비자 그룹의 이름
kafka: # stream.kafka 는 해당 서비스를 카프카에 바인딩
binder:
zkNodes: localhost # zkNodes, brokers 는 스트림에게 카프카와 주키퍼의 네트워크 위치 전달
brokers: localhost
#spring:
# cloud:
# stream:

View File

@@ -1,8 +1,8 @@
spring:
application:
name: event-service # 서비스 ID (컨피그 클라이언트가 어떤 서비스를 조회하는지 매핑)
profiles:
active: default # 서비스가 실행할 기본 프로파일
cloud:
config:
uri: http://localhost:8889 # 컨피그 서버 위치
#spring:
# application:
# name: event-service # 서비스 ID (컨피그 클라이언트가 어떤 서비스를 조회하는지 매핑)
# profiles:
# active: default # 서비스가 실행할 기본 프로파일
# cloud:
# config:
# uri: http://localhost:8889 # 컨피그 서버 위치