We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Descrizione del Bug Le RPT v2 sono soggette ad un batch che individua quelle scadute per timeout al fine di aggiornarne lo stato.
La query che individua le RPT da far scadere presenta le seguenti inefficienze:
stato <> 'RPT_SCADUTA'
data_msg_richiesta > '{data ultima esecuzione del batch con successo}'
data_msg_richiesta
create index idx_rpt_data_msg_richiesta on rpt(data_msg_richiesta);
The text was updated successfully, but these errors were encountered:
Issue #537
375ff1d
Aggiunto indice sulla colonna iuv della tabella rendicontazioni. Issue #538 Corrette inefficienze segnalate sulla ricerca delle RPT scadute.
Il filtro temporale che viene utilizzato e' il seguente:
(now - (2 * soglia_scadenza_rpt)) < data_msg_richiesta < (now - soglia_scadenza_rpt)
Sorry, something went wrong.
Issue #538
c56895b
Corrette inefficienze segnalate sulla ricerca delle RPT scadute.
pintorig
No branches or pull requests
Descrizione del Bug
Le RPT v2 sono soggette ad un batch che individua quelle scadute per timeout al fine di aggiornarne lo stato.
La query che individua le RPT da far scadere presenta le seguenti inefficienze:
stato <> 'RPT_SCADUTA'
)data_msg_richiesta > '{data ultima esecuzione del batch con successo}'
)data_msg_richiesta
(create index idx_rpt_data_msg_richiesta on rpt(data_msg_richiesta);
)The text was updated successfully, but these errors were encountered: