java - ArrayIndexOutOfBoundsException when running range query in Accumulo -


i using geomesa 1.1 connect accumulo 1.6.2 java. have no problems querying database specific attributes (specific column values). when try run range query (tried both time , geometric ranges) error.

when check accumulo logs see error:

exception while doing multi-scan      java.lang.arrayindexoutofboundsexception: -1 

but none of code uses arrays. exception thrown underlying library.

this how constructing cql filter:

filter cqlfilter = cql.tofilter("bbox(where, 160.0, 1.0, 170.0, 3.0)"); 

what might causing java.lang.arrayindexoutofboundsexception: -1?

edit

updated question , answer make clear isn't duplicate , provide more general future visitors.

as quick note, looks might using geomesa accumulo quickstart. geometry field there named 'where'. if update filter

filter cqlfilter = cql.tofilter("bbox(where, 160.0, 1.0, 170.0, 3.0)"); 

it may work you.


Comments

Popular posts from this blog

how to insert data php javascript mysql with multiple array session 2 -

multithreading - Exception in Application constructor -

windows - CertCreateCertificateContext returns CRYPT_E_ASN1_BADTAG / 8009310b -