| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #!/usr/bin/env python
- # Licensed to Cloudera, Inc. under one
- # or more contributor license agreements. See the NOTICE file
- # distributed with this work for additional information
- # regarding copyright ownership. Cloudera, Inc. licenses this file
- # to you under the Apache License, Version 2.0 (the
- # "License"); you may not use this file except in compliance
- # with the License. You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- from django.utils.translation import ugettext_lazy as _
- from desktop.lib.conf import Config, coerce_bool
- SHARE_JOBS = Config(
- key='share_jobs',
- default=True,
- type=coerce_bool,
- help=_('Share submitted jobs information with all users. If set to false, '
- 'submitted jobs are visible only to the owner and administrators.')
- )
- DISABLE_KILLING_JOBS = Config(
- key='disable_killing_jobs',
- default=False,
- type=coerce_bool,
- help=_('Disable the job kill button for all users in the job browser.')
- )
- LOG_OFFSET = Config(
- key='log_offset',
- default=-1000000,
- type=int,
- help=_('Offset in bytes where a negative offset will fetch the last N bytes for the given log file (default 1MB).')
- )
- # Deprecated
- ENABLE_V2 = Config(
- key="enable_v2",
- help=_("Show the version 2 of app which unifies all the past browsers into one."),
- type=coerce_bool,
- default=True
- )
- MAX_JOB_FETCH = Config(
- key='max_job_fetch',
- default=500,
- type=int,
- help=_('Maximum number of jobs to fetch and display when pagination is not supported for the type.')
- )
- # Deprecated
- ENABLE_QUERY_BROWSER = Config(
- key="enable_query_browser",
- help=_("Show the Impala query section for listing and showing more troubleshooting information."),
- type=coerce_bool,
- default=True
- )
- ENABLE_HIVE_QUERY_BROWSER = Config(
- key="enable_hive_query_browser",
- help=_("# Show the Hive query section for listing and showing more troubleshooting information."),
- type=coerce_bool,
- default=False
- )
- ENABLE_HISTORY_V2 = Config(
- key="enable_history_v2",
- help=_("Show the version 2 of job/query History which unifies the all into one."),
- type=coerce_bool,
- default=False
- )
|