Giter VIP home page Giter VIP logo

esquartzweb's Introduction

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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.