-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
111 lines (109 loc) · 3.33 KB
/
plugin.json
File metadata and controls
111 lines (109 loc) · 3.33 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"id": "geocoder",
"version": "1.3.1",
"meta": {
"label": "Geocoder",
"description": "Perform geocoding and reverse geocoding. Supports over 25 geocoding service providers, along with caching and batch options.",
"author": "Dataiku (Thomas Labadie, Thibault Desfontaines)",
"icon": "icon-globe",
"licenseInfo": "Apache Software License",
"url": "https://www.dataiku.com/dss/plugins/info/geocoder.html",
"tags": ["Geospatial", "Enrichment"]
},
"params": [
{
"name": "cache_location",
"type": "SELECT",
"label": "Cache location",
"description": "The current user is either the one running the recipe (UIF installs ) or the one running DSS (non-UIF installs)",
"selectChoices": [
{
"value": "original",
"label": "Current User Home"
},
{
"value": "custom",
"label": "Custom"
}
],
"defaultValue": "original"
},
{
"name": "cache_location_custom",
"type": "STRING",
"label": "Custom cache location",
"description": "Absolute path",
"visibilityCondition": "model.cache_location == 'custom'"
},
{
"name": "sep_fw",
"type": "SEPARATOR",
"label": "Forward Geocoding Cache"
},
{
"name": "forward_cache_size",
"type": "INT",
"label": "Cache size",
"description": "in megabytes",
"defaultValue": 1000
},
{
"name": "forward_cache_policy",
"label": "Eviction policy",
"type": "SELECT",
"selectChoices": [
{
"value": "least-recently-stored",
"label": "Least Recently Stored"
},
{
"value": "least-recently-used",
"label": "Least Recently Used"
},
{
"value": "least-frequently-used",
"label": "Least Frequently Used"
},
{
"value": "none",
"label": "None"
}],
"defaultValue": "least-recently-stored"
},
{
"name": "sep_rv",
"type": "SEPARATOR",
"label": "Reverse Geocoding Cache"
},
{
"name": "reverse_cache_size",
"type": "INT",
"label": "Cache size",
"description": "in megabytes",
"defaultValue": 1000
},
{
"name": "reverse_cache_policy",
"label": "Eviction policy",
"type": "SELECT",
"selectChoices": [
{
"value": "least-recently-stored",
"label": "Least Recently Stored"
},
{
"value": "least-recently-used",
"label": "Least Recently Used"
},
{
"value": "least-frequently-used",
"label": "Least Frequently Used"
},
{
"value": "none",
"label": "None"
}],
"defaultValue": "least-recently-stored"
}
]
}