-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set key for message when using function publish (#4005)
* Allow to configure TypedMessageBuilder through a Map conf object * Use constants for message confs * Reverted previous change * Use Long instead of Number * Set key for message when using function publish * fix unit test * fix python test * improving impl * improving implementation * add tests and examples * fix bug * fix bug * fixing comments * fix example * addressing comments * fix function
- Loading branch information
Showing
11 changed files
with
743 additions
and
29 deletions.
There are no files selected for viewing
385 changes: 385 additions & 0 deletions
385
...ar-broker/src/test/java/org/apache/pulsar/functions/worker/PulsarFunctionPublishTest.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
...rc/main/java/org/apache/pulsar/functions/api/examples/PublishFunctionWithMessageConf.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/** | ||
* 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 org.apache.pulsar.functions.api.examples; | ||
|
||
import org.apache.pulsar.client.api.TypedMessageBuilder; | ||
import org.apache.pulsar.functions.api.Context; | ||
import org.apache.pulsar.functions.api.Function; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
/** | ||
* Example function that uses the built in publish function in the context | ||
* to publish to a desired topic based on config and setting various message configurations to be passed along. | ||
* | ||
*/ | ||
public class PublishFunctionWithMessageConf implements Function<String, Void> { | ||
@Override | ||
public Void process(String input, Context context) { | ||
String publishTopic = (String) context.getUserConfigValueOrDefault("publish-topic", "publishtopic"); | ||
String output = String.format("%s!", input); | ||
|
||
Map<String, String> properties = new HashMap<>(); | ||
properties.put("input_topic", context.getCurrentRecord().getTopicName().get()); | ||
properties.putAll(context.getCurrentRecord().getProperties()); | ||
|
||
Map<String, Object> messageConf = new HashMap<>(); | ||
messageConf.put(TypedMessageBuilder.CONF_PROPERTIES, properties); | ||
if (context.getCurrentRecord().getKey().isPresent()) { | ||
messageConf.put(TypedMessageBuilder.CONF_KEY, context.getCurrentRecord().getKey().get()); | ||
} | ||
messageConf.put(TypedMessageBuilder.CONF_EVENT_TIME, System.currentTimeMillis()); | ||
context.publish(publishTopic, output, null, messageConf); | ||
return null; | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
pulsar-functions/python-examples/publish_function_with_message_conf.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/usr/bin/env python | ||
# | ||
# 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. | ||
# | ||
|
||
import time | ||
from pulsar import Function | ||
|
||
# Example function that uses the built in publish function in the context | ||
# to publish to a desired topic based on config | ||
class PublishFunctionWithMessageConf(Function): | ||
def __init__(self): | ||
pass | ||
|
||
def process(self, input, context): | ||
publish_topic = "publishtopic" | ||
if "publish-topic" in context.get_user_config_map(): | ||
publish_topic = context.get_user_config_value("publish-topic") | ||
context.publish(publish_topic, input + '!', | ||
message_conf={"properties": {k: v for d in [{"input_topic" : context.get_current_message_topic_name()}, context.get_message_properties()] for k, v in d.items()}, | ||
"partition_key": context.get_partition_key(), | ||
"event_timestamp": int(time.time())}) | ||
return |
Oops, something went wrong.