Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Prerequisities version is 5.x.x

Make sure you can access your elastic search instance by http protocol.

 

Livy

Griffin submit jobs to spark by Livy( http://livy.io/quickstart.html )

...

Code Block
languagebash
#spring boot app
org.apache.griffin.core.GriffinWebApplication

 

ui : front end 

configure to reflect your dev env

update service/src/main/resources/application.properties

Code Block
languagetext
spring.datasource.url = jdbc:mysql://<your IP>:3306/quartz?autoReconnect=true&useSSL=false
spring.datasource.username = <user name>
spring.datasource.password = <password>

hive.metastore.uris = thrift://<your IP>:9083
hive.metastore.dbname = <hive database name>    # default is "default"

update ui/js/services/service.js

 

Code Block
languagetext
#make sure you can access es by http
ES_SERVER = "http://<your IP>:9200"

 

License Header File

Each source file should include the following Apache License header

...