https://github.com/shin1x1/en9sqs
concurrent enqueue messages to Amazon SQS
https://github.com/shin1x1/en9sqs
amazon-sqs aws golang
Last synced: about 1 year ago
JSON representation
concurrent enqueue messages to Amazon SQS
- Host: GitHub
- URL: https://github.com/shin1x1/en9sqs
- Owner: shin1x1
- License: mit
- Created: 2018-06-16T11:46:16.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-29T03:43:25.000Z (about 8 years ago)
- Last Synced: 2024-06-20T13:31:14.937Z (about 2 years ago)
- Topics: amazon-sqs, aws, golang
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# en9sqs
This tool enqueue messages to Amazon SQS. The main purpose of en9sqs is testing job workers performance.
## Usage
```
$ go get -u github.com/shin1x1/en9sqs
$ en9sqs -h
NAME:
en9sqs - enqueue messages to Amazon SQS tool
USAGE:
en9sqs [global options] command [command options] queue_url message
VERSION:
0.0.1
COMMANDS:
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--region value, -r value Region (default: "ap-northeast-1")
--concurrency value, -c value Number of concurrency workers (default: "1")
--messages value, -n value Number of enqueueing messages (default: "1")
--help, -h show help
--version, -v print the version
```
## Build
```
$ git clone this_repo
$ cd this_repo
$ make
```