forked from hazelcast/hazelcast-jet-code-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JmsQueueSample.java
114 lines (99 loc) · 4.02 KB
/
JmsQueueSample.java
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
* Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import com.hazelcast.jet.Jet;
import com.hazelcast.jet.JetInstance;
import com.hazelcast.jet.Job;
import com.hazelcast.jet.core.JobStatus;
import com.hazelcast.jet.pipeline.Pipeline;
import com.hazelcast.jet.pipeline.Sinks;
import com.hazelcast.jet.pipeline.Sources;
import org.apache.activemq.ActiveMQConnectionFactory;
import javax.jms.TextMessage;
import java.util.concurrent.CancellationException;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import static com.hazelcast.jet.impl.util.Util.uncheckRun;
import static java.util.concurrent.TimeUnit.SECONDS;
/**
* A pipeline which streams messages from a JMS queue, filters them according
* to the priority and writes a new message with modified properties to another
* JMS queue.
*/
public class JmsQueueSample {
private static final String INPUT_QUEUE = "inputQueue";
private static final String OUTPUT_QUEUE = "outputQueue";
private ScheduledExecutorService scheduledExecutorService;
private ActiveMQBroker activeMQBroker;
private JmsMessageProducer producer;
private JetInstance jet;
private static Pipeline buildPipeline() {
Pipeline p = Pipeline.create();
p.drawFrom(Sources.jmsQueue(() -> new ActiveMQConnectionFactory(ActiveMQBroker.BROKER_URL), INPUT_QUEUE))
.withoutTimestamps()
.filter(message -> message.getJMSPriority() > 3)
.map(message -> (TextMessage) message)
// print the message text to the log
.peek(TextMessage::getText)
.drainTo(Sinks.<TextMessage>jmsQueueBuilder(() -> new ActiveMQConnectionFactory(ActiveMQBroker.BROKER_URL))
.destinationName(OUTPUT_QUEUE)
.messageFn((session, message) -> {
// create new text message with the same text and few additional properties
TextMessage textMessage = session.createTextMessage(message.getText());
textMessage.setBooleanProperty("isActive", true);
textMessage.setJMSPriority(8);
return textMessage;
}
)
.build());
return p;
}
public static void main(String[] args) throws Exception {
System.setProperty("hazelcast.logging.type", "log4j");
new JmsQueueSample().go();
}
private void go() throws Exception {
Job job = null;
try {
setup();
job = jet.newJob(buildPipeline());
scheduledExecutorService.schedule(job::cancel, 10, SECONDS);
job.join();
} catch (CancellationException e) {
waitForComplete(job);
} finally {
cleanup();
}
}
private void setup() throws Exception {
scheduledExecutorService = Executors.newSingleThreadScheduledExecutor();
activeMQBroker = new ActiveMQBroker();
activeMQBroker.start();
producer = new JmsMessageProducer(INPUT_QUEUE, JmsMessageProducer.DestinationType.QUEUE);
producer.start();
jet = Jet.newJetInstance();
}
private void cleanup() {
scheduledExecutorService.shutdown();
producer.stop();
activeMQBroker.stop();
Jet.shutdownAll();
}
private static void waitForComplete(Job job) {
while (job.getStatus() != JobStatus.COMPLETED) {
uncheckRun(() -> SECONDS.sleep(1));
}
}
}