-
Notifications
You must be signed in to change notification settings - Fork 5
/
config
69 lines (57 loc) · 1.77 KB
/
config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
######################################
## QuantCluster Configuration File
## Same format as StarCluster config,
## just adds new features.
######################################
# Enter your Amazon AWS credentials here.
[aws info]
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_USER_ID=
AWS_REGION_NAME=us-east-1
[key qc-key]
KEY_LOCATION=~/.ssh/mykey.pem
[global]
DEFAULT_TEMPLATE=default
REFRESH_INTERVAL=5
# Customized ami-6b211202 us-east-1 starcluster-base-ubuntu-13.04-x86_64-hvm (HVM-EBS)
[cluster default]
KEYNAME = qc-key
CLUSTER_SIZE = 1
CLUSTER_USER = sgeadmin
CLUSTER_SHELL = bash
NODE_IMAGE_ID = ami-f0856498
NODE_INSTANCE_TYPE = m3.xlarge
# Standard ami-6b211202 us-east-1 starcluster-base-ubuntu-13.04-x86_64-hvm (HVM-EBS)
[cluster imagehost]
KEYNAME = qc-key
CLUSTER_SIZE = 1
CLUSTER_USER = sgeadmin
CLUSTER_SHELL = bash
NODE_IMAGE_ID = ami-6b211202
NODE_INSTANCE_TYPE = m3.xlarge
PLUGINS = qc, ipcluster, hadoop, hive, hbase
# Plugin for installing packages via apt-get, pip, and git
[plugin qc]
SETUP_CLASS = quantcluster.plugins.quant_cluster.QuantCluster
APT_PKGS = libpq-dev, postgresql, postgresql-client
# ipython[all]
PIP_PKGS = six, simplejson, south, django_extensions, zipline
GIT_PKGS = quantcluster/pulley
INSTALL_DIR = /opt
INSTALL_TWS = False
[plugin hadoop]
SETUP_CLASS = quantcluster.plugins.hadoop.Hadoop
[plugin hive]
SETUP_CLASS = quantcluster.plugins.hive.Hive
[plugin hbase]
SETUP_CLASS = quantcluster.plugins.hbase.Hbase
[plugin ipcluster]
SETUP_CLASS = starcluster.plugins.ipcluster.IPCluster
ENABLE_NOTEBOOK = True
NOTEBOOK_DIRECTORY = /home/sgeadmin/notebooks
NOTEBOOK_PASSWD =
[plugin ipcluster_stop]
SETUP_CLASS = starcluster.plugins.ipcluster.IPClusterStop
[plugin ipcluster_restart]
SETUP_CLASS = starcluster.plugins.ipcluster.IPClusterRestartEngines