5554: Add Rake task to delete old job log records.
[arvados.git] / services / api / config / application.default.yml
1 # Do not use this file for site configuration. Create application.yml
2 # instead (see application.yml.example).
3
4 development:
5   force_ssl: false
6   cache_classes: false
7   whiny_nils: true
8   consider_all_requests_local: true
9   action_controller.perform_caching: false
10   action_mailer.raise_delivery_errors: false
11   action_mailer.perform_deliveries: false
12   active_support.deprecation: :log
13   action_dispatch.best_standards_support: :builtin
14   active_record.mass_assignment_sanitizer: :strict
15   active_record.auto_explain_threshold_in_seconds: 0.5
16   assets.compress: false
17   assets.debug: true
18   local_modified: "<%= '-modified' if `git status -s` != '' %>"
19
20 production:
21   force_ssl: true
22   cache_classes: true
23   consider_all_requests_local: false
24   action_controller.perform_caching: true
25   serve_static_assets: false
26   assets.compress: true
27   assets.compile: false
28   assets.digest: true
29
30 test:
31   force_ssl: false
32   cache_classes: true
33   serve_static_assets: true
34   static_cache_control: public, max-age=3600
35   whiny_nils: true
36   consider_all_requests_local: true
37   action_controller.perform_caching: false
38   action_dispatch.show_exceptions: false
39   action_controller.allow_forgery_protection: false
40   action_mailer.delivery_method: :test
41   active_support.deprecation: :stderr
42   active_record.mass_assignment_sanitizer: :strict
43   uuid_prefix: zzzzz
44   secret_token: <%= rand(2**512).to_s(36) %>
45   blob_signing_key: zfhgfenhffzltr9dixws36j1yhksjoll2grmku38mi7yxd66h5j4q9w4jzanezacp8s6q0ro3hxakfye02152hncy6zml2ed0uc
46   user_profile_notification_address: arvados@example.com
47   workbench_address: https://localhost:3001/
48   git_repositories_dir: <%= Rails.root.join 'tmp', 'git', 'test' %>
49   git_internal_dir: <%= Rails.root.join 'tmp', 'internal.git' %>
50
51 common:
52   # The prefix used for all database identifiers to identify the record as
53   # originating from this site.  Must be exactly 5 alphanumeric characters
54   # (lowercase ASCII letters and digits).
55   uuid_prefix: <%= Digest::MD5.hexdigest(`hostname`).to_i(16).to_s(36)[0..4] %>
56
57   # If not false, this is the hostname that will be used for root_url and
58   # advertised in the discovery document.  By default, use the default Rails
59   # logic for deciding on a hostname.
60   host: false
61
62   # Base part of SSH git clone url given with repository resources. If
63   # true, the default "git@git.(uuid_prefix).arvadosapi.com:" is
64   # used. If false, SSH clone URLs are not advertised. Include a
65   # trailing ":" or "/" if needed: it will not be added automatically.
66   git_repo_ssh_base: true
67
68   # Base part of HTTPS git clone urls given with repository
69   # resources. This is expected to be an arv-git-httpd service which
70   # accepts API tokens as HTTP-auth passwords. If true, the default
71   # "https://git.(uuid_prefix).arvadosapi.com/" is used. If false,
72   # HTTPS clone URLs are not advertised. Include a trailing ":" or "/"
73   # if needed: it will not be added automatically.
74   git_repo_https_base: true
75
76   # If this is not false, HTML requests at the API server's root URL
77   # are redirected to this location, and it is provided in the text of
78   # user activation notification email messages to remind them where
79   # to log in.
80   workbench_address: false
81
82   # Git repositories must be readable by api server, or you won't be
83   # able to submit crunch jobs. To pass the test suites, put a clone
84   # of the arvados tree in {git_repositories_dir}/arvados.git or
85   # {git_repositories_dir}/arvados/.git
86   git_repositories_dir: /var/lib/arvados/git
87
88   # This is a (bare) repository that stores commits used in jobs.  When a job
89   # runs, the source commits are first fetched into this repository, then this
90   # repository is used to deploy to compute nodes.  This should NOT be a
91   # subdirectory of {git_repositiories_dir}.
92   git_internal_dir: /var/lib/arvados/internal.git
93
94   # :none or :slurm_immediate
95   crunch_job_wrapper: :none
96
97   # username, or false = do not set uid when running jobs.
98   crunch_job_user: crunch
99
100   # The web service must be able to create/write this file, and
101   # crunch-job must be able to stat() it.
102   crunch_refresh_trigger: /tmp/crunch_refresh_trigger
103
104   # These two settings control how frequently log events are flushed to the
105   # database.  Log lines are buffered until either crunch_log_bytes_per_event
106   # has been reached or crunch_log_seconds_between_events has elapsed since
107   # the last flush.
108   crunch_log_bytes_per_event: 4096
109   crunch_log_seconds_between_events: 1
110
111   # The sample period for throttling logs, in seconds.
112   crunch_log_throttle_period: 60
113
114   # Maximum number of bytes that job can log over crunch_log_throttle_period
115   # before being silenced until the end of the period.
116   crunch_log_throttle_bytes: 65536
117
118   # Maximum number of lines that job can log over crunch_log_throttle_period
119   # before being silenced until the end of the period.
120   crunch_log_throttle_lines: 1024
121
122   # Maximum bytes that may be logged by a single job.  Log bytes that are
123   # silenced by throttling are not counted against this total.
124   crunch_limit_log_bytes_per_job: 67108864
125
126   # Path to dns server configuration directory (e.g. /etc/unbound.d/conf.d),
127   # or false = do not update dns server data.
128   dns_server_conf_dir: false
129
130   # Template for the dns server host snippets. See unbound.template in this directory for
131   # an example. Set to false to disable.
132   dns_server_conf_template: false
133
134   # Dns server reload command, or false = do not reload dns server after data change
135   dns_server_reload_command: false
136
137   # Example for unbound
138   #dns_server_conf_dir: /etc/unbound/conf.d
139   #dns_server_conf_template: /path/to/your/api/server/config/unbound.template
140   #dns_server_reload_command: /etc/init.d/unbound reload
141
142   compute_node_domain: false
143   compute_node_nameservers:
144     - 192.168.1.1
145
146   # The version below is suitable for AWS.
147   # To use it, copy it to your application.yml, uncomment, and change <%# to <%=
148   # compute_node_nameservers: <%#
149   #   require 'net/http'
150   #   ['local', 'public'].collect do |iface|
151   #     Net::HTTP.get(URI("http://169.254.169.254/latest/meta-data/#{iface}-ipv4")).match(/^[\d\.]+$/)[0]
152   #   end << '172.16.0.23'
153   # %>
154
155   accept_api_token: {}
156
157   # When new_users_are_active is set to true, the user agreement check is skipped.
158   new_users_are_active: false
159
160   admin_notifier_email_from: arvados@example.com
161   email_subject_prefix: "[ARVADOS] "
162   user_notifier_email_from: arvados@example.com
163   new_user_notification_recipients: [ ]
164   new_inactive_user_notification_recipients: [ ]
165
166   # The e-mail address of the user you would like to become marked as an admin
167   # user on their first login.
168   # In the default configuration, authentication happens through the Arvados SSO
169   # server, which uses openid against Google's servers, so in that case this
170   # should be an address associated with a Google account.
171   auto_admin_user: false
172
173   # If auto_admin_first_user is set to true, the first user to log in when no
174   # other admin users exist will automatically become an admin user.
175   auto_admin_first_user: false
176
177   ## Set Time.zone default to the specified zone and make Active
178   ## Record auto-convert to this zone.  Run "rake -D time" for a list
179   ## of tasks for finding time zone names. Default is UTC.
180   #time_zone: Central Time (US & Canada)
181
182   ## Default encoding used in templates for Ruby 1.9.
183   encoding: utf-8
184
185   # Enable the asset pipeline
186   assets.enabled: true
187
188   # Version of your assets, change this if you want to expire all your assets
189   assets.version: "1.0"
190
191   arvados_theme: default
192
193   # The ARVADOS_WEBSOCKETS environment variable determines whether to
194   # serve http, websockets, or both.
195   #
196   # If ARVADOS_WEBSOCKETS="true", http and websockets are both served
197   # from the same process.
198   #
199   # If ARVADOS_WEBSOCKETS="ws-only", only websockets is served.
200   #
201   # If ARVADOS_WEBSOCKETS="false" or not set at all, only http is
202   # served. In this case, you should have a separate process serving
203   # websockets, and the address of that service should be given here
204   # as websocket_address.
205   #
206   # If websocket_address is false (which is the default), the
207   # discovery document will tell clients to use the current server as
208   # the websocket service, or (if the current server does not have
209   # websockets enabled) not to use websockets at all.
210   #
211   # Example: Clients will connect to the specified endpoint.
212   #websocket_address: wss://127.0.0.1:3333/websocket
213   # Default: Clients will connect to this server if it's running
214   # websockets, otherwise none at all.
215   websocket_address: false
216
217   # blob_signing_key is a string of alphanumeric characters used to
218   # generate permission signatures for Keep locators. It must be
219   # identical to the permission key given to Keep. IMPORTANT: This is
220   # a site secret. It should be at least 50 characters.
221   blob_signing_key: ~
222
223   # Amount of time (in seconds) for which a blob permission signature
224   # remains valid.  Default: 2 weeks (1209600 seconds)
225   blob_signing_ttl: 1209600
226
227   # Allow clients to create collections by providing a manifest with
228   # unsigned data blob locators. IMPORTANT: This effectively disables
229   # access controls for data stored in Keep: a client who knows a hash
230   # can write a manifest that references the hash, pass it to
231   # collections.create (which will create a permission link), use
232   # collections.get to obtain a signature for that data locator, and
233   # use that signed locator to retrieve the data from Keep. Therefore,
234   # do not turn this on if your users expect to keep data private from
235   # one another!
236   permit_create_collection_with_unsigned_manifest: false
237
238   # secret_token is a string of alphanumeric characters used by Rails
239   # to sign session tokens. IMPORTANT: This is a site secret. It
240   # should be at least 50 characters.
241   secret_token: ~
242
243   # Email address to notify whenever a user creates a profile for the
244   # first time
245   user_profile_notification_address: false
246
247   default_openid_prefix: https://www.google.com/accounts/o8/id
248
249   # Config parameters to automatically setup new users.
250   # The params auto_setup_new_users_with_* are meaningful only when auto_setup_new_users is turned on.
251   # auto_setup_name_blacklist is a list of usernames to be blacklisted for auto setup.
252   auto_setup_new_users: false
253   auto_setup_new_users_with_vm_uuid: false
254   auto_setup_new_users_with_repository: false
255   auto_setup_name_blacklist: [arvados, git, gitolite, gitolite-admin, root, syslog]
256
257   # source_version
258   source_version: "<%= `git log -n 1 --format=%h`.strip %>"
259   local_modified: false
260
261   # Default lifetime for ephemeral collections: 2 weeks.
262   default_trash_lifetime: 1209600
263
264   # Permit insecure (OpenSSL::SSL::VERIFY_NONE) connections to the Single Sign
265   # On (sso) server.  Should only be enabled during development when the SSO
266   # server is using a self-signed cert.
267   sso_insecure: false
268
269   # Default replication level for collections. This is used when a
270   # collection's replication_desired attribute is nil.
271   default_collection_replication: 2
272
273   # Maximum size (in bytes) allowed for a single API request that will be
274   # published in the discovery document for use by clients.
275   # Note you must separately configure the upstream web server or proxy to
276   # actually enforce the desired maximum request size on the server side.
277   max_request_size: 134217728
278
279   # When you run the db:delete_old_job_logs task, it will find jobs that
280   # have been finished for at least this many seconds, and delete their
281   # stderr logs from the logs table.
282   # If a pipeline runs longer than this, client applications like
283   # Workbench will lose the ability to display logs from jobs in the
284   # pipeline that finished this long ago.
285   clean_job_log_rows_after: <%= 30.days %>