vnium
March 28, 2021, 11:13pm
1
I have a few questions regarding exporting a Dgraph database via the GraphQL endpoint.
Is querying and mutating while exporting supported?
If data is mutated while the export process is still running, will these changes be included in the export?
Are multiple concurrent exports supported?
Can an export process be cancelled? Will this also clean up export files?
What is the impact of the chosen file format (rdf, json)? Which is file format is faster to export/import, which uses less space?
MichelDiz
(Michel Diz)
March 28, 2021, 11:37pm
2
There’s no way to cancel as far as I know.
Nope.
In which sense? The only impact is the syntax difference.
We haven’t checked this. But pretty sure RDF is the fastest one to export.
The other questions I invoke @dmai
Cheers.
1 Like
vnium
April 8, 2021, 7:54am
3
vnium:
Is querying and mutating while exporting supported?
If data is mutated while the export process is still running, will these changes be included in the export?
@dmai any information to these two questions?
dmai
(Daniel Mai)
April 8, 2021, 4:11pm
4
Exports can run in a live cluster with queries and mutations running too. The export happens at a snapshot of the data, so any new mutations that are committed after an export request won’t be part of the export.
1 Like