Skip to content

Instantly share code, notes, and snippets.

@Oshiumi
Created December 14, 2018 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Oshiumi/4e2a67ee355b5e4107d2f299a553d763 to your computer and use it in GitHub Desktop.
Save Oshiumi/4e2a67ee355b5e4107d2f299a553d763 to your computer and use it in GitHub Desktop.
require 'google/cloud/pubsub'
pubsub = Google::Cloud::Pubsub.new(project_id: ENV['GCP_PROJECT_ID'])
topic = pubsub.topic ENV['PUBSUB_TOPIC']
# Publish 100,000 messages
100000.times { |i| topic.publish "test#{i}" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment