| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- import { getScheduleDeleteCronJobRunDetailsSql } from '@supabase/pg-meta'
- import { CheckCircle2, XCircle } from 'lucide-react'
- import {
- Button,
- Dialog,
- DialogContent,
- DialogHeader,
- DialogSection,
- DialogSectionSeparator,
- DialogTitle,
- DialogTrigger,
- Progress,
- Select,
- SelectContent,
- SelectItem,
- SelectTrigger,
- SelectValue,
- Tooltip,
- TooltipContent,
- TooltipTrigger,
- } from 'ui'
- import { Admonition } from 'ui-patterns/admonition'
- import { CodeBlock } from 'ui-patterns/CodeBlock'
- import { CLEANUP_INTERVALS } from './CronJobsTab.constants'
- import {
- useCronJobsCleanupActions,
- type BatchDeletionProgress,
- } from './CronJobsTab.useCleanupActions'
- import { InlineLinkClassName } from '@/components/ui/InlineLink'
- import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject'
- interface CronJobRunDetailsOverflowNoticeV2Props {
- queryCost?: number
- refetchJobs: () => void
- }
- export const CronJobRunDetailsOverflowNotice = (props: CronJobRunDetailsOverflowNoticeV2Props) => {
- return (
- <Admonition
- type="note"
- className="rounded-none border-x-0 border-t-0 py-2 [&>svg]:top-[0.6rem] [&>svg]:left-10 pl-10 pr-10"
- layout="horizontal"
- actions={<CronJobRunDetailsOverflowDialog {...props} />}
- >
- <p className="text-xs">Last run for each cron job omitted due to high query cost</p>
- </Admonition>
- )
- }
- const CronJobRunDetailsOverflowDialog = ({
- queryCost,
- refetchJobs,
- }: CronJobRunDetailsOverflowNoticeV2Props) => {
- const { data: project } = useSelectedProjectQuery()
- const {
- cleanupInterval,
- cleanupState,
- isScheduling,
- isScheduleSuccess,
- setCleanupInterval,
- runBatchedDeletion,
- scheduleCleanup,
- cancelDeletion,
- } = useCronJobsCleanupActions({
- projectRef: project?.ref,
- connectionString: project?.connectionString,
- })
- const isDeleting = cleanupState.status === 'deleting'
- const isDeleteSuccess = cleanupState.status === 'delete-success'
- const isDeleteError = cleanupState.status === 'delete-error'
- const isBusy = isDeleting || isScheduling
- const canSchedule = isDeleteSuccess || isScheduleSuccess
- return (
- <Dialog>
- <DialogTrigger asChild>
- <Button type="default">Learn more</Button>
- </DialogTrigger>
- <DialogContent
- aria-describedby={undefined}
- onOpenAutoFocus={(event) => event.preventDefault()}
- >
- <DialogHeader>
- <DialogTitle>Last run for cron jobs omitted for overview</DialogTitle>
- </DialogHeader>
- <DialogSectionSeparator />
- <DialogSection className="flex flex-col gap-y-2">
- <p className="text-sm">
- The dashboard fetches data for the cron jobs overview by running a join between the{' '}
- <code className="text-code-inline">cron.job</code> and{' '}
- <code className="text-code-inline break-keep!">cron.job_run_details</code> tables to
- show each cron job's latest run.
- </p>
- <p className="text-sm">
- However, the join was skipped as the{' '}
- <Tooltip>
- <TooltipTrigger className={InlineLinkClassName}>estimated query cost</TooltipTrigger>
- <TooltipContent side="bottom" className="flex flex-col gap-y-1">
- <p>Estimated cost: {queryCost?.toLocaleString()}</p>
- <p className="text-foreground-light">
- Determined via the <code className="text-code-inline">EXPLAIN</code> command
- </p>
- </TooltipContent>
- </Tooltip>{' '}
- exceeds safety thresholds, likely due to the size of{' '}
- <code className="text-code-inline break-keep!">cron.job_run_details</code> table.
- </p>
- </DialogSection>
- <DialogSectionSeparator />
- <DialogSection className="flex flex-col gap-y-4">
- <p className="font-mono text-foreground-lighter uppercase tracking-tight text-sm">
- Suggested steps
- </p>
- <p className="text-sm">
- We recommend removing the old run history now, then scheduling a cron job that keeps
- trimming the <code className="text-code-inline">cron.job_run_details</code> table
- automatically. This also prevents unnecessary bloat on the database.
- </p>
- <div className="flex flex-col gap-y-2 text-sm">
- <p className="text-foreground">Step 1: Delete older entries</p>
- {isDeleting ? (
- <DeletionProgress progress={cleanupState.progress} onCancel={cancelDeletion} />
- ) : isDeleteSuccess ? (
- <DeletionSuccess totalRowsDeleted={cleanupState.totalRowsDeleted} />
- ) : isDeleteError ? (
- <DeletionError
- error={cleanupState.error}
- onRetry={() => runBatchedDeletion(cleanupInterval)}
- />
- ) : (
- <div className="flex flex-col gap-2 sm:flex-row sm:items-center">
- <div className="sm:w-64">
- <Select
- disabled={isBusy}
- value={cleanupInterval}
- onValueChange={setCleanupInterval}
- >
- <SelectTrigger className="w-full">
- <SelectValue placeholder="Select an interval" />
- </SelectTrigger>
- <SelectContent>
- {CLEANUP_INTERVALS.map((option) => (
- <SelectItem key={option.value} value={option.value}>
- {option.label}
- </SelectItem>
- ))}
- </SelectContent>
- </Select>
- </div>
- <Button
- type="default"
- disabled={isBusy}
- onClick={() => runBatchedDeletion(cleanupInterval)}
- >
- Delete rows now
- </Button>
- </div>
- )}
- </div>
- <div className="flex flex-col gap-y-2 text-sm">
- <p className="text-foreground">Step 2: Schedule an automated cleanup</p>
- {!canSchedule ? (
- <p className="text-foreground-lighter text-xs">
- Complete step 1 to enable scheduling a daily cleanup job.
- </p>
- ) : isScheduleSuccess ? (
- <ScheduleSuccess />
- ) : (
- <>
- <CodeBlock
- hideLineNumbers
- language="sql"
- value={getScheduleDeleteCronJobRunDetailsSql(cleanupInterval)}
- className="py-3 px-4 text-xs"
- wrapperClassName="max-w-full"
- />
- <Button
- block
- size="small"
- type="default"
- className="mt-1"
- loading={isScheduling}
- disabled={isScheduling}
- onClick={async () => {
- await scheduleCleanup({
- interval: cleanupInterval,
- onSuccess: () => refetchJobs(),
- })
- }}
- >
- Schedule cleanup job
- </Button>
- </>
- )}
- </div>
- </DialogSection>
- </DialogContent>
- </Dialog>
- )
- }
- interface DeletionProgressProps {
- progress: BatchDeletionProgress
- onCancel: () => void
- }
- const DeletionProgress = ({ progress, onCancel }: DeletionProgressProps) => {
- const { currentBatch, totalBatches, totalRowsDeleted } = progress
- const percentComplete =
- totalBatches > 0 ? Math.min(Math.round((currentBatch / totalBatches) * 100), 100) : 0
- return (
- <div className="space-y-2">
- <div className="flex items-center gap-3">
- <Progress value={percentComplete} className="flex-1 h-2" />
- <span className="text-xs text-foreground-light whitespace-nowrap">
- {percentComplete}% ({currentBatch}/{totalBatches} batches)
- </span>
- </div>
- <div className="flex items-center justify-between">
- <span className="text-xs text-foreground-light">
- Deleted {totalRowsDeleted.toLocaleString()} rows so far...
- </span>
- <Button type="outline" size="tiny" onClick={onCancel}>
- Cancel
- </Button>
- </div>
- </div>
- )
- }
- interface DeletionSuccessProps {
- totalRowsDeleted: number
- }
- const DeletionSuccess = ({ totalRowsDeleted }: DeletionSuccessProps) => (
- <div className="flex items-center gap-2 text-brand">
- <CheckCircle2 size={16} />
- <span className="text-sm">Successfully deleted {totalRowsDeleted.toLocaleString()} rows.</span>
- </div>
- )
- interface DeletionErrorProps {
- error: string
- onRetry: () => void
- }
- const DeletionError = ({ error, onRetry }: DeletionErrorProps) => (
- <div className="space-y-2">
- <div className="flex items-center gap-2 text-destructive">
- <XCircle size={16} />
- <span className="text-sm">Deletion failed: {error}</span>
- </div>
- <Button type="default" size="small" onClick={onRetry}>
- Retry
- </Button>
- </div>
- )
- const ScheduleSuccess = () => (
- <div className="space-y-2">
- <div className="flex items-center gap-2 text-brand">
- <CheckCircle2 size={16} />
- <span className="text-sm">Daily cleanup job scheduled successfully.</span>
- </div>
- <div className="flex items-center gap-2">
- <p className="text-foreground-lighter text-xs">
- New cleanup job should now be visible in the cron jobs overview.
- </p>
- </div>
- </div>
- )
|