175.6. 사전 정의된 표현식
Camel 버전 2.13.0 부터 JGroups 구성 요소는 JGroupsExpressions라는 사전 정의된 표현식 팩토리 클래스와 함께 제공됩니다.
Camel 컨텍스트가 아직 시작하지 않은 경우에만 경로에 영향을 미치는 delayer를 생성하려면 JGroupsExpressions.delayIfContextNotStarted(긴 지연)
메서드를 사용합니다. 이 팩토리 메서드에서 생성한 표현식은 Camel 컨텍스트가 시작
된 상태와 다른 경우에만 주어진 지연 값을 반환합니다. 이 표현식은 클러스터 내에서 Singleton(마스터) 경로를 유지하기 위해 JGroups 구성 요소를 사용하려는 경우에 특히 유용합니다. Camel Context가 아직 시작되지 않은 경우 Control Bus start
명령은 Singleton 경로를 초기화하지 않습니다. 따라서 Camel Context 시작 후 초기화되었는지 확인하려면 마스터 경로 시작을 지연해야 합니다. 이러한 시나리오는 클러스터를 초기화하는 동안만 발생할 수 있으므로 슬레이브 노드가 새 마스터가 되는 것을 지연시킬 필요가 없으므로 조건부 지연 표현식이 필요합니다.
아래 코드 조각은 JGroups 구성 요소에서 조건부 지연을 사용하여 클러스터에서 마스터 노드의 초기 시작을 지연하는 방법을 보여줍니다.
import static java.util.concurrent.TimeUnit.SECONDS; import static org.apache.camel.component.jgroups.JGroupsExpressions.delayIfContextNotStarted; import static org.apache.camel.component.jgroups.JGroupsFilters.dropNonCoordinatorViews; ... from("jgroups:clusterName?enableViewMessages=true"). filter(dropNonCoordinatorViews()). threads().delay(delayIfContextNotStarted(SECONDS.toMillis(5))). // run in separated and delayed thread. Delay only if the context hasn't been started already. to("controlbus:route?routeId=masterRoute&action=start&async=true"); from("timer://master?repeatCount=1").routeId("masterRoute").autoStartup(false).to(masterMockUri);