Graviti Help Center
  • Graviti Help Center
  • Developer Documentation
    • Developer Tools
      • Graviti Python SDK
      • Graviti CLI
      • Graviti Open API
        • DataSet Operation
        • Data Operation
        • Examples
          • Model training
          • Data mining
  • Product Documentation
    • TensorBay
      • TensorBay: For All Stages of Algorithm Research
      • Quick Start for Developers
      • Quick Start for Team
      • How to Quickly Prepare a Dataset
        • How to Create a New Dataset
        • Manage Data in Cloud Storage
        • Create a Dataset by Filtering
        • Create a Dataset by Merging
        • Quick Use of Open Datasets by Forking
      • Version Control
        • Manage Data Files
        • Manage Annotations
        • Manage Dataset Information
        • Manage Versions
        • Manage Dataset Branches
        • Dataset Activities
        • Dataset Settings
      • Pharos Online Data Visualization
        • Explore Pharos
        • Pharos Visualization Widgets Instruction
      • Collaboration
        • Create a New Team
        • Invite Team Members
        • Team Management
        • Dataset Management
        • View Activity Log
      • How to Integrate TensorBay into Your Pipeline
      • Action
        • Create a Workflow
        • Run Workflows
        • Manage Workflows
        • YAML Syntax Description
        • Crontab syntax Description
        • Automatic Configurations
    • Open Datasets
      • Basic Concepts
      • Search for Datasets
      • Preview Data and Label Distribution Online
      • Use and Manage Datasets Online
      • Download Open Datasets
      • Didn't find the dataset you want?
  • APPs
    • GroundTruth Tools
      • Annotate pictures
    • Sextant
      • Create an Evaluation
      • Custom Metrics
      • Start to Evaluate
      • View Results
  • Release Note
  • Graviti Official Website
Powered by GitBook
On this page

Was this helpful?

  1. Product Documentation
  2. TensorBay
  3. Action

Crontab syntax Description

Users can create scheduled workflow through Crontab in Action.

PreviousYAML Syntax DescriptionNextAutomatic Configurations

Last updated 3 years ago

Was this helpful?

Crontab is a set of commands used to schedule the execution of tasks. Users can set the time parameters to make the programs run on schedule.

A crontab file has five fields for specifying day, date, and time followed by the command to be run at that interval. After being set, your workflow will run automatically on schedule.

# the format of crontab: 
    *    *    *    *    *
    -    -    -    -    -
    |    |    |    |    |
    |    |    |    |    +----- day of week (0 - 7) (Sunday=0 or 7) 
    |    |    |    +---------- month (1 - 12)
    |    |    +--------------- day of the month (1 - 31)
    |    +-------------------- hour (0 - 23)
    +------------------------- minute (0 - 59)
    
# Examples:
    0 0 1 * *       # the firth day of a month
    10 6 * * 1-5    # every Monday to Friday at 6:10 a.m. 

You also can enter Crontab online editor for more syntax descriptions and examples through the link.

Crontab.guru - The cron schedule expression editor
Logo