1
0
Fork 0
Commit Graph

12596 Commits

Author SHA1 Message Date
hkernbach b91352deb1 gv exporter settings 2016-09-26 15:56:48 +02:00
hkernbach 05c2c1976f gv 2016-09-26 15:52:33 +02:00
hkernbach 0acc163ac8 cluster statistics background pulling 2016-09-26 14:00:45 +02:00
hkernbach d4da684325 fixed statistics in cluster mode 2016-09-26 13:45:06 +02:00
hkernbach e685e811f0 added query profiling information 2016-09-26 11:03:19 +02:00
hkernbach 35e14fdab2 Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-09-23 14:14:59 +02:00
hkernbach ec16346e74 cleanup 2016-09-23 14:14:32 +02:00
jsteemann 9b951ff6c2 speed up tests 2016-09-23 12:20:10 +02:00
jsteemann 0b7d73bf3b add setUpAll, tearDownAll 2016-09-23 12:08:39 +02:00
hkernbach 33c54a9e7b modified collection info view 2016-09-23 10:41:58 +02:00
hkernbach 19c8e77aea rechecking dbservers before sharding operations 2016-09-23 10:21:20 +02:00
hkernbach b387ff6289 adjusted progress indicator delay 2016-09-23 07:57:20 +02:00
hkernbach ea9d97d5c6 nodes view 2016-09-23 07:55:09 +02:00
hkernbach 9f70262a2c fixed wrong navi route 2016-09-23 07:30:18 +02:00
hkernbach 635fbfeec5 Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-09-23 07:22:47 +02:00
jsteemann bbc0e8940c issue #2071
make the AQL query optimizer inject filter condition expressions referred to by variables during filter condition aggregation
for example, in the following query

    FOR doc IN collection
      LET cond1 = (doc.value == 1)
      LET cond2 = (doc.value == 2)
      FILTER cond1 || cond2
      RETURN { doc, cond1, cond2 }

the optimizer will now inject the conditions for `cond1` and `cond2` into the filter condition `cond1 || cond2`, expanding it to
`(doc.value == 1) || (doc.value == 2)` and making these conditions available for index searching.

note that the optimizer previously already injected some conditions into other conditions, but only if the variable that defined
the condition was not used elsewhere. for example, the filter condition in the query

    FOR doc IN collection
      LET cond = (doc.value == 1)
      FILTER cond
      RETURN { doc }

already got optimized before because `cond` was only used once in the query and the optimizer decided to inject it into the place
where it was used.
this only worked for variables that were referred to once in the query. when a variable was used multiple times, the condition
was not injected as in the following query

    FOR doc IN collection
      LET cond = (doc.value == 1)
      FILTER cond
      RETURN { doc, cond }

