Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,27 @@
<value></value>
<description>Class name of the JDBC Driver used by Metron</description>
<display-name>Metron JDBC Driver</display-name>
<value-attributes>
<empty-value-valid>true</empty-value-valid>
</value-attributes>
</property>
<property>
<name>metron_jdbc_url</name>
<value></value>
<description>JDBC Connection URL used by Metron</description>
<display-name>Metron JDBC URL</display-name>
<value-attributes>
<empty-value-valid>true</empty-value-valid>
</value-attributes>
</property>
<property>
<name>metron_jdbc_username</name>
<value></value>
<description>Metron JDBC Username</description>
<display-name>Metron JDBC username</display-name>
<value-attributes>
<empty-value-valid>true</empty-value-valid>
</value-attributes>
</property>
<property>
<name>metron_jdbc_password</name>
Expand All @@ -70,6 +79,7 @@
<type>password</type>
<overridable>false</overridable>
<hidden>METRON_CLIENT</hidden>
<empty-value-valid>true</empty-value-valid>
</value-attributes>
<on-ambari-upgrade add="true"/>
</property>
Expand All @@ -78,6 +88,9 @@
<value></value>
<description>Database platform used by Metron. One of: hsqldb, h2, oracle, mysql, postgresql</description>
<display-name>Metron JDBC platform</display-name>
<value-attributes>
<empty-value-valid>true</empty-value-valid>
</value-attributes>
</property>
<property>
<name>metron_jdbc_client_path</name>
Expand Down
8 changes: 4 additions & 4 deletions metron-interface/metron-rest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,6 @@ No optional parameter has a default.

| Environment Variable | Description
| ------------------------------------- | -----------
| METRON_JDBC_DRIVER | JDBC driver class
| METRON_JDBC_URL | JDBC url
| METRON_JDBC_USERNAME | JDBC username
| METRON_JDBC_PLATFORM | JDBC platform (one of h2, mysql, postgres, oracle
| ZOOKEEPER | Zookeeper quorum (ex. node1:2181,node2:2181)
| BROKERLIST | Kafka Broker list (ex. node1:6667,node2:6667)
| HDFS_URL | HDFS url or `fs.defaultFS` Hadoop setting (ex. hdfs://node1:8020)
Expand All @@ -88,6 +84,10 @@ No optional parameter has a default.
### Optional - Blank Defaults
| Environment Variable | Description | Required
| ------------------------------------- | ----------------------------------------------------------------- | --------
| METRON_JDBC_DRIVER | JDBC driver class | Optional
| METRON_JDBC_URL | JDBC url | Optional
| METRON_JDBC_USERNAME | JDBC username | Optional
| METRON_JDBC_PLATFORM | JDBC platform (one of h2, mysql, postgres, oracle) | Optional
| METRON_JVMFLAGS | JVM flags added to the start command | Optional
| METRON_SPRING_PROFILES_ACTIVE | Active Spring profiles (see [below](#spring-profiles)) | Optional
| METRON_SPRING_OPTIONS | Additional Spring input parameters | Optional
Expand Down