175.7. 사전 정의된 표현식
Camel의 버전 2.13.0 부터 Cryostat 구성 요소는 Cryostat Expressions라는 사전 정의된 표현식 팩토리 클래스와 함께 제공됩니다.
Camel 컨텍스트가 아직 시작되지 않은 경우에만 경로에 영향을 주는 지연기를 생성하려면 Cryostat Expressions.delayIfContextNotStarted(long delay)
팩토리 방법을 사용합니다. 이 팩토리 메서드에서 생성한 표현식은 Camel 컨텍스트가 started
와 다른 경우에만 지정된 지연 값을 반환합니다. 이 표현식은 클러스터 내에서 Singleton(마스터) 경로를 유지하기 위해 Cryostat 구성 요소를 사용하려는 경우 특히 유용합니다. Camel Context가 아직 시작되지 않은 경우 Control Bus start
명령은 싱글톤 경로를 초기화하지 않습니다. 따라서 Camel Context 시작 후 초기화되었는지 확인하려면 마스터 경로의 시작을 지연해야 합니다. 이러한 시나리오는 클러스터 초기화 중에만 발생할 수 있으므로 슬레이브 노드의 시작을 새 마스터가 되는 것을 지연하지 않기 때문에 조건부 지연 표현이 필요합니다.
아래 스니펫에서는 Cryostat 구성 요소와 함께 조건부 지연을 사용하여 클러스터에서 마스터 노드의 초기 시작을 지연하는 방법을 보여줍니다.
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);