You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
68995: sql: add columns in jobs virtual table for overview in DBConsole r=ajwerner a=sajjadrizvi
This commit adds new columns in `crdb_internal.jobs` table, which
show the current exponential-backoff state of a job and its execution
history.
Release justification: This commit adds low-risk updates to new
functionality. Jobs subsystem now supports job retries with
exponential-backoff. We want to give users more insights
about the backoff state of jobs and jobs' lifecycles through
additional columns in `crdb_internal.jobs` table.
Release note (general change): The functionality to retry failed
jobs with exponential-backoff has introduced recently in the system.
This commit adds new columns in `crdb_internal.jobs` table, which
show the current backoff-state of a job and its execution log. The
execution log consists of a sequence of job start and end events
and any associated errors that were encountered during the job's
each execution. Now users can query internal jobs table to get
more insights about jobs through the following columns: (a) `last_run`
shows the last execution time of a job, (b) `next_run` shows the
next execution time of a job based on exponential-backoff delay,
(c) `num_runs` shows the number of times the job has been executed,
and (d) `execution_log` provides a set of events that are generated
when a job starts and ends its execution.
Relates to #68179
69044: storageccl: remove non-ReturnSST ExportRequest r=dt a=dt
Release justification: bug fix in new functionality.
Release note: none.
69239: roachtest: move roachtest stress CI job instructions to README r=tbg,stevendanna a=erikgrinaker
Release justification: non-production code changes
Release note: None
69285: roachtest: increase consistency check timeout, and ignore errors r=tbg a=erikgrinaker
This bumps the consistency check timeout to 5 minutes. There are
indications that a recent libpq upgrade unmasked previously ignored
context cancellation errors, caused by the timeout here being too low.
It also ignores errors during the consistency check, since it is
best-effort anyway.
Resolves#68883.
Release justification: non-production code changes
Release note: None
Co-authored-by: Sajjad Rizvi <sajjad@cockroachlabs.com>
Co-authored-by: David Taylor <tinystatemachine@gmail.com>
Co-authored-by: Erik Grinaker <grinaker@cockroachlabs.com>
Another option is to start a [`Cockroach_Nightlies_RoachtestStress`](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestStress)
199
+
CI job, which allows running a bunch of tests without having to keep your
200
+
laptop online. The CI job is run as follows:
201
+
202
+
1. Go to https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestStress
203
+
2. Click the ellipsis (...) next to the Run button and fill in:
0 commit comments