-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split cache / origin into separate collections
- Loading branch information
1 parent
e51f4de
commit 697c956
Showing
8 changed files
with
88 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,10 +53,10 @@ metadata: | |
role: pointOfContact | ||
|
||
resources: | ||
wis2-notification-messages: | ||
wis2-notification-messages-origin: | ||
type: collection | ||
title: WIS2 notification messages | ||
description: WIS2 notification messages | ||
title: WIS2 notification messages (origin) | ||
description: WIS2 notification messages from origin/a/wis2 | ||
keywords: [wmo, wis2, notifications] | ||
crs: | ||
- CRS84 | ||
|
@@ -96,6 +96,52 @@ resources: | |
providers: | ||
- type: feature | ||
name: ${WIS2_GREP_BACKEND_TYPE} | ||
data: ${WIS2_GREP_BACKEND_CONNECTION} | ||
data: ${WIS2_GREP_BACKEND_CONNECTION}/wis2-notification-messages-origin | ||
id_field: id | ||
time_field: pubtime | ||
wis2-notification-messages-cache: | ||
type: collection | ||
title: WIS2 notification messages (cache) | ||
description: WIS2 notification messages from cache/a/wis2 | ||
keywords: [wmo, wis2, notifications] | ||
crs: | ||
- CRS84 | ||
links: | ||
- type: application/geo+json | ||
rel: items | ||
title: Notifications from Météo-France, Global Broker Service | ||
href: mqtts://everyone:[email protected]:8883 | ||
channel: 'cache/a/wis2/#' | ||
length: -1 | ||
- type: application/geo+json | ||
rel: items | ||
title: Notifications from China Meteorological Agency, Global Broker Service | ||
href: mqtts://everyone:[email protected]:8883 | ||
channel: 'cache/a/wis2/#' | ||
length: -1 | ||
- type: application/geo+json | ||
rel: items | ||
title: Notifications from National Oceanic and Atmospheric Administration, National Weather Service, Global Broker Service | ||
href: mqtts://everyone:[email protected]:8883 | ||
channel: 'cache/a/wis2/#' | ||
length: -1 | ||
- type: application/geo+json | ||
rel: items | ||
title: Notifications from Instituto Nacional de Meteorologia (Brazil), Global Broker Service | ||
href: mqtts://everyone:[email protected]:8883 | ||
channel: 'cache/a/wis2/#' | ||
length: -1 | ||
- type: text/html | ||
rel: canonical | ||
title: WMO Information System (WIS) | World Meteorological Organization | ||
href: https://community.wmo.int/en/activity-areas/wis | ||
extents: | ||
spatial: | ||
bbox: [-180, -90, 180, 90] | ||
crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 | ||
providers: | ||
- type: feature | ||
name: ${WIS2_GREP_BACKEND_TYPE} | ||
data: ${WIS2_GREP_BACKEND_CONNECTION}/wis2-notification-messages-cache | ||
id_field: id | ||
time_field: pubtime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ export WIS2_GREP_LOGGING_LEVEL=DEBUG | |
export WIS2_GREP_API_URL=http://localhost | ||
export WIS2_GREP_API_URL_DOCKER=http://wis2-grep-api | ||
export WIS2_GREP_BACKEND_TYPE=Elasticsearch | ||
export WIS2_GREP_BACKEND_CONNECTION=http://wis2-grep-backend:9200/wis2-notification-messages | ||
export WIS2_GREP_BACKEND_CONNECTION=http://wis2-grep-backend:9200/ | ||
export WIS2_GREP_CENTRE_ID=ca-eccc-msc-global-replay | ||
#export WIS2_GREP_GB=mqtts://everyone:[email protected]:8883 | ||
export WIS2_GREP_GB=mqtts://everyone:[email protected]:8883 |