Credit Calculation Catalyst Function

Credit Calculation Catalyst Function

  1. The 1500,1000 refers to the number of requests that can be executed concurrently. 
  2. On an average, 900 - 200 parallel invocations per minute will be the maximum number of function invocations depending on the execution time of 1 - 5s respectively.
  3. Yes, if you have 1 function with 3 endpoints and each endpoint receives 100 requests, the total number of requests will be 300. So, you will be charged 300*0.5 credits. 
  4. Yes, if you have 3 functions with 1 endpoint and each function receives 100 requests, the total number of requests will be 300. So, you will be charged 300*0.5 credits. 

Note : The credits calculation for 3 and 4 has been done with a function memory of 256 mb and execution time lesser than 1 second. It can vary accordingly to the memory and execution time. 


    • Related Articles

    • Catalyst Function Execution and Performance

      You will only face higher execution time for function when it is called after a certain period of inactivity. If invoked continuously, you will not face the slowness. You can check the access logs for your function and check the average execution ...
    • Catalyst Java Function How to include external jars?

      As of now, you can place the jar files under the lib folder inside your function’s directory and include the jar filenames in .classpath file under your function’s directory. 
    • Reading private keys in Catalyst

      You can read it as a file in your Catalyst function and use it accordingly.
    • Catalyst Functions : 500 Error

      In order to be deployed in Catalyst, the Node.js application must follow a certain code structure. This issue might occur if the code structure for the same is not followed. You can find the sample code structure for all Catalyst functions here.  For ...
    • Can we create a RSA signature using Catalyst?

      You can use a npm package like node-rsa in a Catalyst function.