ANALYTICS_RUN_CORE
Description
This table stores information about analytics run cores.
Columns
| Column Name | Data Type | Description |
| ID | bigint(20) | Primary key, unique identifier for each analytics run core. |
| ANALYTICS_RUN_ID | bigint(20) | Foreign key referencing the ANALYTICS_RUN table. |
| DEPLOYED | bit(1) | Flag indicating whether the run is deployed. |
| FEED_NAME | varchar(255) | The name of the feed. |
| NEXT_ITERATION_INDEX | int(11) | The index of the next iteration. |
| RUN_ID | varchar(255) | The ID of the run. |
| VERSION | int(11) | The version of the run. |
| SCHEDULE_ANALYTICS_RUN_CORE 0 | bigint(20) | Foreign key referencing the ANALYTICS_RUN_SCHEDULE table. |
Foreign Key Relationships
- ANALYTICS_RUN_ID references ANALYTICS_RUN(ID)
- SCHEDULE_ANALYTICS_RUN_CORE 0 references ANALYTICS_RUN_SCHEDULE(ID)