~aisrael/charms/precise/cassandra/apt-gpg-key

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Mark Mims
  • Date: 2013-07-14 19:26:59 UTC
  • mfrom: (24.1.1 cassandra)
  • Revision ID: mark.mims@canonical.com-20130714192659-sk9w6ximj8wo89ih
merging lp:~ev/charms/precise/cassandra/webops as per https://code.launchpad.net/~ev/charms/precise/cassandra/webops/+merge/174390

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
options:
2
 
  jmx-port:
3
 
    type: int
4
 
    default: 7199
5
 
    description: JMX management port
6
 
  cluster-port:
7
 
    type: int
8
 
    default: 7000
9
 
    description: Port to support cluster communication
10
 
  client-port:
11
 
    type: int
12
 
    default: 9160
13
 
    description: Port for client communcation
14
 
  cluster-name:
15
 
    type: string
16
 
    default: "Test Cluster"
17
 
    description: Name of the Cassandra Cluster - don't change yet!
18
 
  auto-memory:
19
 
    type: boolean
20
 
    default: true
21
 
    description: Automatically configure memory options based on
22
 
      specification of the server infrastructure its running on.
23
 
  heap-size:
24
 
    type: string
25
 
    default: 1G
26
 
    description: Total size of Java memory heap, for example 1G or 512M.
27
 
      Only used if auto-memory = false.
28
 
  new-gen-size:
29
 
    type: string
30
 
    default: 100M
31
 
    description: Size of Java new generation memory, for example 100M.
32
 
      Only used if auto-memory = false.