mapred-queue-acl_default.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. module.exports = [
  19. {
  20. name: 'mapred.queue.default.acl-submit-job',
  21. value: ' ',
  22. description: 'Comma separated list of user and group names that are allowed' +
  23. 'to submit jobs to the \'default\' queue. The user list and the group list' +
  24. 'are separated by a blank. For e.g. user1,user2 group1,group2.' +
  25. 'If set to the special value \'*\', it means all users are allowed to' +
  26. 'submit jobs. If set to \' \'(i.e. space), no user will be allowed to submit' +
  27. 'jobs.' +
  28. '\n' +
  29. 'It is only used if authorization is enabled in Map/Reduce by setting the' +
  30. 'configuration property mapred.acls.enabled to true.' +
  31. '\n' +
  32. 'Irrespective of this ACL configuration, the user who started the cluster and' +
  33. 'cluster administrators configured via' +
  34. 'mapreduce.cluster.administrators can submit jobs.'
  35. },
  36. {
  37. name: 'mapred.queue.default.acl-administer-jobs',
  38. value: ' ',
  39. description: 'Comma separated list of user and group names that are allowed' +
  40. 'to view job details, kill jobs or modify job\'s priority for all the jobs' +
  41. 'in the \'default\' queue.'
  42. }
  43. ];