README.md
January 13, 2026 ยท View on GitHub
Amazon Simple Queue Service (SQS) plugin for Para
What is this?
Para was designed as a simple and modular back-end framework for object persistence and retrieval. It enables your application to store objects directly to a data store (NoSQL) or any relational database (RDBMS) and it also automatically indexes those objects and makes them searchable.
This plugin allows Para to cache objects in Amazon SQS.
Documentation
Read the Docs
Getting started
The plugin is on Maven Central. Here's the Maven snippet to include in your pom.xml:
<dependency>
<groupId>com.erudika</groupId>
<artifactId>para-queue-sqs</artifactId>
<version>{see_green_version_badge_above}</version>
</dependency>
Alternatively you can download the JAR from the "Releases" tab above put it in a lib folder alongside the server
WAR file para-x.y.z.war. Para will look for plugins inside lib and pick up the SQS plugin.
Configuration
Here are all the configuration properties for this plugin (these go inside your application.conf):
para.default_queue_name = "para-default"
para.queue_link_enabled = false
para.queue.polling_sleep_seconds = 60
para.queue.polling_interval_seconds = 10
para.river.max_indexing_retries = 5
para.indexing_sync_interval_sec = 10
Finally, set the config property:
para.q = "AWSQueue"
This could be a Java system property or part of a application.conf file on the classpath.
This tells Para to use the Amazon SQS Queue implementation instead of the default one.
Requirements
- AWS Java SDK v2
- Para Core