@peak-ai/ais-service-discovery
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

Cloud Application Framework

Description

This repository interfaces Service Discovery, in this instance CloudMap, in order to locate and communicate with different services. As opposed to storing ARN's in environment variables, this library will interface CloudMap to find a service by a user friendly naming convention, and will understand what 'type' of service you've requested, and use the correct code to communicate/call that service.

Services supported

  • Lambda (request|call).
  • SNS (publish). // subscribe not supported by SNS.
  • SQS (queue|listen),
  • Automation//SSM task (automate | script).
  • Step function (state-machine).

Examples:

Import

const ServiceDiscovery = require('@peak-ai/ais-service-discovery');

Call a function

await ServiceDiscovery.request('namespace.service->handler',  body);

Publish an SNS event

await ServiceDiscovery.publish('namspace.service-name->topic', event, {
  ...opts,
  attributes: { // Matches params.MessageAttributes from aws-sdk
    tenant: {
      DataType: 'String',
      StringValue: 'foo',
    },
  },
});

Add message to queue

await ServiceDiscovery.queue('namespace.service-name->queue-name', message, opts // optional);

List to queue

const messages = await ServiceDiscovery.listen('namespace.service-name->queue-name', opts // optional);
messages.on('message', (message) => {

});

Register a service (Cloudformation)

CloudMapService:
  Type: AWS::ServiceDiscovery::Service
  Properties:
    Description: discover handlers for ais-service-segment-explorer
    Name: segment-explorer
    NamespaceId: ${cf:ais-${opt:stage}-service-discovery.NamespaceId}

CreateRefreshSegmentInstance:
  Type: "AWS::ServiceDiscovery::Instance"
  Properties:
    InstanceAttributes:
      arn: ${self:service}-${opt:stage}-refresh-segment
      type: function
    InstanceId: refresh-segment
    ServiceId:
      Ref: CloudMapService

Upcoming Beta version

We're releasing an update which allows you to configure and write modular 'backends' for the core service discovery library.

In this new version we're also introducing Typescript.

For example (previous):

const ServiceDiscovery = require('@peak-ai/ais-service-discovery-js');
ServiceDiscovery.request('latest.service->instance', request);

The above example only deals with AWS, and there's no way to reconfigure this behaviour.

This is fairly limiting, especially for testing locally. We came up with the idea of being able to 'mock' or 'stub' these requests locally, for a faster development process.

New example:

import { WithMockedBackend, WithAWSBackend } from "@peak-ai/ais-service-discovery-js";

// Config to decide what to do locally
const config = {
  "latest.service->instance": {
    resolver: { mockedResponse: { message: 'Hello World' } },
  },
};

// Responds with mocked responses
const local = WithMockedBackend(config);
const res = await local.request('latest.service->instance', request);

// Communicates via SQS
const prod = WithAWSBackend();
await prod.queue('latest.service->instance', request);

Integration Tests

Prerequisites

  1. AWS Account Access
  2. Run the infrastructure CDK plan, found in ./examples/infrastructure (follow the instructions in the README there).
  3. Ensure you have your AWS_PROFILE, and AWS_REGION env vars set correctly.

Run integration tests

$ yarn run test:integration

Readme

Keywords

none

Package Sidebar

Install

npm i @peak-ai/ais-service-discovery

Weekly Downloads

454

Version

1.0.0

License

MIT

Unpacked Size

363 kB

Total Files

142

Last publish

Collaborators

  • peakai