Skip to content
New issue

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

Issue 30993 EsReadOnlyMonitorJob still shows error #31074

Merged
merged 4 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 {
gortiz-dotcms marked this conversation as resolved.
Show resolved Hide resolved
gortiz-dotcms marked this conversation as resolved.
Show resolved Hide resolved


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.
*/
gortiz-dotcms marked this conversation as resolved.
Show resolved Hide resolved
@Override
public final boolean forceRun() {
String sql=String.format("SELECT * FROM %s WHERE job_name=?", JOB_TABLE_NAME);
gortiz-dotcms marked this conversation as resolved.
Show resolved Hide resolved
DotConnect dc=new DotConnect();
gortiz-dotcms marked this conversation as resolved.
Show resolved Hide resolved
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());

}


}
Loading