For my tests I use the {DropAll: true} alteration with the go client at the beginning of my tests, the I set the schema. Works fine with the tests, also data and schema are as expected when I look them from ratel.
But each time I run my tests, it adds a new bulk of:
So let’s say my schema has 10 indexes defined, so after running 10 times my tests, when I start the dgraph test server I get 100 “update predicate” lines in my log.
And of course it slows progressively the starting of the dgraph test server.
If I remove the data folders, it clears that aggregation but after that it keeps growing again.
Yes. As I said, I systematically do a drop all and then an alter schema at the beginning of my tests.
In ratel, the database is fine: No data, schema well defined.
But when I start the server, the schema seems to be duplicated as many times as I launched my tests. According to the logs anyway
Problem still here, but I cannot produce a basic program that reproduces it.
When I run my tests with a count=10 for instance, each time I run them again the total time increases because of that, but it doesn’t influence the test results.