Run task from DAG only once

Hello everyone!
I need to create DAG with some task, eg.:

  • fetch data from API endpoint and save data to database (called task_1)
  • fetch data from another API endpoint and save data to database (called task_2)

The problem is that I want to run task_1 only once, and if it was successfully competed task_2 should be repeated according to DAG settings (let’s sat that every 10 minutes.). Is it possible?