Skip to main content

A simple python library for interacting with the ARGO Messaging Service

Project description

argo-ams-library

Jenkins Build Status

A simple python library for interacting with the ARGO Messaging Service.

The Messaging Services is implemented as a Publish/Subscribe Service. Instead of focusing on a single Messaging API specification for handling the logic of publishing/subscribing to the broker network the API focuses on creating nodes of Publishers and Subscribers as a Service.

In the Publish/Subscribe paradigm, Publishers are users/systems that can send messages to named-channels called Topics. Subscribers are users/systems that create Subscriptions to specific topics and receive messages.

You may find more information about the ARGO Messaging Service documentation

Library installation

Library is tested and should work with Python versions 2.7, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11 running on CentOS 7, Rocky 8 and Rocky 9 releases.

RPM packages are prepared for CentOS and Rocky releases and you may find it and download it from ARGO Repository. PyPI packages are prepared as well.

RPM production packages:

RPM devel packages:

PyPI package:

https://pypi.org/project/argo-ams-library/

Authentication

The AMS library uses a valid AMS token to execute requests against the AMS cluster. This token can be provided with 2 ways:

  • Obtain a valid ams token and then use it when initializing the ams object.
from argo_ams_library import ArgoMessagingService
ams = ArgoMessagingService(endpoint="ams_endpoint", project="ams_project", token="your_ams_token")
  • Use a valid certificate
from argo_ams_library import ArgoMessagingService
ams = ArgoMessagingService(endpoint="ams_endpoint", project="ams_project", cert="/path/to/cert", key="/path/to/cert/key")

The library will use the provided certificate to access the corresponding ams token through the ARGO Authentication Service and then set the ams object's token field with the retrieved token.

Examples

In the folder examples, you may find examples of using the library:

  • for publishing messages (examples/publish.py)
  • for consuming messages in pull mode (examples/consume-pull.py)
  • retry feature for publish/consume methods (examples/retry.py)

Publish messages

This example explains how to publish messages in a topic with the use of the library. Topics are resources that can hold messages. Publishers (users/systems) can create topics on demand and name them (Usually with names that make sense and express the class of messages delivered in the topic). A topic name must be scoped to a project.

You may find more information about Topics in the ARGO Messaging Service documentation

publish.py  --host=[the FQDN of AMS Service]
--token=[the user token]
--project=[the name of your project registered in AMS Service]
--topic=[the topic to publish your messages]

Consume messages in pull mode

This example explains how to consume messages from a predefined subscription with the use of the library. A subscription is a named resource representing the stream of messages from a single, specific topic, to be delivered to the subscribing application. A subscription name must be scoped to a project. In pull delivery, your subscriber application initiates requests to the Pub/Sub server to retrieve messages. When you create a subscription, the system establishes a sync point. That is, your subscriber is guaranteed to receive any message published after this point. Messages published before the sync point may not be delivered.

You may find more information about Subscriptions in the ARGO Messaging Service documentation

consume-pull.py  --host=[the FQDN of AMS Service]
--token=[the user token]
--project=[the name of your project registered in AMS Service]
--topic=[the topic from where the messages are delivered ]
--subscription=[the subscription name to pull the messages]
--nummsgs=[the num of messages to consume]

Retry

Library has self-implemented HTTP request retry ability to seamlesssly interact with the ARGO Messaging service. Specifically, requests will be retried in case of:

  • timeouts from AMS (HTTP 408) or load balancer (HTTP 408 and 504)
  • load balancer HTTP 502, 503
  • connection related problems in the lower network layers

It has two modes: static sleep and backoff. Examples are given in the in examples/retry.py.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

argo-ams-library-0.6.2.tar.gz (23.9 kB view details)

Uploaded Source

Built Distribution

argo_ams_library-0.6.2-py3-none-any.whl (26.3 kB view details)

Uploaded Python 3

File details

Details for the file argo-ams-library-0.6.2.tar.gz.

File metadata

  • Download URL: argo-ams-library-0.6.2.tar.gz
  • Upload date:
  • Size: 23.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.8.2

File hashes

Hashes for argo-ams-library-0.6.2.tar.gz
Algorithm Hash digest
SHA256 fa79f464c63724425111c526d45bc0888c068bc9efb4740e66846bf9596518af
MD5 b8611b42c3da927ef7ee27ae90116713
BLAKE2b-256 1fab08a8822f05fb439ecba573eb37286bc491ec41afd2e1c87a0045203be3e6

See more details on using hashes here.

File details

Details for the file argo_ams_library-0.6.2-py3-none-any.whl.

File metadata

File hashes

Hashes for argo_ams_library-0.6.2-py3-none-any.whl
Algorithm Hash digest
SHA256 771ab44062811113b5a4a5662e5c3690689091c65b8a380ee88837035bb5bfc8
MD5 917fb7bf967ea1d1664ba6e168a43900
BLAKE2b-256 e7eb6857bff3eae5869697d2c18d2494049b40eb429e8f3093860eb7f7249c1f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page