Aravind Gopal created EAGLE-1035:
------------------------------------
Summary: Metastore not supporting with mysql in Eagle 0.5
Key: EAGLE-1035
URL: https://issues.apache.org/jira/browse/EAGLE-1035
Project: Eagle
Issue Type: Bug
Components: Core::Eagle Server
Affects Versions: v0.5.0
Reporter: Aravind Gopal
In Eagle 0.5 I configured MySQL as Metastore DB, but it is not supporting to
store the metadata
I can see in JDBCDataSourceConfig class the H2 inmemory RDBMs has been hard
coded as below.
public class JDBCDataSourceConfig {
public static final String CONFIG_PREFIX = "metadata.jdbc";
private static final String DEFAULT_DRIVER_CLASS =
org.h2.Driver.class.getName();
private static final String DEFAULT_CONNECTION_PROPERTIES = "encoding=UTF8";
private static final String DEFAULT_URL = "jdbc:h2:./eagle";
private String username;
private String password;
private String driverClassName = DEFAULT_DRIVER_CLASS;
private String connection = DEFAULT_URL;
private String database;
private String connectionProperties = DEFAULT_CONNECTION_PROPERTIES;
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)