Skip to content

Latest commit

 

History

History
66 lines (57 loc) · 1.39 KB

serviceconfiguration.md

File metadata and controls

66 lines (57 loc) · 1.39 KB
layout title permalink
doc
Eagle Service Configuration
/docs/serviceconfiguration.html

Eagle Service provides some config files for specifying metadata storage, security access to Eagle Service. This page will give detailed description of Eagle service configuration.

Eagle currently supports to customize the following configurations:

  • Metadata store config
  • Security access config

Metadata store config

  • for hbase
eagle {
	service{
		storage-type="hbase"
		hbase-zookeeper-quorum="sandbox.hortonworks.com"
		hbase-zookeeper-property-clientPort=2181
		zookeeper-znode-parent="/hbase-unsecure",
		springActiveProfile="sandbox"
		audit-enabled=true
	}
      }
  • for mysql
eagle {
	service {
		storage-type="jdbc"
		storage-adapter="mysql"
		storage-username="eagle"
		storage-password=eagle
		storage-database=eagle
		storage-connection-url="jdbc:mysql://localhost:3306/eagle"
		storage-connection-props="encoding=UTF-8"
		storage-driver-class="com.mysql.jdbc.Driver"
		storage-connection-max=8
	}
}
  • for derby
eagle {
	service {
		storage-type="jdbc"
		storage-adapter="derby"
		storage-username="eagle"
		storage-password=eagle
		storage-database=eagle
		storage-connection-url="jdbc:derby:/tmp/eagle-db-dev;create=true"
		storage-connection-props="encoding=UTF-8"
		storage-driver-class="org.apache.derby.jdbc.EmbeddedDriver"
		storage-connection-max=8
	}
}