Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ArangoDB server shutdown unexpectedly. #3044

Closed
6 of 27 tasks
lkevin0 opened this issue Aug 16, 2017 · 2 comments
Closed
6 of 27 tasks

ArangoDB server shutdown unexpectedly. #3044

lkevin0 opened this issue Aug 16, 2017 · 2 comments
Labels
1 Bug 2 Fixed Resolution 3 AQL Query language related
Milestone

Comments

@lkevin0
Copy link

lkevin0 commented Aug 16, 2017

my environment running ArangoDB

I'm using the latest ArangoDB of the respective release series:

  • 2.8
  • 3.0
  • 3.1
  • 3.2.1
  • self-compiled devel branch

Mode:

  • Cluster
  • Single-Server

Storage-Engine:

  • mmfiles
  • rocksdb

On this operating system:

  • DCOS on
    • AWS
    • Azure
    • own infrastructure
  • Linux
    • Debian .deb
    • Ubuntu .deb
    • SUSE .rpm
    • RedHat .rpm
    • Fedora .rpm
    • Gentoo
    • docker - official docker library
    • other:
  • Windows, version:
  • MacOS, version:

this is an AQL-related issue:

[ ] I'm using graph features

I'm issuing AQL via:

  • web interface with this browser: running on this OS:
  • arangosh
  • this Driver:

These are the steps to reproduce:

  1. Create collection using createCollection.js via arangosh
arangosh --javascript.execute createCollection.js
  1. Import data
arangoimp --collection transactions --file data.json
  1. Execute a query
db._query(`
FOR t IN transactions
  COLLECT accountId = t.accountId INTO g
  FILTER LENGTH(g) > 3
  LET previous = SLICE(g[*].t.status,-4, 3)
  COLLECT p = previous INTO G
RETURN DISTINCT {
  "pattern": p,
  "count": LENGTH(FOR i IN G[*].g[*].t.status FILTER LAST(i) == "E" OR LAST(i) == "F" OR LAST(i) == "G" RETURN i),
  "total": LENGTH(G),
  "accountIds": UNIQUE(G[*].g[*].t.accountId[**]),
  "subPatterns": (FOR i IN G[*].g[*].t.status RETURN DISTINCT SLICE(i,-4, 4))
}`);

Got ArangoError 2001: Connection closed by remote
and ArangoDB Server shut itself down immediately.

Script and data:
arango.zip

@jsteemann jsteemann added 1 Bug 3 AQL Query language related labels Aug 16, 2017
jsteemann added a commit that referenced this issue Aug 16, 2017
@jsteemann jsteemann added the 2 Fixed Resolution label Aug 16, 2017
@jsteemann jsteemann added this to the 3.2.2 milestone Aug 16, 2017
@jsteemann
Copy link
Contributor

Fixed in 3.2.2

fceller pushed a commit that referenced this issue Aug 17, 2017
ObiWahn added a commit that referenced this issue Aug 18, 2017
…ture/planning-499-different-error-codes-for-version-check

* 'devel' of https://github.com/arangodb/arangodb:
  Feature/remove manual zippery (#3036)
  Fixed issue with autoincrement data not being persisted properly in RocksDB (#3059). (#3067)
  Bug fix/issues 1708 (#3060)
  Fix issue #3037: Foxx, internal server error when I try to add a new service (#3056)
  Bug fix/v8 syslog (#3055)
  Bug fix/small issues 1608 (#3049)
  fixed issue #3044 (#3048)
  fixed issue #3039 (#3045)
  Fix foxx github url (#3042)
  we need to substitute the package name here too - else enterprise pac… (#3025)
  Fixing engine stats in arangosh (#3038)
  MSVC is pendantic (but right) (#3047)
  reduce log spam (#3051)
  Feature/build docker to build using stretch container (#3062)
  build docker to build using stretch container (#3061)
  fix and extend journal-related tests (#3043)
@dothebart
Copy link
Contributor

ArangoDB 3.2.2 containing this bugfix is available for download - thanks for reporting.

Closing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
1 Bug 2 Fixed Resolution 3 AQL Query language related
Projects
None yet
Development

No branches or pull requests

3 participants