Skip to content

Commit

Permalink
Issue 30993 EsReadOnlyMonitorJob still shows error (#31074)
Browse files Browse the repository at this point in the history
The job was still in the database, so an upgrade task was created to
remove it from the tables that were related to the job.
  • Loading branch information
gortiz-dotcms authored Jan 9, 2025
1 parent c74694b commit 83e3277
Show file tree
Hide file tree
Showing 3 changed files with 135 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
package com.dotmarketing.startup.runonce;

import com.dotmarketing.common.db.DotConnect;
import com.dotmarketing.exception.DotDataException;
import com.dotmarketing.exception.DotRuntimeException;
import com.dotmarketing.startup.StartupTask;

import java.util.ArrayList;
/**
* Deletes the EsReadOnlyMonitorJob from the database and all the related records.
* */
public class Task250107RemoveEsReadOnlyMonitorJob implements StartupTask {


private final String JOB_NAME = "EsReadOnlyMonitorJob";
private final String TRIGGER_NAME = "trigger29";
private final String CRON_TABLE_NAME = "qrtz_excl_cron_triggers";
private final String TRIGGER_TABLE_NAME = "qrtz_excl_triggers";
private final String JOB_TABLE_NAME = "qrtz_excl_job_details";

/**
* Determines if the task should be forced to run.
*
* @return true if EsReadOnlyMonitorJob is found, false otherwise.
*/
@Override
public final boolean forceRun() {
String sql=String.format("SELECT * FROM %s WHERE job_name=?", JOB_TABLE_NAME);
DotConnect dc=new DotConnect();
dc.setSQL(sql);

dc.addParam(JOB_NAME);
try {
if (!dc.loadResults().isEmpty()){
return true;
}
} catch (DotDataException e) {
e.printStackTrace();
}
return false;
}

@Override
public final void executeUpgrade() throws DotDataException, DotRuntimeException {
removeCron();
removeTrigger();
removeJob();
}

private void removeJob() throws DotDataException {
DotConnect dc = new DotConnect();
dc.setSQL(String.format("DELETE FROM %s WHERE job_name = ?", JOB_TABLE_NAME));
dc.addParam(JOB_NAME);
dc.loadResult();
}

private void removeTrigger() throws DotDataException {
DotConnect dc = new DotConnect();
dc.setSQL(String.format("DELETE FROM %s WHERE job_name = ?", TRIGGER_TABLE_NAME));
dc.addParam(JOB_NAME);
dc.loadResult();
}

private void removeCron() throws DotDataException {
DotConnect dc = new DotConnect();
dc.setSQL(String.format("DELETE FROM %s WHERE trigger_name = ?", CRON_TABLE_NAME));
dc.addParam(TRIGGER_NAME);
dc.loadResult();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@
import com.dotmarketing.startup.runonce.Task241014AddTemplateValueOnContentletIndex;
import com.dotmarketing.startup.runonce.Task241015ReplaceLanguagesWithLocalesPortlet;
import com.dotmarketing.startup.runonce.Task241016AddCustomLanguageVariablesPortletToLayout;
import com.dotmarketing.startup.runonce.Task250107RemoveEsReadOnlyMonitorJob;
import com.google.common.collect.ImmutableList;

import java.util.ArrayList;
Expand Down Expand Up @@ -576,7 +577,8 @@ public static List<Class<?>> getStartupRunOnceTaskClasses() {
.add(Task241013RemoveFullPathLcColumnFromIdentifier.class)
.add(Task241014AddTemplateValueOnContentletIndex.class)
.add(Task241015ReplaceLanguagesWithLocalesPortlet.class)
.add(Task241016AddCustomLanguageVariablesPortletToLayout.class)
.add(Task241016AddCustomLanguageVariablesPortletToLayout.class)
.add(Task250107RemoveEsReadOnlyMonitorJob.class)
.build();
return ret.stream().sorted(classNameComparator).collect(Collectors.toList());
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
package com.dotmarketing.startup.runonce;

import com.dotcms.util.IntegrationTestInitService;
import com.dotmarketing.common.db.DotConnect;
import com.dotmarketing.exception.DotDataException;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.Assert;

import java.sql.SQLException;

public class Task250107RemoveEsReadOnlyMonitorJobTest {


private final String JOB_NAME = "EsReadOnlyMonitorJob";
private final String TRIGGER_NAME = "trigger29";
private final String CRON_TABLE_NAME = "qrtz_excl_cron_triggers";
private final String TRIGGER_TABLE_NAME = "qrtz_excl_triggers";
private final String JOB_TABLE_NAME = "qrtz_excl_job_details";


@BeforeClass
public static void prepare() throws Exception {
IntegrationTestInitService.getInstance().init();
}


@Test
public void test_job() throws DotDataException, SQLException {
final DotConnect dc = new DotConnect();

Task250107RemoveEsReadOnlyMonitorJob upgradeTask = new Task250107RemoveEsReadOnlyMonitorJob();

if (!upgradeTask.forceRun()) {
dc.setSQL(String.format("INSERT INTO %s (job_name, job_group, job_class_name, is_durable, is_volatile, is_stateful, requests_recovery) VALUES (?, 'dotcms_jobs', 'com.dotmarketing.quartz.job.EsReadOnlyMonitorJob', 'f', 'f', 'f', 'f')", JOB_TABLE_NAME));
dc.addParam(JOB_NAME);
dc.loadResults();

dc.setSQL(String.format("INSERT INTO %s (job_name, trigger_name, trigger_group, job_group, is_volatile, trigger_state, trigger_type, start_time) VALUES (?,?, 'group98', 'dotcms_jobs', 'f', 'WAITING', 'CRON', 17362" +
"84300000)", TRIGGER_TABLE_NAME));
dc.addParam(JOB_NAME);
dc.addParam(TRIGGER_NAME);
dc.loadResults();

dc.setSQL(String.format("INSERT INTO %s (trigger_name, trigger_group, cron_expression) VALUES (?, 'group98', '0 */5 * ? * *')", CRON_TABLE_NAME));
dc.addParam(TRIGGER_NAME);
dc.loadResults();

Assert.assertFalse(dc.setSQL("SELECT * FROM " + JOB_TABLE_NAME + " WHERE job_name = '" + JOB_NAME + "'").loadResults().isEmpty());
}


Assert.assertTrue(upgradeTask.forceRun());

upgradeTask.executeUpgrade();

Assert.assertTrue(dc.setSQL("SELECT * FROM " + JOB_TABLE_NAME + " WHERE job_name = '" + JOB_NAME + "'").loadResults().isEmpty());

}


}

0 comments on commit 83e3277

Please sign in to comment.