An open API service indexing awesome lists of open source software.

https://github.com/shuhei/pollen

A DNS polling library that makes Node.js HTTP clients resilient to DNS errors
https://github.com/shuhei/pollen

dns http-client keep-alive nodejs

Last synced: 15 days ago
JSON representation

A DNS polling library that makes Node.js HTTP clients resilient to DNS errors

Awesome Lists containing this project

README

          

# pollen

DNS polling for HTTP Keep-Alive of Node.js HTTP clients

[![CircleCI](https://circleci.com/gh/shuhei/pollen.svg?style=svg)](https://circleci.com/gh/shuhei/pollen)
[![codecov](https://codecov.io/gh/shuhei/pollen/branch/master/graph/badge.svg)](https://codecov.io/gh/shuhei/pollen)
[![npm version](https://badge.fury.io/js/%40shuhei%2Fpollen.svg)](https://badge.fury.io/js/%40shuhei%2Fpollen)

## Why?

- Support server-side traffic switch using [weighted DNS routing](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html#routing-policy-weighted)
- Eliminate latency of making new connections (DNS query, TCP & TLS handshakes)
- Stay resilient to DNS query failures

To achieve good performance, we want to keep Keep-Alive connections as much as possible. On the over hand, DNS-based traffic switch doesn't allow us to keep connections forever because existing persistent connections can become stale when DNS records change.

## Solution

This package polls DNS records and keep Keep-Alive connections using [agentkeepalive](https://github.com/node-modules/agentkeepalive) as long as DNS records stay same. When DNS records change, it creates new connections with already retrieved IP addresses without making new DNS queries.

Even when DNS records change, existing connections are not immediately terminated. We can keep them for the next DNS record change (for example, DNS records can go back and forth with weighted DNS routing) with `freeSocketTimeout` option of `agentkeepalive`.

## Install

```sh
npm install -S @shuhei/pollen
# or
yarn add @shuhei/pollen
```

## Example

```js
const https = require('https');
const { DnsPolling, HttpsAgent } = require('@shuhei/pollen');

const dnsPolling = new DnsPolling({
interval: 30 * 1000 // 30 seconds by default
});
// Just a thin wrapper of https://github.com/node-modules/agentkeepalive
// It accepts all the options of `agentkeepalive`.
const agent = new HttpsAgent();

const hostname = 'shuheikagawa.com';
const req = https.request({
hostname,
path: '/',
// Make sure to call `getLookup()` for each request!
lookup: dnsPolling.getLookup(hostname),
agent,
});
```

## Limitations

- Only IPv4 is supported.
- `/etc/hosts`, etc are not supported because this package internally uses `dns.resolve4()`. See [Node.js documentation](https://nodejs.org/api/dns.html#dns_implementation_considerations) for more details.

## Development

To run the integration tests with multiple local IP addresses on Mac:

```sh
sudo ifconfig lo0 alias 127.0.0.2
```