<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic GeoEvent Notifications/Verification in ArcGIS GeoEvent Server Questions</title>
    <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/geoevent-notifications-verification/m-p/1041101#M3494</link>
    <description>&lt;P&gt;I am looking to develop a web application that utility customers will use. They will enter their location/postcode to search for coverage of something e.g. do I get water in this area or do I get signal here etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data reloads every 15m to daily depending on the feed.&lt;/P&gt;&lt;P&gt;I am wondering if it possible to use GeoEvent output connectors to send an SMS/email to customers if there was expected maintenance coming up e.g. in the next 3 days and/or unexpected issues e.g. sorry this service has gone down, we expect to have it up and running again by X&lt;/P&gt;&lt;P&gt;Many thanks!&lt;/P&gt;</description>
    <pubDate>Fri, 26 Mar 2021 16:25:05 GMT</pubDate>
    <dc:creator>LndsWgs</dc:creator>
    <dc:date>2021-03-26T16:25:05Z</dc:date>
    <item>
      <title>GeoEvent Notifications/Verification</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/geoevent-notifications-verification/m-p/1041101#M3494</link>
      <description>&lt;P&gt;I am looking to develop a web application that utility customers will use. They will enter their location/postcode to search for coverage of something e.g. do I get water in this area or do I get signal here etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data reloads every 15m to daily depending on the feed.&lt;/P&gt;&lt;P&gt;I am wondering if it possible to use GeoEvent output connectors to send an SMS/email to customers if there was expected maintenance coming up e.g. in the next 3 days and/or unexpected issues e.g. sorry this service has gone down, we expect to have it up and running again by X&lt;/P&gt;&lt;P&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 16:25:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/geoevent-notifications-verification/m-p/1041101#M3494</guid>
      <dc:creator>LndsWgs</dc:creator>
      <dc:date>2021-03-26T16:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: GeoEvent Notifications/Verification</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/geoevent-notifications-verification/m-p/1053446#M3525</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/468094"&gt;@LndsWgs&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you are wanting to do could be done in GeoEvent, but there would ba a few things to watch out for:&lt;/P&gt;&lt;P&gt;1. Unless the service area is pretty small (like a small city) the number of geofences you are likely to encounter may grow too large for GeoEvent to keep them in memory.&lt;/P&gt;&lt;P&gt;2. Managing and using the large number of emails you are likely to encounter may become troublesome.&lt;/P&gt;&lt;H3&gt;Option 1: Leverage a RDBMS&lt;/H3&gt;&lt;P&gt;If I was to implement something like this (sorry i'm going to make a lot of assumptions here) I would shoot for a solution that looked like the following blog post:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-geoevent-server-blog/geoevent-tracking-asset-s-active-inactive-status/ba-p/902116" target="_blank"&gt;https://community.esri.com/t5/arcgis-geoevent-server-blog/geoevent-tracking-asset-s-active-inactive-status/ba-p/902116&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I would use GeoEvent to keep track/update all the service areas, outages, etc writing them to Feature Class(es) in the RDBMS. I would then use SQL to do a spatial join all of those areas with the customers. In theory this would result in a table where each record had a cutomer's details and the outage details that is affecting them.&amp;nbsp; You could then use GeoEvent to read in each of these records and send an email to each user with details about the outage/coverage.&amp;nbsp; Once the email is sent, you will probably want to write a flag back out to the database indicating that customer and/or outage/coverage has already been contacted (that would then omit that record from the original view).&lt;/P&gt;&lt;P&gt;The downside to that approach is it may result in a very large 'slug' of events in GeoEvent.&amp;nbsp; If each outage or coverage is affecting a very large number of customers, you might consider consolidating the records in the orginal view into a single record for each outage/coverage and concatenating the emails into a single field. Obviously this will run into field size limitations and pagination may be needed (like using cartographic partitions to create zones with no more than 100 customers).&lt;/P&gt;&lt;H3&gt;Option 2 - Traditional GeoEvent&lt;/H3&gt;&lt;P&gt;Another option for implementing this would be to use the Customer points as the GeoFences (CUSTOMER/OBJECTID). As each new outage/coverage is updated through GeoEvent, you could GeoTag with the Customer GeoFences, use a Field Splitter to separate into individual events, a field enricher to get each customer's email address, then send each individual email.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This approach has a few limitations. First you are going to be limited to how many customer points you can load into memory (the maximum is somewhere around 70,000 points on a 20GB RAM machine). Second, using the Field Enricher will slow your GeoEvent Service down to approximately 10 events/second.&amp;nbsp; If an outage results in a large amount of customers being affected, you may run into latency within GeoEvent and it may not be able to keep up.&amp;nbsp; Assuming updates no faster than every 15 minutes, this threshold sits somewhere around 9,000 affected customers (15*60*10).&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 21:19:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/geoevent-notifications-verification/m-p/1053446#M3525</guid>
      <dc:creator>EricIronside</dc:creator>
      <dc:date>2021-04-30T21:19:26Z</dc:date>
    </item>
  </channel>
</rss>

