ArangoDB v3.10 reached End of Life (EOL) and is no longer supported.
This documentation is outdated. Please see the most recent stable version.
Example Datasets for ArangoSearch
Datasets you may use for experimenting with ArangoSearch features
IMDB Movie Dataset
This is a movies and actors dataset based on data of the Internet Movie Database (IMDB). It was converted into a graph. Also see the arangodb/example-datasets repository.
- Download imdb_graph_dump_rev2.zip (6.45 MB)
- Unpack the downloaded archive
- Restore the folder
dump
with arangorestore into an ArangoDB instance, e.g.arangorestore --server.endpoint tcp://localhost:8529 --server.database IMDB --create-database --include-system-collections --input-directory dump
- Create a View called
imdb
in the IMDB database. You can find various View configuration examples in this chapter.
Demo Geo S2 Dataset
This is a New York restaurants and neighborhoods dataset taken from OpenData.city. Also see the arangodb-foxx/demo-geo-s2 repository.
- Download dump.zip (2.2 MB)
- Unpack the downloaded archive
- Restore the folder
demo-geo-s2-dump
with arangorestore into an ArangoDB instance, e.g.arangorestore --server.endpoint tcp://localhost:8529 --server.database GeoS2 --create-database --input-directory demo-geo-s2-dump
- Create a View called
restaurantsView
in theGeoS2
database. You can find various View configuration examples in Geospatial Search with ArangoSearch.