Похоже, что в Cosmos DB Gremlin API время ожидания запроса установлено на 30 секунд.Есть ли известный способ увеличить его?
- Тайм-аут игнорируется в
gremlin-driver
3.4.3
- То же поведение с
:remote config timeout
в консоли Gremlin 3.4.3
- Увеличение пропускной способности от также не помогло
// graph has >200000 vertices
String superSlowQuery = "g.V().repeat(identity()).times(32)";
time(() -> client.submit(superSlowQuery).all().get());
// OperationCanceledException after 31560ms
time(() -> client.submit(superSlowQuery).all().get());
// OperationCanceledException after 35081ms
RequestOptions requestOptions = RequestOptions.build().timeout(120 * 1000).create();
time(() -> client.submit(superSlowQuery, requestOptions).all().get());
// OperationCanceledException after 31656ms