waves_logo Docs
  • Node Owner Guide
    Node Owner Guide
  • Install Waves Node
    • Deploy Node in Docker
      Deploy Node in Docker
    • Install Node on Ubuntu
      Install Node on Ubuntu
    • Install Node on macOS
      Install Node on macOS
    • Install Node on Windows
      Install Node on Windows
    • Install from Source (Building SBT)
      Install from Source (Building SBT)
    Install Waves Node
  • Synchronize Waves Blockchain
    • Import/Export Blockchain
      Import/Export Blockchain
    • Download the Latest Blockchain
      Download the Latest Blockchain
    • Rollback Waves Node
      Rollback Waves Node
    Synchronize Waves Blockchain
  • Generate Blocks
    Generate Blocks
  • Upgrade Waves Node
    Upgrade Waves Node
  • Node Configuration
    Node Configuration
  • Logging Configuration
    Logging Configuration
  • Node Wallet
    Node Wallet
  • Features
    • Activation protocol
      Activation protocol
    Features
  • Custom Blockchain
    Custom Blockchain
  • Node REST API
    • API Key
      API Key
    • Working with Transactions
      Working with Transactions
    • Numeric Fields Format
      Numeric Fields Format
    • Pagination
      Pagination
    • CORS
      CORS
    • API Limitations of Pool of Public Nodes
      API Limitations of Pool of Public Nodes
    • Slow Requests
      Slow Requests
    • Response Codes and Errors
      Response Codes and Errors
    Node REST API
  • Extensions
    • gRPC Server
      gRPC Server
    • Blockchain Updates
      Blockchain Updates
    Extensions
  • Troubleshooting
    • Block Generation FAQ
      Block Generation FAQ
    Troubleshooting
  • Node Go
    Node Go
      • English
      • Русский
      On this page
      waves_logo Docs

          # Slow Requests

          Requests to the following endpoints can take a long time:

          • /addresses/data/{address} in case of requesting data by a regular expression or requesting all account data;
          • /leasing/active/{address}
          • /assets/balance/{address}
          • /assets/{assetId}/distribution: the endpoint is deprecated, use /assets/{assetId}/distribution/{height}/limit/{limit} instead.

          If the node cannot process the request within the allotted time, the node returns HTTP code 503 and the following text:

          The server was not able to produce a timely response to your request.
          Please try again in a short while!
          

          On your own node, you can increase the request processing timeout by adding the following parameters to the node configuration:

          waves {
            ...
          }
          
          akka {
            http.server {
              idle-timeout = 10m
              request-timeout = 10m
            }
          }
          

          The idle-timeout should be not less than request-timeout.

          API Limitations of Pool of Public Nodes
          Response Codes and Errors
          API Limitations of Pool of Public Nodes
          Response Codes and Errors