New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nice-grpc-server-middleware-terminator

Package Overview
Dependencies
Maintainers
0
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nice-grpc-server-middleware-terminator

Server middleware for nice-grpc to terminate long-running calls on shutdown

  • 2.0.12
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2K
decreased by-31.76%
Maintainers
0
Weekly downloads
 
Created
Source

nice-grpc-server-middleware-terminator npm version

Server middleware for nice-grpc that makes it possible to prevent long-running calls from blocking server graceful shutdown.

When server.shutdown() is called, the server stops accepting new calls, but the returned promise only resolves once all inflight requests finish. If you have a long-running call like an infinite stream, the shutdown will block until the client cancels the call. With this middleware, service implementation methods can alter this behavior, so that on shutdown the call would be aborted and clients would receive gRPC error UNAVAILABLE: Server shutting down.

Installation

npm install nice-grpc-server-middleware-terminator

Usage

Consider the following service definition with a streaming method:

service ExampleService {
  rpc ExampleMethod(ExampleRequest)
    returns (stream ExampleResponse) {};
}

In this example implementation we emit a response every second until aborted:

import {ServiceImplementation, CallContext} from 'nice-grpc';
import {TerminatorContext} from 'nice-grpc-server-middleware-terminator';
import {delay} from 'abort-controller-x';
import {
  ExampleServiceDefinition,
  ExampleRequest,
  ExampleResponse,
  DeepPartial,
} from './compiled_proto/example';

const exampleServiceImpl: ServiceImplementation<
  typeof ExampleServiceDefinition,
  TerminatorContext
> = {
  async *exampleMethod(
    request: ExampleRequest,
    context: CallContext & TerminatorContext,
  ): AsyncIterable<DeepPartial<ExampleResponse>> {
    // When `terminatorMiddleware.terminate()` is called, `context.signal` will
    // be aborted. Note that the method is still responsible for aborting all
    // the work once `context.signal` is aborted.
    context.abortOnTerminate();

    while (true) {
      await delay(context.signal, 1000);

      yield {
        /* ... */
      };
    }
  },
};

Attach the middleware to the server and terminate it before shutdown:

import {createServer} from 'nice-grpc';
import {TerminatorMiddleware} from 'nice-grpc-server-middleware-terminator';
import {ExampleServiceDefinition} from './compiled_proto/example';

const terminatorMiddleware = TerminatorMiddleware();

const server = createServer().use(terminatorMiddleware);
server.add(ExampleServiceDefinition, exampleServiceImpl);
await server.listen('0.0.0.0:8080');

// ... terminate middleware before shutdown:

terminatorMiddleware.terminate();
await server.shutdown();

FAQs

Package last updated on 24 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc