X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/84bd6883a5bab065c88d4ed495b8c03ab7ba5f97..refs/heads/21654-docker-upgrade:/doc/install/install-keep-balance.html.textile.liquid?ds=sidebyside diff --git a/doc/install/install-keep-balance.html.textile.liquid b/doc/install/install-keep-balance.html.textile.liquid index 85fe300305..05d27b7cb4 100644 --- a/doc/install/install-keep-balance.html.textile.liquid +++ b/doc/install/install-keep-balance.html.textile.liquid @@ -3,153 +3,55 @@ layout: default navsection: installguide title: Install Keep-balance ... +{% comment %} +Copyright (C) The Arvados Authors. All rights reserved. -Keep-balance deletes unreferenced and overreplicated blocks from Keep servers, makes additional copies of underreplicated blocks, and moves blocks into optimal locations as needed (e.g., after adding new servers). +SPDX-License-Identifier: CC-BY-SA-3.0 +{% endcomment %} +# "Introduction":#introduction +# "Update config.yml":#update-config +# "Install keep-balance package":#install-packages +# "Start the service":#start-service -h2. Install keep-balance +h2(#introduction). Introduction -Keep-balance can be installed anywhere with access to Keep services. Typically it runs on the same host as keepproxy. +Keep-balance deletes unreferenced and overreplicated blocks from Keep servers, makes additional copies of underreplicated blocks, and moves blocks into optimal locations as needed (e.g., after adding new servers). See "Balancing Keep servers":{{site.baseurl}}/admin/keep-balance.html for usage details. -On Debian-based systems: +Keep-balance can be installed anywhere with network access to Keep services, arvados-controller, and PostgreSQL. Typically it runs on the same host as keepproxy. - -
~$ sudo apt-get install keep-balance
-
-
- -On Red Hat-based systems: - - -
~$ sudo yum install keep-balance
-
-
- -Verify that @keep-balance@ is functional: - - -
~$ keep-balance -h
-...
-Usage: keep-balance [options]
+*A cluster should have only one instance of keep-balance running at a time.*
 
-Options:
-  -commit-pulls
-        send pull requests (make more replicas of blocks that are underreplicated or are not in optimal rendezvous probe order)
-  -commit-trash
-        send trash requests (delete unreferenced old blocks, and excess replicas of overreplicated blocks)
-...
-
-
+{% include 'notebox_begin' %} -h3. Create a keep-balance token +If you are installing keep-balance on an existing system with valuable data, you can run keep-balance in "dry run" mode first and review its logs as a precaution. To do this, set the @Collections.BalancePullLimit@ and @Collections.BalanceTrashLimit@ configuration entries to zero. -Create a privileged Arvados API token for use by keep-balance. *On the API server*, run: - - -
apiserver:~$ cd /var/www/arvados-api/current
-apiserver:/var/www/arvados-api/current$ sudo -u webserver-user RAILS_ENV=production bundle exec script/create_superuser_token.rb
-zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
-
-
+{% include 'notebox_end' %} -h3. Create a configuration file +h2(#update-config). Update the cluster config -Create @/etc/arvados/keep-balance/keep-balance.yml@ using the token you generated in the previous step. Follow this YAML format: +Edit the cluster config at @config.yml@ and set @Services.Keepbalance.InternalURLs@. This port is only used to publish metrics. -
Client:
-  APIHost: uuid_prefix.your.domain:443
-  AuthToken: zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
-KeepServiceTypes:
-  - disk
-RunPeriod: 10m
-CollectionBatchSize: 100000
-CollectionBuffers: 1000
+
    Services:
+      Keepbalance:
+        InternalURLs:
+          "http://keep.ClusterID.example.com:9005/": {}
 
-If your API server's SSL certificate is not signed by a recognized CA, add the @Insecure@ option to the @Client@ section: +Ensure your cluster configuration has @Collections.BlobTrash: true@ (this is the default). -
Client:
-  Insecure: true
-  APIHost: ...
+
# arvados-server config-dump | grep BlobTrash:
+      BlobTrash: true
 
-h3. Start the service (option 1: systemd) - -If your system does not use systemd, skip this section and follow the "runit instructions":#runit instead. - -If your system uses systemd, the keep-balance service should already be set up. Start it and check its status: +If BlobTrash is false, unneeded blocks will be counted and logged by keep-balance, but they will not be deleted. - -
~$ sudo systemctl restart keep-balance
-~$ sudo systemctl status keep-balance
-● keep-balance.service - Arvados Keep Balance
-   Loaded: loaded (/lib/systemd/system/keep-balance.service; enabled)
-   Active: active (running) since Sat 2017-02-14 18:46:01 UTC; 3 days ago
-     Docs: https://doc.arvados.org/
- Main PID: 541 (keep-balance)
-   CGroup: /system.slice/keep-balance.service
-           └─541 /usr/bin/keep-balance -commit-pulls -commit-trash
-
-Feb 14 18:46:01 zzzzz.arvadosapi.com keep-balance[541]: 2017/02/14 18:46:01 starting up: will scan every 10m0s and on SIGUSR1
-Feb 14 18:56:01 zzzzz.arvadosapi.com keep-balance[541]: 2017/02/14 18:56:01 Run: start
-Feb 14 18:56:01 zzzzz.arvadosapi.com keep-balance[541]: 2017/02/14 18:56:01 skipping zzzzz-bi6l4-rbtrws2jxul6i4t with service type "proxy"
-Feb 14 18:56:01 zzzzz.arvadosapi.com keep-balance[541]: 2017/02/14 18:56:01 clearing existing trash lists, in case the new rendezvous order differs from previous run
-
-
+{% assign arvados_component = 'keep-balance' %} -h3(#runit). Start the service (option 2: runit) +{% include 'install_packages' %} -Install runit to supervise the keep-balance daemon. {% include 'install_runit' %} - -Create a supervised service. - - -
~$ sudo mkdir /etc/service/keep-balance
-~$ cd /etc/service/keep-balance
-~$ sudo mkdir log log/main
-~$ printf '#!/bin/sh\nexec keep-balance -commit-pulls -commit-trash 2>&1\n' | sudo tee run
-~$ printf '#!/bin/sh\nexec svlogd main\n' | sudo tee log/run
-~$ sudo chmod +x run log/run
-~$ sudo sv exit .
-~$ cd -
-
-
- -Use @sv stat@ and check the log file to verify the service is running. - - -
~$ sudo sv stat /etc/service/keep-balance
-run: /etc/service/keep-balance: (pid 12520) 2s; run: log: (pid 12519) 2s
-~$ tail /etc/service/keep-balance/log/main/current
-2017/02/14 18:46:01 starting up: will scan every 10m0s and on SIGUSR1
-2017/02/14 18:56:01 Run: start
-2017/02/14 18:56:01 skipping zzzzz-bi6l4-rbtrws2jxul6i4t with service type "proxy"
-2017/02/14 18:56:01 clearing existing trash lists, in case the new rendezvous order differs from previous run
-
-
- -h2. Enable delete operations on keepstore volumes - -Ensure your keepstore services have the "delete" operation enabled. Otherwise, even when unneeded data is identified by keep-balance, it will never be deleted from the underlying storage devices. - -Either use the @EnableDelete@ flag in your YAML configuration file @/etc/arvados/keepstore/keepstore.yml@: - - -
...
-BlobSigningKeyFile: /etc/keepstore/blob-signing.key
-EnableDelete: true
-Listen: :25107
-...
-
-
- -Or use the @-never-delete=false@ command line flag in your run script: - - -
keepstore -never-delete=false -volume=...
-
-
+{% include 'start_service' %}