-
Notifications
You must be signed in to change notification settings - Fork 98
samples: publish with gRPC compression #1131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
bd1dbb6
samples: publish with gRPC compression
anguillanneuf 077cda7
lint
anguillanneuf 01edce0
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] f60f42e
Merge branch 'samples-publisher-compression' of https://github.com/go…
gcf-owl-bot[bot] 3ae3ac1
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] d2c9173
Merge branch 'samples-publisher-compression' of https://github.com/go…
gcf-owl-bot[bot] 5b26324
add license header
anguillanneuf 6517386
Merge branch 'main' into samples-publisher-compression
anguillanneuf fc6b8e4
remove explicit versioning in pom
anguillanneuf 6ac5427
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
75 changes: 75 additions & 0 deletions
75
samples/snippets/src/main/java/pubsub/PublishWithGrpcCompressionExample.java
This file contains hidden or 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,75 @@ | ||
| /* | ||
| * Copyright 2022 Google LLC | ||
| * | ||
| * 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. | ||
| */ | ||
|
|
||
| package pubsub; | ||
|
|
||
| import com.google.api.core.ApiFuture; | ||
| import com.google.cloud.pubsub.v1.Publisher; | ||
| import com.google.protobuf.ByteString; | ||
| import com.google.pubsub.v1.PubsubMessage; | ||
| import com.google.pubsub.v1.TopicName; | ||
| import java.io.IOException; | ||
| import java.util.concurrent.ExecutionException; | ||
| import java.util.concurrent.TimeUnit; | ||
|
|
||
| public class PublishWithGrpcCompressionExample { | ||
| public static void main(String... args) throws Exception { | ||
| // TODO(developer): Replace these variables before running the sample. | ||
| String projectId = "your-project-id"; | ||
| // Choose an existing topic. | ||
| String topicId = "your-topic-id"; | ||
|
|
||
| publishWithGrpcCompressionExample(projectId, topicId); | ||
| } | ||
|
|
||
| public static void publishWithGrpcCompressionExample(String projectId, String topicId) | ||
| throws IOException, ExecutionException, InterruptedException { | ||
| TopicName topicName = TopicName.of(projectId, topicId); | ||
|
|
||
| // Create a publisher and set enable compression to true. | ||
| Publisher publisher = null; | ||
| try { | ||
| // Enable compression and configure the compression threshold to 10 bytes (default to 240 B). | ||
| // Publish requests of sizes > 10 B (excluding the request headers) will get compressed. | ||
| // The number of messages in a publish request is determined by publisher batch settings. | ||
| // Batching is turned off by default, i.e. each publish request contains only one message. | ||
| publisher = | ||
| Publisher.newBuilder(topicName) | ||
| .setEnableCompression(true) | ||
| .setCompressionBytesThreshold(10L) | ||
| .build(); | ||
|
|
||
| byte[] bytes = new byte[1024]; | ||
| ByteString data = ByteString.copyFrom(bytes); | ||
| PubsubMessage pubsubMessage = PubsubMessage.newBuilder().setData(data).build(); | ||
|
|
||
| // Once published, returns a server-assigned message id (unique within the topic). | ||
| // You can look up the actual size of the outbound data using the Java Logging API. | ||
| // Configure logging properties as shown in | ||
| // https://github.com/googleapis/java-pubsub/tree/main/samples/snippets/src/main/resources/logging.properties | ||
| // and look for "OUTBOUND DATA" with "length=" in the output log. | ||
| ApiFuture<String> messageIdFuture = publisher.publish(pubsubMessage); | ||
| String messageId = messageIdFuture.get(); | ||
| System.out.println("Published a compressed message of message ID: " + messageId); | ||
| } finally { | ||
anguillanneuf marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| if (publisher != null) { | ||
| // When finished with the publisher, shutdown to free up resources. | ||
| publisher.shutdown(); | ||
| publisher.awaitTermination(1, TimeUnit.MINUTES); | ||
| } | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or 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,23 @@ | ||
| ## Copyright 2022 Google LLC | ||
| # | ||
| # 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. | ||
|
|
||
| # To run the example with the following logging config: | ||
| # cd samples/snippets/ | ||
| # mvn clean exec:java -Dexec.mainClass=pubsub.PublishWithGrpcCompression -Djava.util.logging.config.file=src/main/resources/logging.properties | ||
|
|
||
| handlers=java.util.logging.FileHandler | ||
| .level=FINE | ||
| java.util.logging.FileHandler.pattern=log.txt | ||
| java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter | ||
| java.util.logging.SimpleFormatter.format=[%1$tF %1$tT] %4$-5s %5$s %n |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.