Hello All,
We are using ArcGIS GeoEvent manager 10.3.1 which gets input from GeoTab and collects data via feature service and store in SDE feature class. This is not versioned database. DBA folks alerting us particular delete record session takes more resource and results in LOCK.
SQL: DELETE FROM DATA.VEHICLES WHERE OBJECTID = 7155 consumes more resource in the database.
Please let me know if any one facing similar issue or any clue for this.
Hello S R -
Based on my experience working with external RDBMS like Oracle (which is limited), I don't think the issue you are encountering is GeoEvent specific. However, here is some advice I received from one of the database administrators in Esri Professional Services.
1. To specifically address the message you quote below ... connect to the database as a data_editor, then delete the records from DATA.VEHICLES. You may find that you have to have your database administrator release locks on the data (refer to following bullet).
2. Never use a data owner or administrative connection to publish feature services
What happens is that clients using the published feature service end up inheriting the publisher's privileges. So publishing as a data owner means that a client (e.g. GeoEvent) which interacts with the feature service to add features, update features, or delete features has the potential to acquire a full-table lock.
When another client tries to access the data, through the same feature service, they also make their attempt as a data_owner, potentially acquiring a full-table lock. This can produce a deadlock situation where two data owners each have locks on the table, and end up locking each other out.
3. You may find that the table's indexes have become fragmented. You may need to have your database administrator gather new statistics, reorganize the tables, and rebuild table indexes.
Hope this information helps -
RJ
S R
Hello,
I am looking for a way to bring in Geotab information as a layer in ArcGIS Online / Portal. Apparently, I do not see any other posts related to Geotab in Geonet. It will be great if you can point me in the right direction. I am thinking, setting up a streaming service to geotab in Geoevent processor is the way to go. However, I would much appreciate any information in regards to this.