Data store

ArcGIS GeoAnalytics Server tasks that have the dataStore 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:

Use dark colors for code blocksCopy
1
{ "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 /bigDataFileShares/<big data file share name>:<output template name>. For example, if you have a big data file share named CityData with an output template called parquet_template, you can store it using /bigDatafileShares/CityData:parquet_template. See Get started with big data file shares for more information.

Data store example (relational data store)

Use dark colors for code blocksCopy
1
{"dataStore": "relational"}

Data store example (big data file share named myData, and template named shp_output)

Use dark colors for code blocksCopy
1
{"dataStore": "/bigDatafileShares/myData:shp_output"}

Extent, processSR, datastore, and outSR example:

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"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}
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.