Catalyst Function Execution and Performance

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 time of your function. 


We would suggest you to enable Application Performance Monitoring which will help you get an idea on your function execution timing along with component calls etc. You can find the help documentation for the same here. Do check on the same and let us know if you further have any queries. 

    • Related Articles

    • Credit Calculation Catalyst Function

      The 1500,1000 refers to the number of requests that can be executed concurrently.  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. ...
    • Catalyst Functions Class not found error

      Kindly do check on the following points.  Kindly make sure you have uploaded your Java function with all the complied class files.  If the class files are present, then kindly make sure you have provided the relative path of the main class properly ...
    • Basic I/O Function :Troubleshooting Tips

      Do check in your code whether you have used context.close() anywhere after the function block as it might close the function before sending the response. This might have caused you the issue.  The code within the function block will be executed only ...
    • 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. 
    • 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 ...