I have been spending a lot of time playing around with Oracle Advanced Queuing (AQ) lately and one of the things that has bothered me is the lack of a Command Line Interface (CLI) that can quickly test message enqueuing (publishing) and dequeuing (subscribing). It can be tedious to spin up an entire sample application just to publish a few messages to see if your queue is working as expected. I’ve spent a good amount of time working with other messaging solutions – from MQTT to Kafka – and just about every one of them have some sort of CLI that can be used for this purpose. So, instead of just complaining about it on Twitter, I decided to build one! The CLI was built with Micronaut (using Picocli) and converted to a native image with Graal (with support for Windows, Mac and Linux). I won’t go into the details of how I built the CLI in this post, but you’re more than welcome to check out the source code on GitHub. Instead, let’s take a look at how to use it! Here’s what we’ll cover in this post:
Download and Install
To get started, download the latest release (v0.0.1 as of this post). Depending on your OS, you might have to make the binary executable and/or move it to your path for easier invocation. Once that’s done, we’re ready to use it! Yay for quick and easy download and install! I’ve downloaded the Mac version, and added it to my path so that I can execute it with aq.
How to Use the CLI
It’s not difficult to use. There are two commands: enqueue and dequeue. You’ll also need to pass credentials so the CLI can authenticate. That can be done in one of three ways:
- Using a wallet (automatically downloaded for you)
- Using TLS and a Connect String
- Using a direct connection (host, port, service name)
We’ll go over examples of each of these auth types below. To get help at anytime, just use aq --help which will output a help doc that looks like so:
Enqueuing Messages
Enqueuing a message is done with the enqueue command.
Enqueue With an Autonomous DB Wallet
Note: To use an Autonomous DB wallet, you’ll need to have previously configured the OCI CLI and have a local config file already set up.
You’ll need your wallet OCID, the OCI profile to use, and the path to the profile.
Enqueue With a TLS Enabled Autonomous DB Connect String
Enqueue With a Host, Port and Service Name
Enqueue Output
Using any of the above methods, you should see output similar to the following.
Dequeuing Messages
Dequeuing is done with the dequeue command. Dequeuing messages will stream all incoming messages until you interrupt it with CTRL+C.
Dequeue With an Autonomous DB Wallet
Dequeue With a TLS Enabled Autonomous DB Connect String
Dequeue With a Host, Port and Service Name
Dequeue Output
Summary
And that’s it! Quick and easy pub/sub to AQ from a CLI. If you have any questions or suggestions, please file an issue on GitHub or leave a comment below!
