I tried with the accumulo6 branch this time and got the following error.
Failed to get multiscan result
java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Malformed attribute
at org.apache.accumulo.tserver.TabletServer$ScanTask.get(TabletServer.java:759)
at org.apache.accumulo.tserver.TabletServer$ThriftClientHandler.continueMultiScan(TabletServer.java:1422)
at org.apache.accumulo.tserver.TabletServer$ThriftClientHandler.continueMultiScan(TabletServer.java:1408)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.accumulo.trace.instrument.thrift.TraceWrap$1.invoke(TraceWrap.java:63)
at com.sun.proxy.$Proxy23.continueMultiScan(Unknown Source)
at org.apache.accumulo.core.tabletserver.thrift.TabletClientService$Processor$continueMultiScan.getResult(TabletClientService.java:2276)
at org.apache.accumulo.core.tabletserver.thrift.TabletClientService$Processor$continueMultiScan.getResult(TabletClientService.java:2260)
at org.apache.thrift.ProcessFunction.process(ProcessFunction.java:39)
at org.apache.thrift.TBaseProcessor.process(TBaseProcessor.java:39)
at org.apache.accumulo.server.util.TServerUtils$TimedProcessor.process(TServerUtils.java:171)
at org.apache.thrift.server.AbstractNonblockingServer$FrameBuffer.invoke(AbstractNonblockingServer.java:478)
at org.apache.accumulo.server.util.TServerUtils$THsHaServer$Invocation.run(TServerUtils.java:231)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at org.apache.accumulo.trace.instrument.TraceRunnable.run(TraceRunnable.java:47)
at org.apache.accumulo.core.util.LoggingRunnable.run(LoggingRunnable.java:34)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.IllegalArgumentException: Malformed attribute
at org.locationtech.geomesa.utils.geotools.SimpleFeatureTypes$SpecParser.parse(SimpleFeatureTypes.scala:370)
at org.locationtech.geomesa.utils.geotools.SimpleFeatureTypes$.parse(SimpleFeatureTypes.scala:374)
at org.locationtech.geomesa.utils.geotools.SimpleFeatureTypes$.createType(SimpleFeatureTypes.scala:44)
at org.locationtech.geomesa.core.iterators.SpatioTemporalIntersectingIterator.init(SpatioTemporalIntersectingIterator.scala:76)
at org.apache.accumulo.core.iterators.IteratorUtil.loadIterators(IteratorUtil.java:246)
at org.apache.accumulo.core.iterators.IteratorUtil.loadIterators(IteratorUtil.java:216)
at org.apache.accumulo.core.iterators.IteratorUtil.loadIterators(IteratorUtil.java:194)
at org.apache.accumulo.tserver.Tablet$ScanDataSource.createIterator(Tablet.java:1985)
at org.apache.accumulo.tserver.Tablet$ScanDataSource.iterator(Tablet.java:1923)
at org.apache.accumulo.core.iterators.system.SourceSwitchingIterator.seek(SourceSwitchingIterator.java:163)
at org.apache.accumulo.tserver.Tablet.lookup(Tablet.java:1499)
at org.apache.accumulo.tserver.Tablet.lookup(Tablet.java:1606)
at org.apache.accumulo.tserver.TabletServer$ThriftClientHandler$LookupTask.run(TabletServer.java:1119)
at org.apache.accumulo.trace.instrument.TraceRunnable.run(TraceRunnable.java:47)
... 5 more
The only change from this branch to what I am compiling is
@@ -47,7 +47,7 @@
<!-- environment-dependent versions -->
<zookeeper.version>3.4.5</zookeeper.version>
<accumulo.version>1.6.1</accumulo.version>
- <hadoop.version>2.2.0</hadoop.version>
+ <hadoop.version>2.5.0-cdh5.3.0</hadoop.version>
<scalding.version>0.11.2</scalding.version>
<!-- logging properties
@@ -958,6 +958,11 @@
</snapshots>
</repository>
<repository>
+ <id>cloudera</id>
+ <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
+ </repository>
+
+ <repository>
<id>geotools</id>
<url>http://download.osgeo.org/webdav/geotools</url>
</repository>
(END)