the fix for #2070 now will enable this optimization so that the query can use an index on `doc.value` if available.
2016-09-22 20:29:27 +02:00
jsteemann 5e26337548 issue #2070 2016-09-22 19:59:13 +02:00
Kaveh Vahedipour 5e43c204c7 Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-09-22 17:24:09 +02:00
Kaveh Vahedipour c793c3ac44 FailedServer jobs can report when last FailedLeader has been processed 2016-09-22 17:23:56 +02:00
hkernbach 57dbd8799e optimized cluster ui 2016-09-22 17:10:05 +02:00
hkernbach 3bfb30aa3e offline view 2016-09-22 13:32:17 +02:00
hkernbach 9ccf472f52 rerendering cluster statistics faster 2016-09-22 12:54:21 +02:00
Jan Steemann f0e14cff7d changed behavior of array comparison operators for empty arrays 2016-09-21 11:01:59 +02:00
Jan Steemann 243476e454 issue #2064 2016-09-21 08:56:51 +02:00
Wilfried Goesgens 2a5cdf7311 Fresh swagger. 2016-09-19 16:35:01 +02:00
Michael Hackstein d01c7ca32b Disabled {uniqueEdges: 'global'} and {uniqueVertices: 'global', bfs: false} in Pattern Matching query as their result is entirely non deterministic. 2016-09-19 13:28:43 +02:00
jsteemann e245e155a1 Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-09-19 08:59:16 +02:00
jsteemann 6d2a93d997 added experimental AQL functions `JSON_STRINGIFY` and `JSON_PARSE` 2016-09-19 08:58:52 +02:00
Jan Steemann a2deb13c8d fixed issue #2060 2016-09-19 08:50:13 +02:00
Kaveh Vahedipour 7806dde219 fixed ssl_server test 2016-09-16 13:14:08 +02:00
jsteemann fad7efe8c3 more diagnostics 2016-09-16 09:35:08 +02:00
Max Neunhoeffer 3435e973ec Correct path to enterprise js code in testing.js. 2016-09-15 10:25:57 +02:00
Wilfried Goesgens f3a2a91f12 redirect output of gdb, so we can append it to the jenkins error mails. 2016-09-14 17:13:41 +02:00
Michael Hackstein c6cd5574b1 Removed a graph optimization which increased the minDepth if a filter is defined on a higher depth. Under some circumstances this filter can be matched if the path is not long enough. 2016-09-14 10:23:34 +02:00
Jan Steemann 1a2a3ba448 fixed issue #2052 2016-09-14 08:28:20 +02:00
Wilfried Goesgens cde427e492 create failure report file regardless of whether its going to be empty; simplifies build pipeline. 2016-09-13 14:40:13 +02:00
Wilfried Goesgens 5c0791bb8f remove debug print 2016-09-13 14:13:42 +02:00
Wilfried Goesgens e4596de367 add fail suite for build pipeline testing 2016-09-13 14:12:21 +02:00
Kaveh Vahedipour bdf2b9a55e fix in timing and wanring 2016-09-13 11:04:51 +02:00
Max Neunhoeffer b686f23cb9 Set agencySize back to 1 (temporarily). 2016-09-12 14:12:49 +02:00
Michael Hackstein 8dd3105762 Added a smartSearch route for Traversal Engines. In Community edition this will throw ONLY_ENTERPRISE. It should never be called by our code however. 2016-09-12 13:42:08 +02:00
Max Neunhoeffer 1c7ed5d86f Make testing.js find enterprise tests in enterprise version. 2016-09-12 12:20:50 +02:00
hkernbach a620690a32 grunt build 2016-09-09 17:29:09 +02:00
hkernbach 8546c56ff7 improved gv 2016-09-09 17:27:43 +02:00
hkernbach 294f117dbf added missing collection state - frontend 2016-09-09 17:27:02 +02:00
Kaveh Vahedipour 8b6f0e1f51 agency supervision turned off for quickietest 2016-09-09 15:03:12 +02:00
Kaveh Vahedipour b98975344d Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-09-09 14:47:07 +02:00
Kaveh Vahedipour 16a35ee15a multi-host agency in tests 2016-09-09 14:46:54 +02:00
Max Neunhoeffer 8fef636106 Allow for detailed version query in arangosh. 2016-09-09 14:30:57 +02:00
hkernbach ee65a1a375 fixed issue #2005 2016-09-09 13:39:15 +02:00
hkernbach c8923c1021 improved gv 2016-09-09 13:16:57 +02:00
jsteemann a9902fe02d fixed typo 2016-09-08 17:52:29 +02:00
jsteemann 50ff529244 jslint 2016-09-08 17:34:59 +02:00
Michael Hackstein adec2b1c50 Fixed traverser test. Which has two possible results 2016-09-08 17:07:12 +02:00
Michael Hackstein a3ba4b249d DBServer collections now use a cluster-wide unique id for their cids. Better handling of waiting for replication. 2016-09-08 16:26:17 +02:00
jsteemann 2df53c92ce Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-08 09:51:24 +02:00
Kaveh Vahedipour 4e9f455094 too verbose messages from cluster.js 2016-09-08 07:38:10 +00:00
jsteemann 183208de6b Merge branch 'generic-col-types' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-07 15:45:44 +02:00
Michael Hackstein 7a2a0ddc0e Fixed another statistic test in graph traverser. 2016-09-07 15:27:05 +02:00
jsteemann 8ef63acf55 Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-07 15:24:51 +02:00
jsteemann d749052081 jslint 2016-09-07 15:23:33 +02:00
jsteemann 64f8d7ae87 Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-07 15:10:58 +02:00
Michael Hackstein 446e5dddfc Fixed graph traversal tests in cluster. They use a different index than local server and hence reporting is different. 2016-09-07 14:50:40 +02:00
Andreas Streichardt e2782a7376 implement tests checking that writing to the hideen agency stuff is
forbidden
2016-09-07 14:03:22 +02:00
jsteemann 7ae36773ec moved implementation of `/_admin/wal` REST handlers to C++ 2016-09-07 13:48:52 +02:00
jsteemann 528ebdf573 slightly prefer primary index 2016-09-07 11:42:13 +02:00
jsteemann 32d35f25af Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-07 10:35:29 +02:00
Mark 03d7e3ea0a Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-09-07 10:31:49 +02:00
Mark e417e34d0e changed default for keepNull of modifyVertex/modifyEdge to true in Gharial 2016-09-07 10:31:35 +02:00
Andreas Streichardt d258e75cd1 Fix jslint 2016-09-07 10:31:08 +02:00
jsteemann 98dc073774 Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-07 10:01:49 +02:00
jsteemann 84b750597d added test 2016-09-07 10:01:35 +02:00
Jan Steemann f80b36b6ff Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-09-07 09:59:49 +02:00
Jan Steemann a79c8360d4 fixed issue #2039 2016-09-07 09:59:41 +02:00
jsteemann e1c847b0f6 Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-07 09:52:38 +02:00
Kaveh Vahedipour 55df580c78 bug fix in shutdown timer for tests 2016-09-07 09:49:47 +02:00
Max Neunhoeffer 104fc6aeed Merge branch 'generic-col-types' of ssh://github.com/ArangoDB/ArangoDB into generic-col-types 2016-09-07 09:47:20 +02:00
Max Neunhoeffer 549367a15e Fix error check in tryLaunchTask. 2016-09-07 09:46:59 +02:00
Michael Hackstein 8ba5472768 Merge branch 'generic-col-types' of github.com:arangodb/arangodb into generic-col-types 2016-09-07 09:11:43 +02:00
jsteemann f5a595f464 Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-07 08:52:07 +02:00
Michael Hackstein 4f50911c88 Fixed a bug in Traversal Explainer. Also fixed undefined behaviour when directly checking for an attribute omitting == true in early traversal filter. 2016-09-06 18:46:40 +02:00
Andreas Streichardt ecc571b299 Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-09-06 17:13:40 +02:00
Kaveh Vahedipour a9ce21c80e minor 2016-09-06 16:52:03 +02:00
Andreas Streichardt 7b4a383877 Fix resilience tests 2016-09-06 16:49:54 +02:00
Andreas Streichardt 6396ac4dc7 Implement removeServer job 2016-09-06 16:49:25 +02:00
Max Neunhoeffer c83c5200cf Fix behaviour of tryLaunchJob when database is dropped. 2016-09-06 16:29:52 +02:00
Max Neunhoeffer 6adc95ddce Merge branch 'generic-col-types' of ssh://github.com/ArangoDB/ArangoDB into generic-col-types 2016-09-06 14:59:42 +02:00
jsteemann b718f67ff6 Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-06 14:40:51 +02:00
Max Neunhoeffer c083693ef0 Better error reporting in tryLaunchTask. 2016-09-06 14:28:00 +02:00
Kaveh Vahedipour 64887d6a86 agency tests wait for leadership to be established 2016-09-06 14:10:54 +02:00
jsteemann 5c9d015a28 fixed some explainer errors 2016-09-06 13:27:04 +02:00
jsteemann 6ddf8bab54 Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-06 11:22:14 +02:00
jsteemann 6ad39e26d6 jslint 2016-09-06 11:12:22 +02:00
jsteemann b161f5b9aa test adjustments 2016-09-06 11:10:17 +02:00
Michael Hackstein e22014a272 Merge branch 'MIT' of github.com:arangodb/arangodb into generic-col-types 2016-09-06 09:33:23 +02:00
Kaveh Vahedipour 3086b45178 agency tests for replace/erase in kv-store 2016-09-06 09:25:25 +02:00
Kaveh Vahedipour 9941c74b9d inaccuracies in timing may yield wrong results in agency tests for ttls 2016-09-06 08:56:14 +02:00
Kaveh Vahedipour 51b6888549 new agency operators REPLACE and ERASE 2016-09-05 18:08:23 +02:00
Jan Steemann af149e8b7b fix deletion of users/permissions 2016-09-05 15:13:08 +02:00
jsteemann 5e9cb5c852 removed unused error codes 2016-09-02 15:36:59 +02:00
jsteemann 4492409d5f Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-02 15:23:15 +02:00
jsteemann 1823cff3a9 removed TRI_collection_t 2016-09-02 14:54:13 +02:00
Wilfried Goesgens 6dd57a6c4c Add instance info & port sniffing template 2016-09-02 14:18:02 +02:00
Wilfried Goesgens 081e419c68 Make failures output last, so if one scrolls up from the end of the run they occur first. 2016-09-02 11:55:07 +02:00
jsteemann 6c2bb5513e Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-01 16:06:22 +02:00
jsteemann a859a371ea Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-09-01 16:03:27 +02:00
jsteemann 0a2079e97e jslint 2016-09-01 16:03:11 +02:00
jsteemann ae2b1072cd Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-01 16:01:19 +02:00
Frank Celler 04a82b919f added --cluster.system-replication-factor 2016-09-01 15:59:02 +02:00
Wilfried Goesgens 892aaa3eb2 Analyse the system core pattern if we're on linux. 2016-09-01 15:45:06 +02:00
jsteemann 3ac79c8132 Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-01 15:08:42 +02:00
Wilfried Goesgens 549e7b46d7 mention that the edge is invalid, because of it doesn't obey the edge definitions. 2016-09-01 14:39:38 +02:00
Kaveh Vahedipour 6239a5fbc5 minor reorganisation 2016-09-01 13:45:15 +02:00
jsteemann fb04340937 Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-09-01 10:47:44 +02:00
jsteemann 2eaf7196e2 fixed some tests 2016-09-01 09:41:11 +02:00
jsteemann 26101187e8 Merge branch 'generic-col-types' of https://github.com/arangodb/arangodb into generic-col-types 2016-08-31 17:59:59 +02:00
Michael Hackstein 513f6ce560 Now all AGENTs do re port that they are not part of a cluster. This did confuse the statistics.js 2016-08-31 17:20:28 +02:00
jsteemann 2d1e0bd3ae fixed some leaks 2016-08-31 15:30:47 +02:00
Kaveh Vahedipour 676e5b1329 Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-08-31 08:34:21 +00:00
jsteemann b2eadbd179 Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-08-30 16:07:50 +02:00
Wilfried Goesgens 1c34b564ed Fix release matching for alpha/beta versions 2016-08-30 14:39:48 +02:00
jsteemann bd590fb62d Merge branch 'devel' of https://github.com/arangodb/arangodb into generic-col-types 2016-08-30 08:18:34 +02:00
Kaveh Vahedipour c53428ce89 minor fixes 2016-08-29 17:13:33 +02:00
Kaveh Vahedipour b94f17fb21 minor timing 2016-08-26 15:30:26 +00:00
jsteemann 4b53310189 Merge branch 'devel' of https://github.com/arangodb/arangodb into engine-vs-velocystream 2016-08-26 13:42:40 +02:00
Kaveh Vahedipour b409a1ff25 Adding Foxx access to agenc 2016-08-26 13:35:39 +02:00
jsteemann 999e2dab1b Merge branch 'devel' of https://github.com/arangodb/arangodb into engine-vs-velocystream 2016-08-25 15:38:12 +02:00
Jan Steemann 9436b411db fixed tests 2016-08-25 14:40:54 +02:00
Jan Steemann 3600ed40f8 more diagnostic output 2016-08-25 14:02:47 +02:00
jsteemann 396ab41736 allow dropping system collections in some rare cases 2016-08-25 12:47:06 +02:00
jsteemann 7eaddf5ed5 dont print during test execution 2016-08-24 18:01:07 +02:00
jsteemann 0b6815ef77 Merge branch 'devel' of https://github.com/arangodb/arangodb into engine-vs-velocystream 2016-08-24 17:48:29 +02:00
Wilfried Goesgens 795daeea13 Fix agency test. 2016-08-24 17:47:20 +02:00
jsteemann 1dab450622 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-24 17:35:10 +02:00
jsteemann 07055384b8 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-24 17:34:59 +02:00
jsteemann 04f5fbbdb2 fixed issue #2018 2016-08-24 17:33:49 +02:00
Wilfried Goesgens d0300704fb Fix DFDB-Test: create the database directory we run it on. 2016-08-24 17:24:35 +02:00
hkernbach 1d3fadba22 grunt build 2016-08-24 16:38:07 +02:00
hkernbach 2be5c2b15c gv improved usability 2016-08-24 16:33:09 +02:00
hkernbach 79d7a5ed39 gv improvements 2016-08-24 15:16:39 +02:00
root c7f8046e48 raft bug. leader ship cannot be rendered to higher term and lower index. 2016-08-24 09:26:34 +00:00
jsteemann f92815b09b Merge branch 'devel' of https://github.com/arangodb/arangodb into engine-vs-velocystream 2016-08-24 09:38:06 +02:00
hkernbach 4e74b6c89f grunt 2016-08-24 09:17:23 +02:00
hkernbach edc3abf4ad Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-08-24 09:03:27 +02:00
Kaveh Vahedipour fb8173b1ec rest handler now timeouts when no leadership established and reports 503 2016-08-23 15:38:32 +02:00
jsteemann 5f06a5c025 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-23 12:13:08 +02:00
Andreas Streichardt 5579eca2df Change debug levels for shard sync...no more spam 2016-08-23 10:53:14 +02:00
Jan Steemann 57fa55921c fix execution of AQL traversal expressions when there are multiple conditions that refer to variables set outside the traversal 2016-08-23 10:48:08 +02:00
Simran Brucherseifer de6e49571e Optimized arangosh tutorial for 80 char width, slightly extended 2016-08-22 20:59:54 +02:00
Jan Steemann b296468a18 more optimizations 2016-08-22 17:36:04 +02:00
Andreas Streichardt 997a4e688f Handle backend unavailable properly 2016-08-22 14:15:15 +02:00
Andreas Streichardt de81745985 Reintroduce propagateInstanceInfo 2016-08-22 12:12:19 +02:00
Michael Hackstein a788796280 Fixes #1995. The edgeCollectionRestriction was not properly forwarded in commonNeighbors case for new graph features. 2016-08-19 15:40:15 +02:00
Michael Hackstein 96f11c7e9f Merge branch 'engine-vs-velocystream' of github.com:arangodb/arangodb into generic-col-types 2016-08-19 12:26:07 +02:00
jsteemann c5f151da5c Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-19 11:01:15 +02:00
Kaveh Vahedipour 93995eba84 agency startup changed to bootstrapping 2016-08-19 10:45:52 +02:00
Michael Hackstein 1c1a61377b Removed create / drop system collection from Cluster test. This is forbidden now 2016-08-19 10:25:59 +02:00
Kaveh Vahedipour f7c05fe72b adjusting startup scripts 2016-08-19 09:08:33 +02:00
Kaveh Vahedipour 5ec535bf98 Merge branch 'devel' of https://github.com/arangodb/arangodb into agency-startup 2016-08-19 05:12:06 +02:00
Alan Plum 76c447e29d
Add module.context.createDocumentationRouter 2016-08-19 00:36:08 +02:00
Kaveh Vahedipour c4bff54771 Merge branch 'devel' of https://github.com/arangodb/arangodb into agency-startup 2016-08-18 17:25:24 +02:00
jsteemann 06b600a632 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-18 16:51:02 +02:00
jsteemann 516823059b updated generated file 2016-08-18 16:49:47 +02:00
jsteemann d7b2141da0 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-18 16:22:00 +02:00
Kaveh Vahedipour aee9548308 Merge branch 'devel' of https://github.com/arangodb/arangodb into agency-startup 2016-08-18 15:55:51 +02:00
Simran Brucherseifer dd37b5d3f3 Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-08-18 13:31:11 +02:00
Simran Brucherseifer 4b3a8baa44 FOXX -> Foxx 2016-08-18 13:30:18 +02:00
hkernbach a4f063ca5d Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-08-18 12:42:04 +02:00
Michael Hackstein d3ba488271 Merge branch 'engine-vs-velocystream' of github.com:arangodb/arangodb into generic-col-types 2016-08-18 12:38:07 +02:00
jsteemann 4080f4e8b5 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-18 08:41:49 +02:00
Alan Plum 41a162bce0
Fix default of legacy flag 2016-08-17 21:53:07 +02:00
hkernbach ff9f3f1fa3 Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-08-17 20:34:08 +02:00
hkernbach db60988798 gv improvements 2016-08-17 20:31:31 +02:00
Andreas Streichardt 3f412debf0 Revert futile attempts to implement client resilience tests 2016-08-17 18:12:40 +02:00
Andreas Streichardt 066095b74f exitStatus is now always there 2016-08-17 17:25:39 +02:00
Andreas Streichardt a90ca4e770 It finally seems to run 2016-08-17 17:25:39 +02:00
Andreas Streichardt 6aad24ab49 Self managing (instances) tests 2016-08-17 17:25:39 +02:00
jsteemann 1302439d91 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-17 16:48:11 +02:00
Alan Plum 18535e0650
Rebuild aardvark 2016-08-17 14:51:57 +02:00
Alan Plum bcb722f0ac
Add legacy mode to web interface 2016-08-17 14:51:04 +02:00
Michael Hackstein cd9a2e14b6 Fixed all single-server tests. Cluster state is not yet fixed. Still needs some internal cleanup 2016-08-17 14:43:57 +02:00
hkernbach 01a070c26e improved gv, bugfix, performance 2016-08-17 14:43:33 +02:00
Kaveh Vahedipour 77565ff626 Merge branch 'devel' of https://github.com/arangodb/arangodb into agency-startup 2016-08-17 11:13:21 +02:00
jsteemann df6d35a4bd Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-17 10:48:33 +02:00
Wilfried Goesgens 92e1580ace Revert "Disable testcases for now, it triggers the crash on windows."
This reverts commit 5ef3742375.
2016-08-17 09:32:30 +02:00
jsteemann a3e9ed943e Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-17 09:04:18 +02:00
hkernbach ad2273ce14 grunt build 2016-08-16 21:55:56 +02:00
hkernbach f29a8e65fc improved gv 2016-08-16 21:55:52 +02:00
Kaveh Vahedipour 96b1e8ff68 Merge branch 'devel' of https://github.com/arangodb/arangodb into agency-startup 2016-08-16 17:51:32 +02:00
jsteemann 10e855b488 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-16 16:16:07 +02:00
Alan Plum 5f7fd58056
Revert "Remove iconv-lite"
This reverts commit c9bd40f50a.
2016-08-16 16:08:42 +02:00
Kaveh Vahedipour 632461db33 Merge branch 'devel' of https://github.com/arangodb/arangodb into agency-startup 2016-08-16 15:46:16 +02:00
jsteemann 000fd9cbdc Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-15 18:35:43 +02:00
jsteemann 5b0bc88cc2 added tests for unary minus and plus in c++ 2016-08-15 18:17:02 +02:00
Kaveh Vahedipour 131291c2f9 single agent with uuid after fresh start 2016-08-15 17:53:01 +02:00
jsteemann f39ade10f5 jslint 2016-08-15 15:13:03 +02:00
jsteemann 209c108c59 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-15 14:34:01 +02:00
jsteemann e9cabbecb7 Merge branch 'engine-vs-velocystream' of https://github.com/arangodb/arangodb into readcache 2016-08-15 14:26:50 +02:00
jsteemann ae40ea5450 finally fixed some nasty bugs after refactoring 2016-08-15 14:26:09 +02:00
jsteemann 2780f1ec87 jslint 2016-08-15 13:41:13 +02:00
Kaveh Vahedipour 6279818369 Merge branch 'devel' of https://github.com/arangodb/arangodb into agency-startup 2016-08-15 13:14:15 +02:00
Kaveh Vahedipour 692d01638c single agent with uuid after fresh start 2016-08-15 13:13:58 +02:00
Jan Christoph Uhde 61e384e8f2 Merge remote-tracking branch 'origin/engine-vs-velocystream' into merge_jans
* origin/engine-vs-velocystream: (54 commits)
  Fix testing
  Proper roles of servers
  Streamline agency testing
  Fix if
  Fix testing
  Improve clusterawareness in foxx and foxx queues
  Add test because of keysorting bugfix
  Couldn't query two different keys beginning with the same string in one level
  Add download and slack buttons to documentation header
  gv
  Adjustment for Repository Version
  Adjustment for Repository Version
  Adjustment for Repository Version
  Update build-repository.h.in
  improved gv
  Create build-repository.h.in
  queryView bugfix
  grunt build
  improved gv, added limit
  improved gv
  ...
