GeoEvent FeatureService Output

446
1
Jump to solution
07-12-2023 09:00 AM
SKW_UK
by
New Contributor III

GeoEvent 11.1

Am trying to output features from geoevent to a featureservice, and have noticed, that only 1 instances is ever used on the server.  is there a way to increase this? 

Geoevent seems to process my events quickly, but writing to the DB is slow, so although i can process 52k records quickly in geoevent (in and out within seconds) the count in the DB takes about 4 minutes until all records reach there.

The feature service only ever has 1 instance being used for that 4 minute duration.

Any help?

Thanks,

Steve

0 Kudos
1 Solution

Accepted Solutions
RViswanadha
Esri Contributor

The GeoEvent output is going to act as a single client making requests to the feature service to add or update feature records. A single client, does not use a feature service's pooling configuration as a scaling mechanism.

Pooling is available so that the feature service can manage requests from multiple clients making concurrent requests.

 

Additional References:

https://community.esri.com/t5/arcgis-geoevent-server-blog/debug-techniques-add-update-feature-output...

View solution in original post

0 Kudos
1 Reply
RViswanadha
Esri Contributor

The GeoEvent output is going to act as a single client making requests to the feature service to add or update feature records. A single client, does not use a feature service's pooling configuration as a scaling mechanism.

Pooling is available so that the feature service can manage requests from multiple clients making concurrent requests.

 

Additional References:

https://community.esri.com/t5/arcgis-geoevent-server-blog/debug-techniques-add-update-feature-output...

0 Kudos