|
1 | 1 | { |
2 | | - "id": "geocoder", |
3 | | - "version": "1.4.0", |
4 | | - |
5 | | - "meta": { |
6 | | - "label": "Geocoder", |
7 | | - "description": "Perform geocoding and reverse geocoding. Supports over 25 geocoding service providers, along with caching and batch options.", |
8 | | - "author": "Dataiku (Thomas Labadie, Thibault Desfontaines)", |
9 | | - "icon": "icon-globe", |
10 | | - "licenseInfo": "Apache Software License", |
11 | | - "url": "https://www.dataiku.com/dss/plugins/info/geocoder.html", |
12 | | - "tags": ["Geospatial", "Enrichment"] |
13 | | - }, |
14 | | - |
15 | | - "params": [ |
| 2 | + "id": "geocoder", |
| 3 | + "version": "1.5.0", |
| 4 | + "meta": { |
| 5 | + "label": "Geocoder", |
| 6 | + "description": "Perform geocoding and reverse geocoding. Supports over 25 geocoding service providers, along with caching and batch options.", |
| 7 | + "author": "Dataiku (Thomas Labadie, Thibault Desfontaines)", |
| 8 | + "icon": "icon-globe", |
| 9 | + "licenseInfo": "Apache Software License", |
| 10 | + "url": "https://www.dataiku.com/dss/plugins/info/geocoder.html", |
| 11 | + "tags": [ |
| 12 | + "Geospatial", |
| 13 | + "Enrichment" |
| 14 | + ] |
| 15 | + }, |
| 16 | + "params": [ |
| 17 | + { |
| 18 | + "name": "cache_location", |
| 19 | + "type": "SELECT", |
| 20 | + "label": "Cache location", |
| 21 | + "description": "The current user is either the one running the recipe (UIF installs ) or the one running DSS (non-UIF installs)", |
| 22 | + "selectChoices": [ |
16 | 23 | { |
17 | | - "name": "cache_location", |
18 | | - "type": "SELECT", |
19 | | - "label": "Cache location", |
20 | | - "description": "The current user is either the one running the recipe (UIF installs ) or the one running DSS (non-UIF installs)", |
21 | | - "selectChoices": [ |
22 | | - { |
23 | | - "value": "original", |
24 | | - "label": "Current User Home" |
25 | | - }, |
26 | | - { |
27 | | - "value": "custom", |
28 | | - "label": "Custom" |
29 | | - } |
30 | | - ], |
31 | | - "defaultValue": "original" |
| 24 | + "value": "original", |
| 25 | + "label": "Current User Home" |
32 | 26 | }, |
33 | 27 | { |
34 | | - "name": "cache_location_custom", |
35 | | - "type": "STRING", |
36 | | - "label": "Custom cache location", |
37 | | - "description": "Absolute path", |
38 | | - "visibilityCondition": "model.cache_location == 'custom'" |
| 28 | + "value": "custom", |
| 29 | + "label": "Custom" |
| 30 | + } |
| 31 | + ], |
| 32 | + "defaultValue": "original" |
| 33 | + }, |
| 34 | + { |
| 35 | + "name": "cache_location_custom", |
| 36 | + "type": "STRING", |
| 37 | + "label": "Custom cache location", |
| 38 | + "description": "Absolute path", |
| 39 | + "visibilityCondition": "model.cache_location == 'custom'" |
| 40 | + }, |
| 41 | + { |
| 42 | + "name": "sep_fw", |
| 43 | + "type": "SEPARATOR", |
| 44 | + "label": "Forward Geocoding Cache" |
| 45 | + }, |
| 46 | + { |
| 47 | + "name": "forward_cache_size", |
| 48 | + "type": "INT", |
| 49 | + "label": "Cache size", |
| 50 | + "description": "in megabytes", |
| 51 | + "defaultValue": 1000 |
| 52 | + }, |
| 53 | + { |
| 54 | + "name": "forward_cache_policy", |
| 55 | + "label": "Eviction policy", |
| 56 | + "type": "SELECT", |
| 57 | + "selectChoices": [ |
| 58 | + { |
| 59 | + "value": "least-recently-stored", |
| 60 | + "label": "Least Recently Stored" |
39 | 61 | }, |
40 | 62 | { |
41 | | - "name": "sep_fw", |
42 | | - "type": "SEPARATOR", |
43 | | - "label": "Forward Geocoding Cache" |
| 63 | + "value": "least-recently-used", |
| 64 | + "label": "Least Recently Used" |
44 | 65 | }, |
45 | 66 | { |
46 | | - "name": "forward_cache_size", |
47 | | - "type": "INT", |
48 | | - "label": "Cache size", |
49 | | - "description": "in megabytes", |
50 | | - "defaultValue": 1000 |
| 67 | + "value": "least-frequently-used", |
| 68 | + "label": "Least Frequently Used" |
51 | 69 | }, |
52 | 70 | { |
53 | | - "name": "forward_cache_policy", |
54 | | - "label": "Eviction policy", |
55 | | - "type": "SELECT", |
56 | | - "selectChoices": [ |
57 | | - { |
58 | | - "value": "least-recently-stored", |
59 | | - "label": "Least Recently Stored" |
60 | | - }, |
61 | | - { |
62 | | - "value": "least-recently-used", |
63 | | - "label": "Least Recently Used" |
64 | | - }, |
65 | | - { |
66 | | - "value": "least-frequently-used", |
67 | | - "label": "Least Frequently Used" |
68 | | - }, |
69 | | - { |
70 | | - "value": "none", |
71 | | - "label": "None" |
72 | | - }], |
73 | | - "defaultValue": "least-recently-stored" |
| 71 | + "value": "none", |
| 72 | + "label": "None" |
| 73 | + } |
| 74 | + ], |
| 75 | + "defaultValue": "least-recently-stored" |
| 76 | + }, |
| 77 | + { |
| 78 | + "name": "sep_rv", |
| 79 | + "type": "SEPARATOR", |
| 80 | + "label": "Reverse Geocoding Cache" |
| 81 | + }, |
| 82 | + { |
| 83 | + "name": "reverse_cache_size", |
| 84 | + "type": "INT", |
| 85 | + "label": "Cache size", |
| 86 | + "description": "in megabytes", |
| 87 | + "defaultValue": 1000 |
| 88 | + }, |
| 89 | + { |
| 90 | + "name": "reverse_cache_policy", |
| 91 | + "label": "Eviction policy", |
| 92 | + "type": "SELECT", |
| 93 | + "selectChoices": [ |
| 94 | + { |
| 95 | + "value": "least-recently-stored", |
| 96 | + "label": "Least Recently Stored" |
74 | 97 | }, |
75 | 98 | { |
76 | | - "name": "sep_rv", |
77 | | - "type": "SEPARATOR", |
78 | | - "label": "Reverse Geocoding Cache" |
| 99 | + "value": "least-recently-used", |
| 100 | + "label": "Least Recently Used" |
79 | 101 | }, |
80 | 102 | { |
81 | | - "name": "reverse_cache_size", |
82 | | - "type": "INT", |
83 | | - "label": "Cache size", |
84 | | - "description": "in megabytes", |
85 | | - "defaultValue": 1000 |
| 103 | + "value": "least-frequently-used", |
| 104 | + "label": "Least Frequently Used" |
86 | 105 | }, |
87 | 106 | { |
88 | | - "name": "reverse_cache_policy", |
89 | | - "label": "Eviction policy", |
90 | | - "type": "SELECT", |
91 | | - "selectChoices": [ |
92 | | - { |
93 | | - "value": "least-recently-stored", |
94 | | - "label": "Least Recently Stored" |
95 | | - }, |
96 | | - { |
97 | | - "value": "least-recently-used", |
98 | | - "label": "Least Recently Used" |
99 | | - }, |
100 | | - { |
101 | | - "value": "least-frequently-used", |
102 | | - "label": "Least Frequently Used" |
103 | | - }, |
104 | | - { |
105 | | - "value": "none", |
106 | | - "label": "None" |
107 | | - }], |
108 | | - "defaultValue": "least-recently-stored" |
| 107 | + "value": "none", |
| 108 | + "label": "None" |
109 | 109 | } |
110 | | - ] |
| 110 | + ], |
| 111 | + "defaultValue": "least-recently-stored" |
| 112 | + } |
| 113 | + ] |
111 | 114 | } |
0 commit comments