2016-08-15 08:51:38 +02:00
Simran Brucherseifer 9865adadf5 Tweak Aardvark's SUPPORT > Documentation tab
Make links consistent with website and style it a little nicer
2016-08-11 19:49:00 +02:00
Michael Hackstein 7b328d39e9 Merge branch 'devel' of github.com:arangodb/arangodb into engine-vs-velocystream 2016-08-11 12:41:08 +02:00
Frank Celler 254a17383e generated files 2016-08-11 12:25:22 +02:00
Michael Hackstein 9c9b3a9390 Merge branch 'devel' of github.com:arangodb/arangodb into MIT 2016-08-11 11:22:21 +02:00
Michael Hackstein 374e657ae7 Fixed final cluster traverser statistic test 2016-08-11 11:22:05 +02:00
Michael Hackstein 9e22f3f902 Fixed an undefined behaviour bug and a cluster statistic for Traverser. 2016-08-10 18:06:49 +02:00
Michael Hackstein 418ed17efe Fixed Statistics-tests for graphs. We filter and scan less now if the conditions would only work on longer paths 2016-08-10 17:50:35 +02:00
Andreas Streichardt 2c8e9ba3a9 Fix testing 2016-08-10 17:23:00 +02:00
Michael Hackstein 3a95244599 Fixed ALL== and NONE== tests for graph traversals. SingleServer and cluster 2016-08-10 17:10:25 +02:00
Andreas Streichardt 784b752c8a Proper roles of servers 2016-08-10 16:30:42 +02:00
Andreas Streichardt 116a4448e3 Streamline agency testing 2016-08-10 16:10:45 +02:00
Andreas Streichardt a4d9069b9c Fix testing 2016-08-10 13:12:38 +02:00
Andreas Streichardt 87c8c0033a Improve clusterawareness in foxx and foxx queues 2016-08-10 12:26:24 +02:00
Andreas Streichardt 40cf860c0d Add test because of keysorting bugfix 2016-08-10 12:26:24 +02:00
Michael Hackstein 654dd63719 Added some more tests for ALL == and NONE == in graph traverser. Still all red. 2016-08-10 09:57:16 +02:00
Michael Hackstein 7830248fa2 Added tests for ALL== and NONE== optimisation in Traverser. Tests are RED now. 2016-08-09 17:41:01 +02:00
Michael Hackstein 3dedde1688 Fixed test for scanned index in Traverser. The cluster now is better than it was before. 2016-08-09 16:27:17 +02:00
hkernbach fcfd67a1f7 gv 2016-08-09 14:43:13 +02:00
hkernbach 9f8c068579 improved gv 2016-08-09 13:24:15 +02:00
hkernbach 9625797d09 queryView bugfix 2016-08-09 13:20:41 +02:00
hkernbach 90e1ad30c6 grunt build 2016-08-09 13:14:22 +02:00
hkernbach 402af033a6 improved gv, added limit 2016-08-09 13:09:24 +02:00
hkernbach ff36c35f2d Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-08-09 12:55:47 +02:00
hkernbach 71aca42713 improved gv 2016-08-09 12:55:39 +02:00
Wilfried Goesgens b106a876b7 Merge branch 'devel' of github.com:arangodb/ArangoDB into devel 2016-08-09 09:26:09 +02:00
Wilfried Goesgens 5ef3742375 Disable testcases for now, it triggers the crash on windows. 2016-08-09 09:25:30 +02:00
hkernbach 3278db960f improved gv 2016-08-09 09:05:54 +02:00
Michael Hackstein 8225cf9e10 Fixed syntax error in graph-traverser 2016-08-08 17:42:01 +02:00
Michael Hackstein 5d33d3d061 Fixed vpack-externals test. It now states WITH in cluster. 2016-08-08 17:41:22 +02:00
Michael Hackstein 5fcf95a67e Fixed test for rule optimize traversals. 2016-08-08 17:35:42 +02:00
Michael Hackstein e2ba840577 Fixed aql-graph suite in cluster. It now uses WITH statements. 2016-08-08 17:35:20 +02:00
Michael Hackstein bb5a9442a5 Fixed test suite. 2016-08-08 17:06:43 +02:00
Michael Hackstein b66d9ea445 General Graph functions with edgeRestrictions now properly inject WITH <vertexCollections>. 2016-08-08 16:29:02 +02:00
hkernbach fa545e7c5f Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-08-08 15:14:02 +02:00
hkernbach ff0d390239 improved pr 2016-08-08 15:12:13 +02:00
Jan Christoph Uhde 0e5b455159 setPayload of response now takes contType instead of request 2016-08-08 14:48:56 +02:00
Simran Brucherseifer 7437c492de Improve Aardvark tooltips for index creation 2016-08-08 14:08:29 +02:00
Michael Hackstein bf435219dc Adopted many graph tests to now properly use WITH to make sure all collections are locked properly. Will add a test for correct behaviour without WITH later. 2016-08-08 12:38:40 +02:00
hkernbach c5348ba1a1 Merge branch 'upstream/#1906' of https://github.com/bateramos/arangodb into bateramos-upstream/#1906 2016-08-08 12:21:14 +02:00
Alan Plum e04d9d6571
Setter must return true on success 2016-08-05 17:54:37 +02:00
Jan Steemann ed475b698b fixed failing test 2016-08-05 17:43:11 +02:00
jsteemann 0ceccf6370 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-05 16:23:30 +02:00
Jan Steemann cb4b091301 Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-08-05 16:18:24 +02:00
Jan Steemann e69e49f145 fix Buffer array access 2016-08-05 14:50:06 +02:00
Jan Christoph Uhde c423e9f91d restructure test 2016-08-05 12:24:02 +02:00
Andreas Streichardt 9662d6cb7c Fix strange naming 2016-08-05 11:35:56 +02:00
Jan Christoph Uhde 1d0810b0cc better spacing for unittest output 2016-08-05 10:04:13 +02:00
Jan Christoph Uhde 90388f4e72 fix test - use substrings instead of exact match 2016-08-04 23:31:53 +02:00
Jan Christoph Uhde 0fcbb58b11 update test --jslint is failing vecause of VPACK_TO_V8 2016-08-04 23:24:43 +02:00
Jan Christoph Uhde 0bcbe92433 Merge remote-tracking branch 'origin/engine-vs-velocystream' into obi-velocystream
* origin/engine-vs-velocystream: (95 commits)
  move it a class method
  speed up compaction and cleanup a bit
  privatization
  added functions V8_TO_VPACK and VPACK_TO_V8
  fixed compaction bug
  fixed compaction bug
  raft testing revealed performance optimisation in receiver and of appendentries
  more streamlining, links to the UDF documentation.
  refactoring
  By simran: review UDF documentation.
  Explain clustering impacts in the optimizer chapter.
  fixed tests
  WG beautification
  Remove iconv-lite
  Add iconv-lite and timezone
  Add missing package description file.
  compaction bug in agency
  compaction bug in agency
  compaction bug in agency
  fixed compaction bug
  ...
