-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmetadata.rb
82 lines (61 loc) · 2.73 KB
/
metadata.rb
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
70
71
72
73
74
75
76
77
78
79
80
name "flyingduck"
maintainer "Logical Clocks"
maintainer_email 'info@logicalclocks.com'
license 'GPLv3'
description 'Installs/Configures the Hopsworks online feature store service'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "4.0.0"
recipe "flyingduck::default", "Configures the Hopsworks online feature store service"
depends 'ndb'
depends 'hops'
depends 'hadoop_spark'
depends 'kagent'
depends 'consul'
attribute "flyingduck/user",
:description => "Unix user to store flyingduck data",
:type => "string"
attribute "flyingduck/user_id",
:description => "flyingduck user id",
:type => "string"
attribute "flyingduck/group",
:description => "Group of the user running the online feature store service",
:type => "string"
attribute "flyingduck/group_id",
:description => "flyingduck group id",
:type => "string"
attribute "flyingduck/monitoring",
:description => "Port on which the monitoring page is available",
:type => "string"
attribute "flyingduck/port",
:description => "Port on which AFS listens. Default: 5005",
:type => "string"
attribute "flyingduck/download_url",
:description => "Download url for the flyingduck.tgz binaries",
:type => "string"
attribute "flyingduck/memory_gbs",
:description => "Upper Memory limit for FlyingDuck service.",
:type => "string"
attribute "flyingduck/cpus",
:description => "Number of CPUs the FlyingDuck service can use.",
:type => "string"
attribute "flyingduck/request_timeout_sec",
:description => "Client will wait for this timeout in seconds for requests, after which an exception is thrown if no response.",
:type => "string"
attribute "flyingduck/batch_size",
:description => "Size of batches retrieved from Parquet files. Higher is higher throughput, but also higher latency",
:type => "string"
attribute "flyingduck/data_volume/root_dir",
:description => "Path to store data. Defaults to /srv/hops/hopsworks-data/flyingduck",
:type => "string"
attribute "flyingduck/data_volume/etc_dir",
:description => "Path to store config files. Defaults to flyingduck/etc",
:type => "string"
attribute "flyingduck/data_volume/logs_dir",
:description => "Path to store config files. Defaults to flyingduck/logs",
:type => "string"
attribute "flyingduck/hopsworks/email",
:description => "Email address",
:type => "string"
attribute "flyingduck/hopsworks/password",
:description => "Password for email address",
:type => "string"