-
Notifications
You must be signed in to change notification settings - Fork 17
VWRs edits #1193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
maryann-macrometa
wants to merge
14
commits into
main
Choose a base branch
from
prerendering-edits
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
VWRs edits #1193
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
15485a2
edited the eds docs
maryann-macrometa 2f0b0ed
restructures-vwrs
maryann-macrometa 124ad66
Update docs/photoniq/vwrs/05-monitoring-vwrs/retrieve-metrics.md
maryann-macrometa 0ff9f25
Update docs/photoniq/vwrs/01-how-vwrs-works.md
maryann-macrometa bc4ee4c
Update docs/photoniq/vwrs/01-how-vwrs-works.md
maryann-macrometa 71496cf
Update docs/photoniq/vwrs/05-monitoring-vwrs/retrieve-metrics.md
maryann-macrometa 19d61a8
Update 01-how-vwrs-works.md
maryann-macrometa 62f0125
Update 01-how-vwrs-works.md
maryann-macrometa 03ccd91
Update docs/photoniq/vwrs/03-configuration-and-setup/02-configure-wai…
maryann-macrometa feb2553
Update docs/photoniq/vwrs/03-configuration-and-setup/02-configure-wai…
maryann-macrometa 963aa19
Update 04-customizing-vwrs.md
maryann-macrometa c4c3245
Update index.md
maryann-macrometa b322a2d
Update 04-queue-types.md
maryann-macrometa 4389aa5
Update docs/photoniq/vwrs/05-monitoring-vwrs/index.md
maryann-macrometa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Empty file.
This file contains hidden or 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 hidden or 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
48 changes: 0 additions & 48 deletions
48
docs/photoniq/event-delivery/get-started-event-delivery.md
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
File renamed without changes.
9 changes: 9 additions & 0 deletions
9
docs/photoniq/event-delivery/managing-event-delivery-instances/index.md
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| title: Managing Event Delivery Instances | ||
| --- | ||
|
|
||
| To optimize the performance of your event delivery service, PhotonIQ offers different ways to manage the behaviour of your EDS instances. These methods include: | ||
|
|
||
| - **Query, Set and Batch**: A layer that helps you batch and run a group of queries together, instead of running each individually, thus improving efficiency. | ||
| - **Connection**: An instance with numerous methods that helps you connect, retrieve and configure connection details, and disconnect your WebSocket/SSE connection. | ||
| - **Listeners and Error Handling**: These are grouped into global, query, result, and error listeners and helps handles events. |
File renamed without changes.
File renamed without changes.
50 changes: 50 additions & 0 deletions
50
...oniq/event-delivery/quickstart-event-delivery/01-setup-event-delivery-stream.md
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| --- | ||
| title: Setting Up Event Stream in GDN | ||
| --- | ||
|
|
||
| The Event Delivery service allows you to stream and filter events from Macrometa streams and also publish events to these streams. | ||
| Some important concepts to know: | ||
| - **Publisher**: An application or service that continuously generates data for consumption by a subscriber. Collections in the Macrometa GDN act as publishers in the Event Delivery Service (EDS) | ||
| - **Subscriber**: Subscribes to events from the publisher. Subscribers can use SQL-queries to subscribe to specific events, thus reducing noise and focusing on the necessary data. | ||
| - **Stream**: A named channel for sending messages. The GDN backs every stream in the GDN with a distributed append-only log and can be local (at one edge location only) or global (across all edge locations in the [fabric](../../../geofabrics/)). | ||
| - **Event**: Every new data point/message generated by the publisher. | ||
|
|
||
| Let's set up our first stream in a GDN. | ||
|
|
||
| ## Prerequisites | ||
| - A [Macrometa account](https://auth-play.macrometa.io/) with sufficient permissions to create connections. Contact a Macrometa partner to sign up or [sign up](https://www.macrometa.com/sign-up) on your own. With a Macrometa account set up, you can decide what kind of collection to stream your data into. | ||
| The PhotonIQ GDN allows you to create: | ||
| - [Document Collection](../../collections/documents/) - Accepts any document type. | ||
| - [Key-Value Collection](../../collections/keyvalue/) - Accepts key-value pairs, can be set up to include blobs. | ||
|
|
||
| :::tip | ||
|
|
||
| Consult with Macrometa Partners to help decide the best type for your business use case. | ||
|
|
||
| ::: | ||
| - An application to receive event delivery streams. | ||
| - Plan your filters. Filters are set up by adding queries to event subscriptions. | ||
|
|
||
|
|
||
| ## Set Up Your Stream in the GDN | ||
| 1. (Optional) [Create a fabric](../../../geofabrics/create-geofabric.md) for your collection. A fabric allows you to decide exactly where your data lives. Skipping this step means the collection will reside in the system fabric. | ||
| 1. Create a collection to receive streaming data. | ||
|
|
||
|  | ||
|
|
||
| :::important | ||
|
|
||
| Make sure to enable streams when you [create a collection](https://www.macrometa.com/docs/collections/). | ||
|
|
||
| ::: | ||
|
|
||
| 3. Navigate to [collection settings](https://www.macrometa.com/docs/collections/view-collection-settings) to view and access information about your collection. | ||
|
|
||
|  | ||
|
|
||
| Your collection settings provides useful information like: | ||
| - **Resource URL** - The endpoint sending data to your collection. All messages sent here are both stored and transmitted to the stream. | ||
| - **Stream Name** - Name of our data stream. | ||
| - **Fabric Name** - Name of our fabric. | ||
| In the screenshot above, the fabric name is **_system**. | ||
|
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.