2016-08-04 18:48:51 +02:00
Jan Christoph Uhde 50fe64d6ca convert contentTypes 2016-08-04 16:42:30 +02:00
Jan Christoph Uhde 3c4db6783c update test 2016-08-04 15:02:04 +02:00
jsteemann bc6633e4c0 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-04 13:33:10 +02:00
jsteemann 5d640b7144 fixed tests 2016-08-04 13:32:54 +02:00
Jan Christoph Uhde 01c1c09d5a add first vpack test -- content type has to be fixed first 2016-08-04 13:32:25 +02:00
Michael Hackstein 8cb670595b Merge branch 'devel' of github.com:arangodb/arangodb into MIT 2016-08-04 09:09:25 +02:00
Alan Plum c9bd40f50a
Remove iconv-lite
Apparently iconv-lite doesn't work with the new buffers, even in Node.js.
2016-08-03 15:53:11 +02:00
Alan Plum 742bb39f7c
Add iconv-lite and timezone 2016-08-03 15:47:07 +02:00
jsteemann ac1e4c1ef7 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-03 14:43:56 +02:00
Kaveh Vahedipour 6b3fb28b30 compaction bug in agency 2016-08-03 14:34:23 +02:00
jsteemann 8baa7ec955 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-03 13:39:00 +02:00
Wilfried Goesgens 799ccbc765 Merge pull request #1976 from de3/devel
Error when job retried: Cannot convert object to primitive value
2016-08-03 12:53:35 +02:00
jsteemann 2256ffd5b2 Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-03 10:52:03 +02:00
Jan Steemann 5b4e4e0845 issue #1977 2016-08-03 09:56:13 +02:00
Edi 2a758b0600 Error when job retried: Cannot convert object to primitive value 2016-08-03 12:46:40 +07:00
Michael Hackstein 2214c57821 Merge branch 'devel' of github.com:arangodb/arangodb into MIT 2016-08-02 13:02:24 +02:00
jsteemann 10341eafdb Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-08-02 09:42:17 +02:00
Michael Hackstein 994a99e31f Merge branch 'devel' of github.com:arangodb/arangodb into MIT 2016-08-01 16:50:54 +02:00
Wilfried Goesgens ad0bc4d00f Work on the debian build
- change 3.0.x-devel to be 3.0.devel since minus or underscore collide with packaging requirements
  - re-sync package scripts with whats current on suse OBS
  - add config-uid support.
