Class JobConfigArguments

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String KEY_JOB_IS_SUSPENDABLE
      The key under which caller marks analyzed job.
      static java.lang.String KEY_REQUIRED_PARTITIONS
      The key under which the SQL engine stores detected partitions to apply member pruning technique.
      static java.lang.String KEY_SQL_QUERY_TEXT
      The key under which the SQL engine stores the SQL query text in JobConfig.getArgument(String).
      static java.lang.String KEY_SQL_UNBOUNDED
      The key under which the SQL engine stores whether the job backing an SQL query is bounded or unbounded (returning infinite rows).
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • KEY_SQL_UNBOUNDED

        public static final java.lang.String KEY_SQL_UNBOUNDED
        The key under which the SQL engine stores whether the job backing an SQL query is bounded or unbounded (returning infinite rows). Use for JobConfig.getArgument(String). Contains a Boolean value.
        See Also:
        Constant Field Values
      • KEY_REQUIRED_PARTITIONS

        public static final java.lang.String KEY_REQUIRED_PARTITIONS
        The key under which the SQL engine stores detected partitions to apply member pruning technique.
        See Also:
        Constant Field Values
      • KEY_JOB_IS_SUSPENDABLE

        public static final java.lang.String KEY_JOB_IS_SUSPENDABLE
        The key under which caller marks analyzed job. The reason for not having a separate flag in JobConfig is that we want to preserve Jet's independence from SQL.

        The value for that key supposed to have Boolean 'false' value to prevent job suspension.

        By default, any normal Jet job is suspendable.

        See Also:
        Constant Field Values