blob: 1db08088c1ae072fd070facadcd0448f7421fe78 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package samza.examples.cookbook;
import java.io.Serializable;
import org.apache.samza.application.StreamApplication;
import org.apache.samza.application.descriptors.StreamApplicationDescriptor;
import org.apache.samza.operators.KV;
import org.apache.samza.operators.MessageStream;
import org.apache.samza.operators.OutputStream;
import org.apache.samza.operators.windows.Windows;
import org.apache.samza.serializers.JsonSerdeV2;
import org.apache.samza.serializers.KVSerde;
import org.apache.samza.serializers.Serde;
import org.apache.samza.serializers.StringSerde;
import org.apache.samza.system.kafka.descriptors.KafkaInputDescriptor;
import org.apache.samza.system.kafka.descriptors.KafkaOutputDescriptor;
import org.apache.samza.system.kafka.descriptors.KafkaSystemDescriptor;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import samza.examples.cookbook.data.PageView;
import samza.examples.cookbook.data.UserPageViews;
import java.time.Duration;
import java.util.List;
import java.util.Map;
/**
* In this example, we group page views by userId into sessions, and compute the number of page views for each user
* session. A session is considered closed when there is no user activity for a 10 second duration.
*
* <p>Concepts covered: Using session windows to group data in a stream, Re-partitioning a stream.
*
* To run the below example:
*
* <ol>
* <li>
* Ensure that the topic "pageview-session-input" is created <br/>
* ./deploy/kafka/bin/kafka-topics.sh --zookeeper localhost:2181 --create --topic pageview-session-input --partitions 2 --replication-factor 1
* </li>
* <li>
* Run the application using the run-app.sh script <br/>
* ./deploy/samza/bin/run-app.sh --config-factory=org.apache.samza.config.factories.PropertiesConfigFactory --config-path=file://$PWD/deploy/samza/config/session-window-example.properties
* </li>
* <li>
* Produce some messages to the "pageview-session-input" topic <br/>
* ./deploy/kafka/bin/kafka-console-producer.sh --topic pageview-session-input --broker-list localhost:9092 <br/>
* {"userId": "user1", "country": "india", "pageId":"google.com/home"} <br/>
* {"userId": "user1", "country": "india", "pageId":"google.com/search"} <br/>
* {"userId": "user2", "country": "china", "pageId":"yahoo.com/home"} <br/>
* {"userId": "user2", "country": "china", "pageId":"yahoo.com/sports"} <br/>
* {"userId": "user1", "country": "india", "pageId":"google.com/news"} <br/>
* {"userId": "user2", "country": "china", "pageId":"yahoo.com/fashion"}
* </li>
* <li>
* Consume messages from the "pageview-session-output" topic (e.g. bin/kafka-console-consumer.sh)
* ./deploy/kafka/bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic pageview-session-output --property print.key=true
* </li>
* </ol>
*
*/
public class SessionWindowExample implements StreamApplication, Serializable {
private static final String KAFKA_SYSTEM_NAME = "kafka";
private static final List<String> KAFKA_CONSUMER_ZK_CONNECT = ImmutableList.of("localhost:2181");
private static final List<String> KAFKA_PRODUCER_BOOTSTRAP_SERVERS = ImmutableList.of("localhost:9092");
private static final Map<String, String> KAFKA_DEFAULT_STREAM_CONFIGS = ImmutableMap.of("replication.factor", "1");
private static final String INPUT_STREAM_ID = "pageview-session-input";
private static final String OUTPUT_STREAM_ID = "pageview-session-output";
@Override
public void describe(StreamApplicationDescriptor appDescriptor) {
Serde<String> stringSerde = new StringSerde();
KVSerde<String, PageView> pageViewKVSerde = KVSerde.of(stringSerde, new JsonSerdeV2<>(PageView.class));
KVSerde<String, UserPageViews> userPageViewSerde = KVSerde.of(stringSerde, new JsonSerdeV2<>(UserPageViews.class));
KafkaSystemDescriptor kafkaSystemDescriptor = new KafkaSystemDescriptor(KAFKA_SYSTEM_NAME)
.withConsumerZkConnect(KAFKA_CONSUMER_ZK_CONNECT)
.withProducerBootstrapServers(KAFKA_PRODUCER_BOOTSTRAP_SERVERS)
.withDefaultStreamConfigs(KAFKA_DEFAULT_STREAM_CONFIGS);
KafkaInputDescriptor<KV<String, PageView>> pageViewInputDescriptor =
kafkaSystemDescriptor.getInputDescriptor(INPUT_STREAM_ID, pageViewKVSerde);
KafkaOutputDescriptor<KV<String, UserPageViews>> userPageViewsOutputDescriptor =
kafkaSystemDescriptor.getOutputDescriptor(OUTPUT_STREAM_ID, userPageViewSerde);
appDescriptor.withDefaultSystem(kafkaSystemDescriptor);
MessageStream<KV<String, PageView>> pageViews = appDescriptor.getInputStream(pageViewInputDescriptor);
OutputStream<KV<String, UserPageViews>> userPageViews = appDescriptor.getOutputStream(userPageViewsOutputDescriptor);
pageViews
.partitionBy(kv -> kv.value.userId, kv -> kv.value, pageViewKVSerde, "pageview")
.window(Windows.keyedSessionWindow(kv -> kv.value.userId,
Duration.ofSeconds(10), stringSerde, pageViewKVSerde), "usersession")
.map(windowPane -> {
String userId = windowPane.getKey().getKey();
int views = windowPane.getMessage().size();
return KV.of(userId, new UserPageViews(userId, views));
})
.sendTo(userPageViews);
}
}