Deployment Checklist

Here is a list of things that you may want to keep in mind when hosting a large bot.

You may also be interested in our guides for hosting a bot. Check out Hosting / Tutorials at the top of the page to see some of the platforms that already have dedicated guides.

Errors

  1. Install an error handler with bot.catch (long polling) or on your web framework (webhooks).
  2. Use await on all promises and install linting, with rules that enforce this, so that you never forget.

Message Sending

  1. Send files by path or Buffer instead of by stream, or at least make sure you know the pitfalls.
  2. Use bot.on("callback_query:data") as the fallback handler to react to all callback queries.
  3. Use the transformer-throttler plugin to avoid hitting rate limits.
  4. Optional. Consider using the auto-retry plugin to automatically handle flood wait errors.

Scaling

This depends on your deployment type.

Long Polling

  1. Use grammY runner.
  2. Use sequentialize with the same session key resolver function as your session middleware.
  3. Go through the configuration options of run (API referenceopen in new window) and make sure they fit your needs, or even consider composing your own runner out of sourcesopen in new window and sinksopen in new window. The main thing to consider is the maximum load you want to apply to your server, i.e. how many updates may be processed at the same time.
  4. Consider implementing graceful shutdown in order to stop your bot when you want to terminate it (i.e. to switch to a new version).

Webhooks

  1. Make sure you do not perform any long-running operations in your middleware, such as large file transfers. This leads to timeout errors for the webhooks, and duplicate update processing as Telegram will re-send non-acknowledged updates. Consider using a task queuing system instead.
  2. Make yourself familiar with the configuration of webhookCallback (API referenceopen in new window).
  3. If you adjusted the getSessionKey option for your session, use sequentialize with the same session key resolver function as your session middleware.
  4. If you are running on a serverless or autoscaling platform, set the bot informationopen in new window to prevent excessive getMe calls.
  5. Consider using webhook replies.

Sessions

  1. Consider using lazySessions as explained here.
  2. Use the storage option to set your storage adapter, otherwise all data will be lost when the bot process stops.

Testing

Write tests for your bot. This can be done with grammY like so:

  1. Mock outgoing API requests using transformer functions.
  2. Define and send sample update objects to your bot via bot.handleUpdate (API referenceopen in new window). Consider to take some inspiration from these update objectsopen in new window provided by the Telegram team.

Contribute a Testing Framework

While grammY provides the necessary hooks to start writing tests, it would be very helpful to have a testing framework for bots. This is novel territory, such testing frameworks largely do not exist. We look forward to your contributions!

An example on how tests could be done can be found hereopen in new window.