===== Gw Scheduler =====
==== Scopo ====
Funzionalità per schedulare facilmente l'esecuzione di codice contenuto in un qualunque file .groovy disponibile nei contenuti statici.
Grazie a questo componente si possono schedulare task usando una apposita gwClass di Geoweb in gestione che modella definizioni di schedulazione.
==== Caratteristiche ====
* possibilità di definire più di una schedulazione per la stessa istanza di Geoweb, con impostazioni temporali distinte per ciascuna schedulazione.
* schedulazioni facilmente dispiegabili tramite file .groovy
* possibilità di attivare/disattivare la schedulazione da interfaccia utente
* possibilità di modificare i parametri temporali per la schedulazione da interfaccia utente
* le modifiche su attivazione/disattivazione e dei parametri temporali sono applicati istantaneamente
* senza dover riavviare il server od altro
* le esecuzioni di task in corso al momento del cambio parametri/disattivazione finiscono normalmente
==== Generalità ====
I trigger applicativi che stanno dietro la gwClass provvederanno a far si che le modifiche vengano applicate istantaneamente.
Se si inserisce una //schedule definition//, con il flag //enabled// a true, essa verrà subito schedulata, e partirà secondo la configurazione.
Se si modifica una //schedule definition//, le modifiche verranno applicate immediatamente (ma eventuali task attualmente in corso finiranno normalmente).
Se si elimina una //schedule definition// dalla lista dei record della classe, quel task verrà rimosso dalla programmazione (ma eventuali task attualmente in corso finiranno normalmente).
==== Per Iniziare ====
* class **gw_sched_def** Se necessario importarla usando i file .xml della classe o del tema
* aggiungere in un qualche progetto di configurazione questo leafitem
* assicurarsi che nel configuration.properties il flag non sia settato a false
##################################################################
# G W S C H E D U L E R
##################################################################
#toggle the gwSchedluer execution, optional, default true
gwscheduler.enabled=false
==== Parametri gestiti dalla gwClass ====
{{ :gwusermanual:gw_scheduler_gwclass.jpg |}}
{{ :gwusermanual:gw_scheduler_gwclass_2.jpg |}}
I seguenti parametri sono configurabili e gestibili tramite l'interfaccia dell'apposita gwClass (vedi sotto) Geoweb:
* **sched_def_name** String, nome della definizione, deve essere univoco o verra lanciata un'eccezione
* **script_name** String, The .groovy file that will be executed (comprensive of .groovy extention, with the eventual relative path starting form 'WEB/groovy' folder existing in static contents
* **enabled** Integer, Toggle the script execution
* **cron** String, Cron Expression [must be of 6 slot]. It has priority on all other values (when provided all other parameters are simply ignored)
* **start_time** Date, When available it's used to give to execution a start time, maybe combined with period or delay values. if absent execution will start as soon as possible
* **delay** Integer, Delay after the last execution end (ms)
* **period** Integer,Period between two consecutive executions start (ms). Has priority over delay
* **parameters_json** String, this is the JSON string representation of the java.util.Map that will be available as incoming parameter inside the .groovy file, under name 'parameters'
I primi 3 parametri sono richiesti e sono comuni ad ogni definizione.
I parametri //cron//, //start_time//, //delay//, //period// sono opzionali e vanno usati a seconda delle esigenze.
Se ne puo impostare solo uno o combinarne due.
Ci sono delle priorità nella valutazione di questi parametri.
=== Ordine di valutazione ===
* **cron** Schedule the given {@link Runnable}, invoking it whenever the trigger indicates a next execution time.
* **both startTime and period** Schedule the given {@link Runnable}, invoking it at the specified execution time and subsequently with the given period.
* **both startTime and delay** Schedule the given {@link Runnable}, invoking it at the specified execution time and subsequently with the given delay between the completion of one execution and the start of the next.
* **only startTime** Schedule the given {@link Runnable}, invoking it at the specified execution time. Execution will end once the scheduler shuts down or the returned
* **only period** Schedule the given {@link Runnable}, starting as soon as possible and invoking it with the given period.
* **only delay** Schedule the given {@link Runnable}, starting as soon as possible and invoking it with the given delay between the completion of one execution and the start of the next.
=== Note ===
La differenza tra period e delay è che il primo considera il tempo che passa tra l'avvio di un task ed il successivo, indipendentemente dal tempo necessario all'esecuzione del task, mentre delay conta il tempo a partire dalla fine della precedente esecuzione.
==== Casi di utilizzo tipici ====
Eseguire un task ogni ora:
* settare //period// con l'equivalente dei ms presenti in un'ora (partirà appena schedulata, con //enabled// a true)
Eseguire un task ogni ora avendo controllo sulla precisa data di inizio:
* settare //period// con l'equivalente dei ms presenti in un'ora e //start_time// all'ora desiderata
Eseguire un task ogni ora con min 0 sec 0
* settare //cron// cosi: 0 0 0/1 * * *
==== Class XML ====
gw_sched_defScheduler DefinitionGwClass usata per poter gestire definizioni di schedulazioni.
I record inseriti in questa gwClass vengono valutati dal bean Spring GwScheduler
durante la sua inizializzazione, che si preoccupa di schedulare l'esecuzione dello
script groovy.
Il trigger correlato alla gwClass si preoccupa invece di modificare al volo
i parametri della schedulazione: attivo/disattivo, cron expression, start time,
delay, period. Questo in caso di update, mentre in caso di delete la
schedulazione verrà annullata
In tutti i casi se una groovy è gia partito la sua esecuzione verrà comunque
terminata anche in caso di update/delete della definizione della schedulazioneGSCIN USESTANDARD12019-04-19 08:05:34.628 UTC2019-04-19 08:05:34.628 UTCgw_sched_def0sched_def_idsched_def_name10gw_sched_defsched_def_iddefaultcom.geowebframework.webclient.scheduler.GwSchedDefTriggerstandardListSelectedAllAttributeExportToExcel(queryParameter, grid)exl_export_all_attributesEsporta tutti gli attributi in XLSGW12019-04-19 08:05:34.632 UTC2019-04-19 08:05:34.632 UTCEsporta in XLS1mainsched_def_nameSchedulation Definition Namesched_def_nameSTRING11falsetruetrue025018255truefalsetruetruetruefalsescript_nameThe .groovy file that will be executed (comprensive of .groovy extention, with the eventual relative path starting form 'WEB/groovy' folder existing in static contentsscript_nameSTRING2falsefalsetrue025018255truefalsetruetruetruefalseenabledToggle the script executionenabledINTEGER32falsetruetrue6250checkedtruefalsetruetruetruefalsefalse1/0Yes/NocronCron expression must consist of 6 fields: seconds, minutes, hours, daysOfMonth, months, daysOfWeek. It has priority on all other values (when provided all other parameters are simply ignored)cronSTRING44falsetruetrue125018140255falsefalsefalsefalsefalsetruetruetruefalse6 digit cron expressionsCron expression must consist of 6 fields: seconds, minutes, hours, daysOfMonth, months, daysOfWeekCron expression must consist of 6 fields: seconds, minutes, hours, daysOfMonth, months, daysOfWeekA valid 6 digit cron expressions is requiredtruefalsefalsefalsehuman_readable_cronHuman Readable Cron Expressionhuman_readable_cronSTRING3falsetruefalse1625040255falsetruetruetruetruefalse00000005500250200start_timeWhen available it's used to give to execution a start time, maybe combined with period or delay values. if absent execution will start as soon as possiblestart_timeDATE55falsetruetrue5250120falsefalsetruetruetruefalsedd-MM-yyyyHH:mm:sstruedelayDelay after the last execution end (ms)delayINTEGER77falsetruetrue2525018100falsefalsetruetruetruefalseNUMBER#.0.01.7976931348623157E308EURperiodPeriod between two consecutive executions start (ms). Has priority over delayperiodINTEGER66falsetruetrue2525018100falsefalsetruetruetruefalseNUMBER#.0.01.7976931348623157E308EURparameters_jsonThis is the JSON string representation of the java.util.Map that will be available as incoming parameter inside the .groovy file, under name 'parameters'parameters_jsonSTRINGfalsefalsefalse1625040255falsefalsefalsefalsefalsetruetruetruefalse00000005500250200sched_def_idSchedulation Definition IDsched_def_idINTEGERfalsefalse2525018falsefalsetruetruetruefalseNUMBER#.0.01.7976931348623157E308EURdefaultfalse4.4.0
==== Theme XML ====
GW - SchedulerGW - Scheduler0gw_sched_defScheduler DefinitionGwClass usata per poter gestire definizioni di schedulazioni.
I record inseriti in questa gwClass vengono valutati dal bean Spring GwScheduler
durante la sua inizializzazione, che si preoccupa di schedulare l'esecuzione dello
script groovy.
Il trigger correlato alla gwClass si preoccupa invece di modificare al volo
i parametri della schedulazione: attivo/disattivo, cron expression, start time,
delay, period. Questo in caso di update, mentre in caso di delete la
schedulazione verrà annullata
In tutti i casi se una groovy è gia partito la sua esecuzione verrà comunque
terminata anche in caso di update/delete della definizione della schedulazioneGSCIN USESTANDARD12019-04-19 08:05:34.628 UTC2019-04-19 08:05:34.628 UTCgw_sched_def0sched_def_idsched_def_name10gw_sched_defsched_def_iddefaultcom.geowebframework.webclient.scheduler.GwSchedDefTriggerstandardListSelectedAllAttributeExportToExcel(queryParameter, grid)exl_export_all_attributesEsporta tutti gli attributi in XLSGW12019-04-19 08:05:34.632 UTC2019-04-19 08:05:34.632 UTCEsporta in XLS1mainsched_def_nameSchedulation Definition Namesched_def_nameSTRING11falsetruetrue025018255truefalsetruetruetruefalsescript_nameThe .groovy file that will be executed (comprensive of .groovy extention, with the eventual relative path starting form 'WEB/groovy' folder existing in static contentsscript_nameSTRING2falsefalsetrue025018255truefalsetruetruetruefalseenabledToggle the script executionenabledINTEGER32falsetruetrue6250checkedtruefalsetruetruetruefalsefalse1/0Yes/NocronCron expression must consist of 6 fields: seconds, minutes, hours, daysOfMonth, months, daysOfWeek. It has priority on all other values (when provided all other parameters are simply ignored)cronSTRING44falsetruetrue125018140255falsefalsefalsefalsefalsetruetruetruefalse6 digit cron expressionsCron expression must consist of 6 fields: seconds, minutes, hours, daysOfMonth, months, daysOfWeekCron expression must consist of 6 fields: seconds, minutes, hours, daysOfMonth, months, daysOfWeekA valid 6 digit cron expressions is requiredtruefalsefalsefalsehuman_readable_cronHuman Readable Cron Expressionhuman_readable_cronSTRING3falsetruefalse1625040255falsetruetruetruetruefalse00000005500250200start_timeWhen available it's used to give to execution a start time, maybe combined with period or delay values. if absent execution will start as soon as possiblestart_timeDATE55falsetruetrue5250120falsefalsetruetruetruefalsedd-MM-yyyyHH:mm:sstruedelayDelay after the last execution end (ms)delayINTEGER77falsetruetrue2525018100falsefalsetruetruetruefalseNUMBER#.0.01.7976931348623157E308EURperiodPeriod between two consecutive executions start (ms). Has priority over delayperiodINTEGER66falsetruetrue2525018100falsefalsetruetruetruefalseNUMBER#.0.01.7976931348623157E308EURparameters_jsonThis is the JSON string representation of the java.util.Map that will be available as incoming parameter inside the .groovy file, under name 'parameters'parameters_jsonSTRINGfalsefalsefalse1625040255falsefalsefalsefalsefalsetruetruetruefalse00000005500250200sched_def_idSchedulation Definition IDsched_def_idINTEGERfalsefalse2525018falsefalsetruetruetruefalseNUMBER#.0.01.7976931348623157E308EURdefaultfalse4.4.0
==== SCRIPT ====
=== Oracle ===
CREATE TABLE "SCHEMA_NAME"."GW_SCHED_DEF"
( "SCHED_DEF_ID" NUMBER(*,0) NOT NULL ENABLE,
"SCHED_DEF_NAME" VARCHAR2(250 BYTE),
"CRON" VARCHAR2(4000 BYTE),
"HUMAN_READABLE_CRON" VARCHAR2(4000 BYTE),
"START_TIME" DATE,
"DELAY" NUMBER(38,0),
"PERIOD" NUMBER(38,0),
"SCRIPT_NAME" VARCHAR2(250 BYTE),
"PARAMETERS_JSON" VARCHAR2(4000 BYTE),
"ENABLED" NUMBER(1,0),
CONSTRAINT "GW_SCHED_DEF_PK" PRIMARY KEY ("SCHED_DEF_ID"),
CONSTRAINT "GW_SCHED_DEF_UK" UNIQUE ("SCHED_DEF_NAME")
);
=== Postgres ===
CREATE TABLE gw_sched_def
(
sched_def_id integer NOT NULL,
sched_def_name character varying,
script_name character varying,
enabled integer,
cron character varying,
human_readable_cron character varying,
start_time timestamp without time zone,
delay bigint,
period bigint,
parameters_json character varying,
CONSTRAINT gw_sched_def_pk PRIMARY KEY (sched_def_id),
CONSTRAINT gw_sched_def_uk UNIQUE (sched_def_name)
)
WITH (
OIDS=FALSE
);
ALTER TABLE gw_sched_def
OWNER TO "AEC";
=== SqlServer ===
TODO ADD