[ 
https://issues.apache.org/jira/browse/SOLR-16933?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17759664#comment-17759664
 ] 

Chris M. Hostetter commented on SOLR-16933:
-------------------------------------------



For the past 4 days, every testclass that inherits 
{{AbstractIncrementalBackupTest.testBackupIncremental}} has been failing 
reliably during nightly jenkins runs on main.

The seeds reproduce for me locally...

{noformat}
   >     java.lang.AssertionError: expected:<1> but was:<null>
   >         at 
__randomizedtesting.SeedInfo.seed([FC42CD1F24172A4C:FB8762D418FF1431]:0)
   >         at org.junit.Assert.fail(Assert.java:89)
   >         at org.junit.Assert.failNotEquals(Assert.java:835)
   >         at org.junit.Assert.assertEquals(Assert.java:120)
   >         at org.junit.Assert.assertEquals(Assert.java:146)
   >         at 
org.apache.solr.cloud.api.collections.AbstractIncrementalBackupTest.testBackupIncremental(AbstractIncrementalBackupTest.java:295)

...

  2> NOTE: reproduce with: gradlew test --tests 
LocalFSCloudIncrementalBackupTest.testBackupIncremental 
-Dtests.seed=FC42CD1F24172A4C -Dtests.multiplier=2 -Dtests.nightly=true 
-Dtests.linedocsfile=/home/jenkins/jenkins-slave/workspace/Solr/Solr-NightlyTests-main/test-data/enwiki.random.lines.txt
 -Dtests.locale=ar-TN -Dtests.timezone=Kwajalein -Dtests.asserts=true 
-Dtests.file.encoding=UTF-8
{noformat}

Git bisect identifies 3 possible first bad commits...

* SOLR-16825: First known commit where code compiles clean, and test fails.
** 0a47cf8ac8420feb623600ff736aed6503b53b20
* SOLR-16933: Neither commit compiles, so bisect must skip and can't confirm if 
test passes or fails...
** f5b0d22f06363a06db25368f70e0d429a0e3b192
** 57acde3752bec704442cd08d54fc516f93ee4169

...both issues touch backup related code, so I'm posting this commit in both 
issues as i don't have a good grasp of which one seems like the more likelye 
suspect.

Full bisect log...

{noformat}
# bad: [ce6c13e41806233daaf25f1a7545c7aad34c169d] SOLR-15367 Convert "rid" 
functionality into a default Tracer (#1854)
# good: [473cea28b55dcf03fb2338399af321f425c90002] Cleaning up old code to 
prevent warnings (#1834)
git bisect start 'ce6c13e41806233daaf25f1a7545c7aad34c169d' 
'473cea28b55dcf03fb2338399af321f425c90002'
# skip: [57acde3752bec704442cd08d54fc516f93ee4169] SOLR-16933: Use 
JSONMapResponseWriter for CLI errors
git bisect skip 57acde3752bec704442cd08d54fc516f93ee4169
# bad: [0a47cf8ac8420feb623600ff736aed6503b53b20] SOLR-16825: Migrate v2 
definitions to 'api' module (#1859)
git bisect bad 0a47cf8ac8420feb623600ff736aed6503b53b20
# skip: [f5b0d22f06363a06db25368f70e0d429a0e3b192] SOLR-16933: Include full 
query response in API tool (#1863)
git bisect skip f5b0d22f06363a06db25368f70e0d429a0e3b192
# only skipped commits left to test
# possible first bad commit: [0a47cf8ac8420feb623600ff736aed6503b53b20] 
SOLR-16825: Migrate v2 definitions to 'api' module (#1859)
# possible first bad commit: [57acde3752bec704442cd08d54fc516f93ee4169] 
SOLR-16933: Use JSONMapResponseWriter for CLI errors
# possible first bad commit: [f5b0d22f06363a06db25368f70e0d429a0e3b192] 
SOLR-16933: Include full query response in API tool (#1863)
{noformat}






> The API Tool throws away the response for Solr Queries
> ------------------------------------------------------
>
>                 Key: SOLR-16933
>                 URL: https://issues.apache.org/jira/browse/SOLR-16933
>             Project: Solr
>          Issue Type: Bug
>      Security Level: Public(Default Security Level. Issues are Public) 
>          Components: SolrCLI
>    Affects Versions: 9.3
>            Reporter: Houston Putman
>            Assignee: Houston Putman
>            Priority: Major
>             Fix For: 9.4
>
>          Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> When running Solr 9.3 in Docker:
> {code:bash}
> $ solr api -get http://localhost:8983/solr/test/select
> {
>   "responseHeader":{
>     "zkConnected":true,
>     "status":0,
>     "QTime":0,
>     "params":{
>       "wt":"javabin",
>       "version":"2"}},
>   "response":[]}
> {code}
> {code:bash}
> $ curl http://localhost:8983/solr/test/select
> {
>   "responseHeader":{
>     "zkConnected":true,
>     "status":0,
>     "QTime":1,
>     "params":{
>       "version":"2"
>     }
>   },
>   "response":{
>     "numFound":0,
>     "start":0,
>     "numFoundExact":true,
>     "docs":[ ]
>   }
> {code}
> When running Solr 9.2 in docker:
> {code:bash}
> $ solr api -get http://localhost:8983/solr/test/select
> {
>   "responseHeader":{
>     "zkConnected":true,
>     "status":0,
>     "QTime":7,
>     "params":{"wt":"json"}},
>   "response":{
>     "numFound":0,
>     "start":0,
>     "numFoundExact":true,
>     "docs":[]}}
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to