[
https://issues.apache.org/jira/browse/LUCENE-6699?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14705982#comment-14705982
]
Michael McCandless commented on LUCENE-6699:
--------------------------------------------
OK I committed that patch, thanks [~daddywri], but unfortunately I hit another
failure:
{noformat}
[junit4] 2> NOTE: reproduce with: ant test -Dtestcase=TestGeo3DPointField
-Dtests.method=testRandomMedium -Dtests.seed=71C652F660067AD3
-Dtests.multiplier=5 -Dtests.slow=true
-Dtests.linedocsfile=/lucenedata/hudson.enwiki.random.lines.txt.fixed
-Dtests.locale=zh_HK -Dtests.timezone=America/Mazatlan -Dtests.asserts=true
-Dtests.file.encoding=UTF-8
[junit4] ERROR 9.72s | TestGeo3DPointField.testRandomMedium <<<
[junit4] > Throwable #1:
com.carrotsearch.randomizedtesting.UncaughtExceptionError: Captured an uncaught
exception in thread: Thread[id=14, name=T0, state=RUNNABLE,
group=TGRP-TestGeo3DPointField]
[junit4] > at
__randomizedtesting.SeedInfo.seed([71C652F660067AD3:CC18655E216319B5]:0)
[junit4] > Caused by: java.lang.AssertionError: expected WITHIN (1) or
OVERLAPS (2) but got 0; shape=GeoCircle: {planetmodel=PlanetModel.SPHERE,
center=[lat=-0.004282454525970269, lon=-1.6739831367422277E-4],
radius=1.959639723134033E-6(1.1227908550176523E-4)}; XYZSolid=XYZSolid:
{planetmodel=PlanetModel.SPHERE, isWholeWorld=false, minXplane=[A=1.0, B=0.0,
C=0.0, D=-0.999990807894643, side=1.0], maxXplane=[A=1.0, B=0.0, C=0.0,
D=-0.9999908246908629, side=-1.0], minYplane=[A=0.0, B=1.0, C=0.0,
D=1.693563105447845E-4, side=1.0], maxYplane=[A=0.0, B=1.0, C=0.0,
D=1.6543724525666504E-4, side=-1.0], minZplane=[A=0.0, B=0.0, C=1.0,
D=0.004284400993353207, side=1.0], maxZplane=[A=0.0, B=0.0, C=1.0,
D=0.004280481873941856, side=-1.0]}
[junit4] > at
__randomizedtesting.SeedInfo.seed([71C652F660067AD3]:0)
[junit4] > at
org.apache.lucene.bkdtree3d.PointInGeo3DShapeQuery$1.scorer(PointInGeo3DShapeQuery.java:105)
[junit4] > at
org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.scorer(LRUQueryCache.java:589)
[junit4] > at
org.apache.lucene.search.Weight.bulkScorer(Weight.java:135)
[junit4] > at
org.apache.lucene.search.AssertingWeight.bulkScorer(AssertingWeight.java:69)
[junit4] > at
org.apache.lucene.search.AssertingWeight.bulkScorer(AssertingWeight.java:69)
[junit4] > at
org.apache.lucene.search.IndexSearcher.search(IndexSearcher.java:618)
[junit4] > at
org.apache.lucene.search.AssertingIndexSearcher.search(AssertingIndexSearcher.java:92)
[junit4] > at
org.apache.lucene.search.IndexSearcher.search(IndexSearcher.java:425)
[junit4] > at
org.apache.lucene.bkdtree3d.TestGeo3DPointField$4._run(TestGeo3DPointField.java:586)
[junit4] > at
org.apache.lucene.bkdtree3d.TestGeo3DPointField$4.run(TestGeo3DPointField.java:520)
[junit4] 2> NOTE: test params are:
codec=FastDecompressionCompressingStoredFields(storedFieldsFormat=CompressingStoredFieldsFormat(compressionMode=FAST_DECOMPRESSION,
chunkSize=26391, maxDocsPerChunk=1, blockSize=992),
termVectorsFormat=CompressingTermVectorsFormat(compressionMode=FAST_DECOMPRESSION,
chunkSize=26391, blockSize=992)),
sim=RandomSimilarityProvider(queryNorm=false,coord=yes): {}, locale=zh_HK,
timezone=America/Mazatlan
[junit4] 2> NOTE: Linux 3.13.0-46-generic amd64/Oracle Corporation
1.8.0_40 (64-bit)/cpus=8,threads=1,free=333320104,total=449314816
[junit4] 2> NOTE: All tests run in this JVM: [TestGeo3DPointField]
[junit4] Completed [1/1] in 9.85s, 1 test, 1 error <<< FAILURES!
{noformat}
> Integrate lat/lon BKD and spatial3d
> -----------------------------------
>
> Key: LUCENE-6699
> URL: https://issues.apache.org/jira/browse/LUCENE-6699
> Project: Lucene - Core
> Issue Type: New Feature
> Reporter: Michael McCandless
> Assignee: Michael McCandless
> Attachments: Geo3DPacking.java, LUCENE-6699.patch, LUCENE-6699.patch,
> LUCENE-6699.patch, LUCENE-6699.patch, LUCENE-6699.patch, LUCENE-6699.patch,
> LUCENE-6699.patch, LUCENE-6699.patch, LUCENE-6699.patch, LUCENE-6699.patch,
> LUCENE-6699.patch, LUCENE-6699.patch, LUCENE-6699.patch, LUCENE-6699.patch,
> LUCENE-6699.patch, LUCENE-6699.patch, LUCENE-6699.patch, LUCENE-6699.patch,
> LUCENE-6699.patch, LUCENE-6699.patch, LUCENE-6699.patch, LUCENE-6699.patch,
> LUCENE-6699.patch
>
>
> I'm opening this for discussion, because I'm not yet sure how to do
> this integration, because of my ignorance about spatial in general and
> spatial3d in particular :)
> Our BKD tree impl is very fast at doing lat/lon shape intersection
> (bbox, polygon, soon distance: LUCENE-6698) against previously indexed
> points.
> I think to integrate with spatial3d, we would first need to record
> lat/lon/z into doc values. Somewhere I saw discussion about how we
> could stuff all 3 into a single long value with acceptable precision
> loss? Or, we could use BinaryDocValues? We need all 3 dims available
> to do the fast per-hit query time filtering.
> But, second: what do we index into the BKD tree? Can we "just" index
> earth surface lat/lon, and then at query time is spatial3d able to
> give me an enclosing "surface lat/lon" bbox for a 3d shape? Or
> ... must we index all 3 dimensions into the BKD tree (seems like this
> could be somewhat wasteful)?
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]