Tabnine Logo
JobLogTable.setLogSizeLimit
Code IndexAdd Tabnine to your IDE (free)

How to use
setLogSizeLimit
method
in
org.pentaho.di.core.logging.JobLogTable

Best Java code snippets using org.pentaho.di.core.logging.JobLogTable.setLogSizeLimit (Showing top 4 results out of 315)

origin: pentaho/pentaho-kettle

private JobLogTable getJobLogTableWithAllEqFields( String fieldsValue ) {
 JobLogTable jobLogTable = JobLogTable.getDefault( mockedVariableSpace, mockedHasDbInterface );
 initCommonTableFields( jobLogTable, fieldsValue  );
 jobLogTable.setLogSizeLimit( fieldsValue );
 jobLogTable.setLogInterval( fieldsValue );
 return jobLogTable;
}
origin: pentaho/pentaho-kettle

private void getJobLogTableOptions( JobLogTable jobLogTable ) {
 // The connection...
 //
 jobLogTable.setConnectionName( wLogconnection.getText() );
 jobLogTable.setSchemaName( wLogSchema.getText() );
 jobLogTable.setTableName( wLogTable.getText() );
 jobLogTable.setLogInterval( wLogInterval.getText() );
 jobLogTable.setLogSizeLimit( wLogSizeLimit.getText() );
 jobLogTable.setTimeoutInDays( wLogTimeout.getText() );
 for ( int i = 0; i < jobLogTable.getFields().size(); i++ ) {
  TableItem item = wOptionFields.table.getItem( i );
  LogTableField field = jobLogTable.getFields().get( i );
  field.setEnabled( item.getChecked() );
  field.setFieldName( item.getText( 1 ) );
 }
}
origin: pentaho/pentaho-kettle

jobMeta.getJobLogTable().setLogFieldUsed( rootNode.getProperty( PROP_USE_LOGFIELD ).getBoolean() );
jobMeta.getJobLogTable().setLogSizeLimit( getString( rootNode, PROP_LOG_SIZE_LIMIT ) );
origin: pentaho/pentaho-kettle

jobMeta.getJobLogTable().setLogFieldUsed(
 jobRow.getBoolean( KettleDatabaseRepository.FIELD_JOB_USE_LOGFIELD, false ) );
jobMeta.getJobLogTable().setLogSizeLimit(
 getJobAttributeString(
  jobMeta.getObjectId(), 0, KettleDatabaseRepository.JOB_ATTRIBUTE_LOG_SIZE_LIMIT ) );
org.pentaho.di.core.loggingJobLogTablesetLogSizeLimit

Popular methods of JobLogTable

  • getLogSizeLimit
  • getDatabaseMeta
  • getLogInterval
    Get the logging interval in seconds. Disabled if the logging interval is
  • getTableName
  • setConnectionName
  • setTableName
  • getDefault
  • isBatchIdUsed
  • isLogFieldUsed
  • setAllGlobalParametersToNull
  • setBatchIdUsed
  • setLogFieldUsed
  • setBatchIdUsed,
  • setLogFieldUsed,
  • setLogInterval,
  • <init>,
  • clone,
  • findField,
  • getActualSchemaName,
  • getActualTableName,
  • getFields

Popular in Java

  • Parsing JSON documents to java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • setRequestProperty (URLConnection)
  • onRequestPermissionsResult (Fragment)
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now