Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Again, this is only necessary if you use some of the more advanced features like enrollment_start. But if you want to ensure you are picking an experiment ID that is not taken yet, run the following command on the read replicain mysql:

Code Block
languagesql
select distinct experiment_id from experiments_experimentdata
union
select distinct experiment_id from experiments_experimentkeyvalue
order by experiment_id;

...