2016-08-01 13:43:30 +02:00
Andreas Streichardt 6f156d8554 Fix foxx issues in cluster
Bootstrap will now be done on the bootstrap coordinator.

queues will now be executed by the "foxxmaster"
2016-08-01 13:43:30 +02:00
jsteemann 80f1a7aaee Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-07-29 17:16:20 +02:00
Andreas Streichardt 526c8f42c2 Fix foxx issues in cluster
Bootstrap will now be done on the bootstrap coordinator.

queues will now be executed by the "foxxmaster"
2016-07-29 16:06:31 +02:00
Max Neunhoeffer 4bc433d5a7 Fix bug in synchronous replication. 2016-07-29 11:29:05 +02:00
jsteemann de4eb8510c Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-07-29 08:56:34 +02:00
hkernbach 04bac349df grunt build [ci skip] 2016-07-28 21:39:00 +02:00
hkernbach f2a51a7db5 gv - better edge error handling 2016-07-28 21:07:07 +02:00
hkernbach 1c387cbda1 gv - some graph results could not be rendered 2016-07-28 20:17:09 +02:00
hkernbach 882f5bac4b fixed a gv starting point issue 2016-07-28 20:00:02 +02:00
hkernbach 35c1a868e5 gv - fixed lasso tool issue 2016-07-28 19:28:24 +02:00
hkernbach 1e68943aa0 gv - document editor bugfix 2016-07-28 19:17:18 +02:00
hkernbach bd1dd5e022 Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-07-28 18:52:23 +02:00
hkernbach 20ff78276a fixed gv ui issue 2016-07-28 18:51:58 +02:00
Andreas Streichardt 46817601e4 Remove obsolete actions (cluster 3.0 made them obsolete) 2016-07-28 18:46:37 +02:00
hkernbach 92016c52fb gv - fixed wrong attr titles [ci skip] 2016-07-28 18:28:29 +02:00
hkernbach 2b5e336685 gv - fixed firefox ui issues 2016-07-28 18:25:17 +02:00
jsteemann ba6bb338ba Merge branch 'devel' of https://github.com/arangodb/arangodb into readcache 2016-07-28 17:25:19 +02:00
Jan Steemann ddecc740e6 fixed issue in `INTERSECTION` AQL function with duplicate elements in the source arrays 2016-07-28 17:11:21 +02:00
hkernbach 9f3b7a9080 fixed broken downloads in firefox, issue: #1968 2016-07-28 16:53:31 +02:00
jsteemann b48779c821 fixed tests 2016-07-28 15:56:38 +02:00
Andreas Streichardt c34a02cf20 Improve error handling 2016-07-28 12:05:51 +02:00
Andreas Streichardt d5e2bd8987 Fix ssl tests (CORS) 2016-07-28 11:52:53 +02:00
Andreas Streichardt 0118b15f1c Fix testing.js 2016-07-27 17:14:15 +02:00
Andreas Streichardt 738344bb67 Wow...fix conflict 2016-07-27 13:34:19 +02:00
Andreas Streichardt 8c0cb81a77 Fix trusted origin tests 2016-07-27 12:10:47 +02:00
hkernbach 065dc57a8a grunt build [ci skip] 2016-07-26 22:13:29 +02:00
hkernbach 79e433736e improved gv 2016-07-26 21:35:14 +02:00
hkernbach 432ae0a55e added expand function to gv 2016-07-26 21:26:49 +02:00
hkernbach 1a31731ab8 semistandard fix 2016-07-26 20:10:33 +02:00
hkernbach 7d7220ea95 improved gv 2016-07-26 20:06:54 +02:00
hkernbach ba9f777142 gv bugfix 2016-07-26 19:34:44 +02:00
hkernbach d87cd66cdd improved gv 2016-07-26 19:22:32 +02:00
hkernbach c3e1184466 improved gv performance 2016-07-26 16:40:41 +02:00
hkernbach de62f7f673 fixed query editor issues 2016-07-26 15:51:08 +02:00
hkernbach 7601b12364 grunt build [ci skip] 2016-07-26 13:36:43 +02:00
hkernbach 40514e85ba gv improvements 2016-07-26 13:36:31 +02:00
Michael Hackstein 2a9c8ddc77 Merge branch 'devel' of github.com:arangodb/arangodb into MIT 2016-07-26 09:43:48 +02:00
jsteemann b83e83e39b Merge branch 'devel' of https://github.com/arangodb/arangodb into devel 2016-07-25 17:57:36 +02:00
jsteemann d6baadf59a fix recovery edge case 2016-07-25 17:57:25 +02:00
hkernbach cf5d27257d grunt build [ci skip] 2016-07-25 17:57:04 +02:00
hkernbach b067f71df5 added edge hover event 2016-07-25 17:52:34 +02:00
hkernbach a614a71b4b redirect to new gv 2016-07-25 17:45:08 +02:00
hkernbach 4f171936fa ui added query execution of selected text 2016-07-25 17:29:45 +02:00
hkernbach 6214b02701 gv improvements 2016-07-25 17:12:24 +02:00
hkernbach 5dce34b9f8 Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-07-25 14:17:51 +02:00
hkernbach be6bfe7aea gv improvement + bugfix 2016-07-25 14:17:39 +02:00
Jan Steemann 44059b5feb issue #1959 2016-07-25 11:37:24 +02:00
hkernbach 5bd38bf2cc fixed exporting documents webui 2016-07-25 10:58:06 +02:00
Michael Hackstein db4746f85e Now V8 conditions in Graph Traversals are not optmized any more. 2016-07-25 10:16:43 +02:00
Michael Hackstein 2d22afd4ea Fixed tests in Traversal. SingleServer all simple conditions are working and optimized. It does not yet work if one of the conditions requires v8 or a Variable. 2016-07-25 09:49:48 +02:00
hkernbach c4d623001c grunt build [ci skip] 2016-07-22 23:42:51 +02:00
hkernbach 2b0ce1b892 improved gv 2016-07-22 22:13:27 +02:00
hkernbach fe4268b759 fixed landscape smartphone navigation bug, improved login screen css 2016-07-22 22:12:27 +02:00
hkernbach 00f37ba3d2 improved code modal output 2016-07-22 21:46:36 +02:00
hkernbach b605b4b395 updated font awesome to version 4.6.3 2016-07-22 21:32:42 +02:00
hkernbach 7924ce27ab version check improved 2016-07-22 21:06:45 +02:00
hkernbach b74437716b fixed issue: #1881 2016-07-22 20:36:54 +02:00
hkernbach bbf5aa6899 documents view, now able to remove first filter element 2016-07-22 20:06:11 +02:00
hkernbach b6190df925 support view 2016-07-22 17:33:27 +02:00
hkernbach 2e7123ceee gv improvements 2016-07-22 14:29:22 +02:00
hkernbach 43262197cc grunt build [ci skip] 2016-07-22 13:00:00 +02:00
hkernbach 9d72233cda Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-07-22 12:56:47 +02:00
hkernbach 9d856e66b7 gv improvements 2016-07-22 12:56:39 +02:00
Jan Steemann 2aa1ae7db2 added read/write context info 2016-07-22 10:00:46 +02:00
jsteemann f3dfdb57d1 fixed issue #1954 2016-07-21 17:39:27 +02:00
Jan Steemann eb7dd14e95 added test case 2016-07-21 16:12:25 +02:00
Jan Steemann 74f7da4f45 don't copy unneeded registers 2016-07-21 12:10:09 +02:00
Jan Steemann 23dc618311 fix a glitch in explainer output 2016-07-21 12:08:50 +02:00
hkernbach f10859a110 grunt build [ci skip] 2016-07-20 18:07:14 +02:00
hkernbach 069ab502d4 gv 2016-07-20 17:53:16 +02:00
hkernbach e2226b0c64 grunt build [ci skip] 2016-07-20 12:59:19 +02:00
hkernbach 0c6bb3b93f ui aql graph support 2016-07-20 12:58:19 +02:00
hkernbach 36ee370708 query spotlight bugfix 2016-07-20 10:59:40 +02:00
hkernbach 3f3748b278 grunt build [ci skip] 2016-07-20 10:50:40 +02:00
hkernbach c287b22f37 Merge branch 'devel' of github.com:arangodb/arangodb into devel 2016-07-20 10:48:43 +02:00
hkernbach 6e62c003b5 aql tabular output 2016-07-20 10:48:36 +02:00
Jan Steemann f269c1c772 fixed issue #1949 2016-07-20 10:17:10 +02:00
Jan Steemann 8369f652a4 fixed issue #1950 2016-07-20 09:38:25 +02:00