Configuring DataStax Agents for Multi-Instance Nodes

Configure DataStax Agents for Multi-Instance (dense) Nodes.

Configure DataStax Agents for DSE Multi-Instance (dense) Nodes.

address.yaml

The location of the address.yaml file depends on the type of installation:
  • Package installations: /var/lib/datastax-agent/conf/address.yaml
  • Tarball installations: install_location/conf/address.yaml

Prerequisites

Multi-Instance requirements for DataStax Agents:

  • DSE Multi-Instance requires one DataStax Agent process running for each DSE instance on a machine.
  • DataStax Agents require a manual tarball installation for Multi-Instance.
  • DataStax Agents require manual configuration in address.yaml as outlined in this procedure for Multi-Instance.

Procedure

  1. Open address.yaml for editing.
  2. Set the following backup options for each DataStax Agent:
    tmp_dir
    The directory used to temporarily stage files when restoring. The default location is /var/lib/datastax-agent/tmp. Example: tmp_dir: /var/lib/datastax-agent/tmp/
    backup_staging_dir
    The directory where commitlogs are copied after they are written to disk from DSE. The DataStax Agents monitor this directory and move commitlogs to the configured destinations. After all destinations receive the relevant commit logs, the logs are moved to the backup_storage_dir.The default location is /var/lib/datastax-agent/commitlogs/. Example: backup_staging_dir: /var/lib/datastax-agent/commitlogs/
  3. Configure the following option so that the opscenterd (OpsCenter daemon) can send requests to the DataStax Agent:
    agent_rpc_interface
    The IP that the agent HTTP server listens on. In a multiple region deployment, this is typically a private IP. Default: Matches rpc_interface (native_transport_interface) from cassandra.yaml. Example: agent_rpc_interface: 172.10.0.2
    Note: The agent_rpc_interface must be unique for each agent.
  4. Configure the following option to connect to a Cassandra instance over JMX. The JMX port must always be configured for DSE Multi-Instance.
    jmx_port
    Port used to connect to local JMX server. The default setting is 7199. This information will be sent by opscenterd for convenience, but can be configured locally as needed. Example: jmx_port: 7199
    Note: The JMX port must be unique for each instance of DSE.
  5. Depending on the configuration of your environment, configure the following option for connecting to OpsCenter:
    stomp_interface
    Reachable IP address of the opscenterd machine. The connection made will be on stomp_port. Example: stomp_interface: 127.0.0.1
  6. Restart the DataStax Agents.