YARN-9389. FlowActivity and FlowRun table prefix is wrong. Contributed by Prabhu Joseph.
This commit is contained in:
parent
072750c00a
commit
c1a4eeb7c8
@ -36,7 +36,7 @@
|
||||
public class FlowActivityTableRW extends BaseTableRW<FlowActivityTable> {
|
||||
/** flow activity table prefix. */
|
||||
private static final String PREFIX =
|
||||
YarnConfiguration.TIMELINE_SERVICE_PREFIX + ".flowactivity";
|
||||
YarnConfiguration.TIMELINE_SERVICE_PREFIX + "flowactivity";
|
||||
|
||||
/** config param name that specifies the flowactivity table name. */
|
||||
public static final String TABLE_NAME_CONF_NAME = PREFIX + ".table.name";
|
||||
|
@ -38,7 +38,7 @@
|
||||
public class FlowRunTableRW extends BaseTableRW<FlowRunTable> {
|
||||
/** entity prefix. */
|
||||
private static final String PREFIX =
|
||||
YarnConfiguration.TIMELINE_SERVICE_PREFIX + ".flowrun";
|
||||
YarnConfiguration.TIMELINE_SERVICE_PREFIX + "flowrun";
|
||||
|
||||
/** config param name that specifies the flowrun table name. */
|
||||
public static final String TABLE_NAME_CONF_NAME = PREFIX + ".table.name";
|
||||
|
Loading…
Reference in New Issue
Block a user