Update of Log Store Policy

Updates the properties of the domain log store policy.

Syntax

void setDomainLogAutoPurgeTimeThreshold(Integer days) throws SUPAdminException;

void setDomainLogDataSource(String datasource) throws SUPAdminException;

void setDomainLogFlushBatchSize(Integer rows) throws SUPAdminException;

void setDomainLogLazyWriteRowThreshold(Integer rowcount) throws SUPAdminException;

void setDomainLogLazyWriteStatus(Boolean flag) throws SUPAdminException;

void setDomainLogLazyWriteTimeThreshold(Integer minutes) throws SUPAdminException;

Returns

If successful, returns silently. If unsuccessful, returns SUPAdminException.

Examples

  • Update
    supCluster.setDomainLogAutoPurgeTimeThreshold(7);
    supCluster.setDomainLogDataSource("newDomainLogDB");
    supCluster.setDomainLogFlushBatchSize(100);
    supCluster.setDomainLogLazyWriteRowThreshold(200);
    supCluster.setDomainLogLazyWriteStatus(true);
    supCluster.setDomainLogLazyWriteTimeThreshold(100);
    

Usage

These methods are only accessible to the Platform Administrator.