Documentation: Scheduling Predefined Functions in DataPump with Cron#
The DataPump tool provides the ability to schedule predefined functions using Cron jobs. These functions are designed to handle the import of core data into the Shopranos platform. However, since DataPump allows for the execution of JavaScript code within these functions, you can leverage them to schedule and execute any operation, regardless of the function name.
While these functions are named according to their intended purposes, you can use them to schedule and execute any JavaScript code, allowing for a wide range of operations beyond their original scope. This is possible because the functions are executed as JavaScript code blocks within the DataPump tool.For example:
You can use ProductsImport to run a custom script that checks the availability of a remote resource.
You can use OrdersImport to send notifications or perform any other custom task.
Use Cron syntax to define the schedule for your function. This allows you to specify when and how often the function should run (e.g., daily, hourly, or at a specific time).
2.
Write Custom Logic:
Within the predefined function, you can write any JavaScript code to perform your desired operations. The function will execute according to the schedule you set in the Cron job.
3.
Deploy the Schedule:
After setting up the schedule and writing the function logic, DataPump will handle the execution of the function based on your Cron configuration.
The function names suggest specific import operations, but you are free to use them for any purpose, making them versatile tools for scheduling tasks within DataPump.
Cron Syntax:
Ensure that your Cron expressions are correctly configured to schedule the functions at the desired times.
Custom JavaScript:
Since the functions allow for arbitrary JavaScript, make sure to test your code thoroughly to avoid unintended consequences during execution.
By utilizing the predefined functions in DataPump, you can not only manage imports for Shopranos but also schedule a variety of custom tasks, making it a powerful tool for automating operations within your environment.
Additional Feature: Testing Functions with the Playground#
In addition to scheduling predefined functions with Cron, DataPump offers a convenient way to test the operation of these functions before setting them up in a live environment. You can use the Playground feature to manually execute functions and verify that they behave as expected.
The Playground is a dedicated space within DataPump where you can experiment with functions.
2.
Enter the Function Name:
Simply type the name of the function you wish to test (e.g., ProductsImport, OrdersImport, etc.) in the input field.
3.
Write Custom Logic (Optional):
If you need to test specific logic, you can modify the function's code directly within the Playground.
4.
Run the Function:
Click the Run Function button to execute the function. The Playground will simulate the function's behavior and display the output or results in real-time.
5.
Verify Output:
Check the output or logs to ensure that the function performs as expected. This allows you to troubleshoot and fine-tune your logic before scheduling it with Cron.
The Playground provides instant feedback on the function's execution, helping you identify any issues or errors quickly.
Safe Testing Environment:
By testing in the Playground, you can experiment with different scenarios without affecting your live data or scheduled tasks.
Iterative Development:
You can iteratively develop and refine your function’s logic, ensuring that it works correctly before integrating it into your workflow.
By using the Playground feature, you can confidently test and validate your functions, making the process of scheduling and automating tasks in DataPump even more efficient and reliable.