1
0
Fork 0
Commit Graph

3525 Commits

Author SHA1 Message Date
Wilfried Goesgens 59390ef374 Doc - Improves fetch-script. Fresh Swagger. Sync external repos (#5463) 2018-05-28 16:29:30 +02:00
Jan dc97eb0111
Subquery optimizations (#5398) 2018-05-28 13:56:03 +02:00
maxkernbach 744fe669cb Doc - fix doc build + remove unsupported option for graph traversals (#5470) 2018-05-28 13:22:49 +02:00
Heiko beb8aae99c Updated Geo.md - typos and wrong distance query (#5365) 2018-05-25 19:26:40 +02:00
Jan Christoph Uhde 551844ff15 add missing examples for overwrite (#5460) 2018-05-25 12:00:54 +02:00
Jan Christoph Uhde a2dcb6cc5d WIP - start adding optional overwrite to insert operation (RepSert) (#5268) 2018-05-24 19:47:15 +02:00
Simran d934a4c155 Doc - Updated paths to fit ArangoDB v3 (#5443) 2018-05-23 19:21:26 +02:00
Simran 38a6b15abd Doc - Updates Array.md (#5367)
Replace previously missed "Example" headlines with bold text.
2018-05-22 19:24:28 +02:00
Simran f8436e365d Doc - Updates initial page of Drivers Book (#5425)
Replace headlines with bold text to suppress the page-toc on the start page
2018-05-22 19:22:36 +02:00
Chris Olivier 2e74416b61 Fixed spelling errors (#4503) 2018-05-16 18:06:43 +02:00
Wilfried Goesgens eed1235893 Feature/aql date trunc 2 (#5295) 2018-05-16 17:33:27 +02:00
Simran 679013fded Doc - Add links to changelogs of Tools and Drivers (#5356) 2018-05-16 08:21:12 +02:00
Jan 76e2c1b087
abort startup when using SSLv2 for a server endpoint (#5339) 2018-05-15 18:38:34 +02:00
Simran ab5775c04b Doc - Remove AQL array example anchors (#5207) 2018-05-14 10:29:07 +02:00
Jan 4703049c4e
added startup option `--log.escape` for unescaped logging (#5315) 2018-05-11 19:12:16 +02:00
jsteemann 55ee1aef3e fixed documentation issue #5325 2018-05-11 14:49:57 +02:00
maxkernbach 5cd4064be5 Doc - New Example 'Multiple Path Search' (#5307)
Issue #3545
2018-05-11 12:36:59 +02:00
Simran 59de3403c1 Doc - Administration & Programs Refactor (#4907) 2018-05-10 13:05:22 +02:00
maxkernbach 2733bf9e1c Doc - fix build & integrate GO driver doc (#5293) 2018-05-08 12:22:42 +02:00
Tobias Gödderz 8c87f51429 Feature/fix inconsistent distribute shards like job (#4743) 2018-05-07 16:53:08 +02:00
Jan 7f37314df8
added REST API endpoint GET /_admin/server/availability (#5251) 2018-05-04 11:31:05 +02:00
Matthew Von-Maszewski 9caa796a9c apply edits suggested by Willi (#5260) 2018-05-04 10:39:12 +02:00
Simon 8d5a30cca6 S2 upgrade (#5258) 2018-05-03 18:18:09 +02:00
Jan 9c0460acff
Feature/aql optimizations (#5237) 2018-05-03 16:55:58 +02:00
Alan Plum 7a5139fe2c Add query, aql.literal (#5184)
* Add query, aql.literal

* Update ArangoDB.md
2018-05-03 14:18:20 +02:00
Simon 828f1d423c S2 based Geo-Spatial index (#5249) 2018-05-02 23:54:41 +02:00
Matthew Von-Maszewski 9ff6a41236 Add pacing logic to arangoimp (#5238)
* initial check-in of working auto block size tuning for import.  Needs clean-up.
* partial fix in this branch to enable testing, awaiting better fix in different branch.
* move pacing code from findIdleSender to AutoTuneThread object.
* move pacing code from findIdleSender to AutoTuneThread object.  clean up dead code.  add comments about algorithm.
* edits to algorithm discussion
* correct logging level.  add CHANGELOG entry.
* update comment concerning proper usage of shutdown()
* initialize new static member MaxBatchSize.  Correct sendCsvBuffer() call to addPeriodByteCount() since _outputBuffer drained by sendData().
* remove redundant semicolons.  add new static member MaxBatchSize.
* move MaxBatchSize to ImportHelper so both ImportFeature object and AutoTuneThread object can access it.
* minor updates to comments and statics
* add pacing discussion to import manual page
* minor edit
2018-05-02 22:34:04 +02:00
Wilfried Goesgens 7646d02702 Documentation/re add link (#5241) 2018-05-02 11:09:12 +02:00
jsteemann a95a9b0db0 fix documentation 2018-04-30 19:14:18 +02:00
maxkernbach b4dcad9662 Doc - Integrate php driver doc (#5236) 2018-04-30 18:35:03 +02:00
Simon a1416e1067 Make v8 optional on startup (#5220) 2018-04-30 12:48:57 +02:00
Wilfried Goesgens 4fc6e64266 Doc - Update Monitoring/Collectd Cookbook (#5228) 2018-04-30 11:25:43 +02:00
Jan 349e2c1681 forward-port AQL optimizations from 3.3 (#5020)
* forward-port AQL optimizations from 3.3

* fix restrict-to-single-shard rule

* added tests for specific cases

* ModificationNodes now can know if they are restricted or not

* OptimizerRule now updates the ModificationNode instead of setting ownName on remote node.

* The DBServerEngine container now only sends a subset of snippets (those which are relevant) It is  able to restrict any part of the query to a certain shard or even a list of shards

* ExecutionEngine CreateBlocks in ClusterMode now returns Result instead of throwing.

* Adapted Coordinator side to a bitter mapping of RemoteNode => QuerySnippets. This is still ongoing work.

* Fixed Coordinator enginecontainer test and finisehd implementation of EngineInfoContainerDBServer. Seems to work so far, need to adapt test to prove it.

* Adapted test for modification nodes and restrict to shard.

* restrictTo can now be de-/serialized on Modification Nodes

* Fixed Community Compile Error

* Added a test for Indexes/EnumerateCollection nodes

* EnumerateCollection and IndexNode now have options to be restricted to a single shard, opt rule not yet updated

* DBServer part of planning now checks Enumerate and IndexNodes for single shard optimization

* Added tests for simple single shard optimization on IndexNodes

* Adapted optimzierrule for SingleShard optimierung on IndexNodes

* Fixed an issue with externally restricted shard ids in combination with shard_id based optimization

* Added a test for multiple single shard optimizations on the same collection

* Removed collection/Shard duplicate check of optimize to single shard rules

* Updated Explainer to handle optimize to single shard

* Let more tests pass an optimized AQL variant

* Temporarily disabled a tests that can only be solved after some work in transaction
2018-04-30 11:25:09 +02:00
Wilfried Goesgens c4b0ccb56f Doc - fix restheader (#5209) 2018-04-27 13:15:42 +02:00
Simon 95c8710dec Fixing subqueries in aql profiler (#5195)
* Fixing subqueries in aql profiler

* Adding additional testsuite

* Fix AQL profiling example name, add API example

Also use different query for explain and profiling with SLEEP() for
non-zero runtimes.

* New/updated examples for query explain/profiling

* Fix runtime calculation
2018-04-25 13:35:55 +02:00
Simon 468231efc5 AQL Profiling code (#5165)
* initial start of profiling

* adding profiling code

* Fixing remote block tracing, fixing width and units

* Fixing some tests

* Various fixes

* adressing review comments
2018-04-24 16:17:30 +02:00
sleto-it ca4c12bacf
Doc - Updates from external repos (#5185) 2018-04-24 11:10:47 +02:00
Mark a5b903e82c Documentation Foxx refactor (#5180) 2018-04-23 14:11:35 +02:00
Jan 646db8ca0a
added `--dump-option` startup option to print all available options i… (#5174) 2018-04-23 11:31:08 +02:00
maxkernbach 15bb69224f Doc- Fix build script (#5118) 2018-04-20 13:07:17 +02:00
Wilfried Goesgens 13a179304e Doc - Fixes duplicate text in the HTTP doc - Part 1 (#5153)
Fixes the condition when blocks end, so we can pick blocks with empty lines in them
2018-04-20 12:56:14 +02:00
maxkernbach 491e9dd53f
fix typo 2018-04-16 16:23:59 +02:00
Wilfried Goesgens ac2a8721e6 Feature/aql native call apply (#5100) 2018-04-13 16:07:06 +02:00
Jan 76dcd6ded5
added option `--cluster.require-persisted-id` (#5001) 2018-04-13 11:08:49 +02:00
Jan 5324aaf6b3
added option `--database.required-directory-state` (#5038) 2018-04-13 11:05:21 +02:00
Alan Plum 38aa67102b Mention graphql-js 0.12 in Foxx GraphQL docs (#5082) 2018-04-13 11:04:58 +02:00
sleto-it 7086eb0c4b Doc - Drivers book - minor fix 2018-04-12 17:44:04 +02:00
sleto-it 5661492de0
Doc - New Driver Book (#4825) 2018-04-12 17:12:54 +02:00
maxkernbach 56497e13f9 Doc - fix issue #4778 (#5081) 2018-04-11 15:47:38 +02:00
Wilfried Goesgens 159fefafe9 Doc - fix typo (#5076) 2018-04-10 23:21:04 +02:00