Skip to content

desp0916/ESQuartzWeb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ESQuartzWeb

What is this?

This is a Quartz Scheduler web application for Elasticsearch. You can use it to schedule your Quartz jobs for Elasticsearch queries.

Requirements

  1. PostgreSQL 9.2+
  2. Tomcat 7+
  3. quartz-2.2.3+

How to Use?

PostgreSQL

  1. Create a role: quartz.
  2. Create a database: quartz and assign the owner to the role quartz.
  3. Download the Quartz tarball and unpack it.
  4. Run the db script under docs/dbTables/tables_postgres.sql.

Tomcat

  1. Download PostgreSQL JDBC driver and copy it to ${TOMCAT_HOME}/lib/
  2. Because JNDI is recommended, add the following snippet into ${TOMCAT_HOME}/conf/context.xml:
    <Resource name="jdbc/postgres" auth="Container"
        type="javax.sql.DataSource" driverClassName="org.postgresql.Driver"
        url="jdbc:postgresql://127.0.0.1:5432/quartz"
        username="quartz" password="quartz" maxActive="20" maxIdle="10"
        maxWait="-1"/>
  1. Modify web.xml:
  2. mvn clean package
  3. Deploy the war to Tomcat

References

About

A Quartz Scheduler web application for Elasticsearch

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages