ArcGIS GeoAnalytics Server tasks that have the data
property in their context
parameter save results to the
specified data store. By default, results are stored in the spatiotemporal data store. It is recommended that you store
results in the spatiotemporal data store due to the scalability of the spatiotemporal big data store.
Data store syntax:
{ "dataStore": < "relational" > | < "spatiotemporal" > | < "/bigDataFileShares/<big data file share name>:<output template name>" >}
You have the following options for storing results:
- In the ArcGIS Data Store
relational
data store. - In the ArcGIS Data Store
spatiotemporal
big data store. - In a big data file share in the format
/big
. For example, if you have a big data file share namedData File Shares/ <big data file share name >:<output template name > City
with an output template calledData parquet
, you can store it using_template /big
. See Get started with big data file shares for more information.Datafile Shares/ City Data :parquet _template
Data store example (relational data store)
{"dataStore": "relational"}
Data store example (big data file share named myData, and template named shp_output)
{"dataStore": "/bigDatafileShares/myData:shp_output"}
Extent, processSR, datastore, and outSR example:
"context" : {
"extent": {
"xmin": -122.68,
"ymin": 45.53,
"xmax": -122.45,
"ymax": 45.6,
"spatialReference": {
"wkid": 4326
}
},
"processSR" : {"wkid" : 3857},
"dataStore" : "relational",
"outSR" : {"wkid" : 4326}
}