Commit Graph

3354 Commits

Author SHA1 Message Date
Christine Poerschke 30c9f4311a SOLR-9627: Add QParser.getSortSpec, deprecate misleadingly named QParser.getSort (Judith Silverman, Christine Poerschke) 2016-10-17 18:04:40 -04:00
Hrishikesh Gadre 06ae3eb2ec SOLR-9642: Refactor the snapshot cleanup mechanism to rely on Lucene
The current snapshot cleanup mechanism is based on reference counting
the index files shared between multiple segments. Since this mechanism
completely skips the Lucene APIs, it is not portable (e.g. it doesn't
work on 4.10.x version).

This patch provides an alternate implementation which relies exclusively
on Lucene IndexWriter (+ IndexDeletionPolicy) for cleanup.

mend
2016-10-17 13:57:11 -04:00
Alan Woodward c9eb9e10e4 SOLR-9566: Don't put replicas into recovery when collections are created 2016-10-17 17:19:31 +01:00
Christine Poerschke c620fc2954 SOLR-9625: Add HelloWorldSolrCloudTestCase class (Christine Poerschke, Alan Woodward, Alexandre Rafalovitch) 2016-10-15 10:18:17 -04:00
Jan Høydahl bc5e06e34c SOLR-9325: solr.log is now written to $SOLR_LOGS_DIR without changing log4j.properties
(cherry picked from commit 33db4de)
2016-10-14 23:20:56 +02:00
Dennis Gove edde433594 SOLR-8487: Adds CommitStream to support sending commits to a collection being updated 2016-10-14 11:43:13 -04:00
Dennis Gove 5e6a8e7c75 SOLR-9103: Restore ability for users to add custom Streaming Expressions 2016-10-14 11:35:38 -04:00
Mikhail Khludnev 96e0c2ff48 SOLR-9639: CDCR Tests only fix. Wait until recovery is over before
remove the tmp_colletion.
2016-10-14 14:48:35 +03:00
Jan Høydahl df41706295 SOLR-9610: New AssertTool in SolrCLI for easier cross platform assertions from command line
(cherry picked from commit 6512d0c)
2016-10-12 09:22:53 +02:00
Kevin Risden 2e03aa97b2 SOLR-8969: Resolve NPE for SQLHandler when in non-cloud mode 2016-10-11 11:14:42 -05:00
Joel Bernstein ccc10fd593 SOLR-9337: Update CHANGES.txt 2016-10-10 21:53:00 -04:00
Kevin Risden 9ee5569469 SOLR-8385: Narrow StreamFactory.withFunctionName clazz parameter to prevent misconfiguration 2016-10-07 08:24:25 -05:00
Alan Woodward b58ccc3906 SOLR-9604,SOLR-9608: Ensure SSL connections are re-used.
Fix ConnectionReuseTest. Add coverage for all SolrClients.
Remove explicit cacheKey for HttpRequestContext, make it singleton.
2016-10-07 12:03:07 +03:00
Kevin Risden b1a5c5f92e SOLR-9146: Parallel SQL engine should support >, >=, <, <=, <>, != syntax 2016-10-06 13:11:44 -05:00
markrmiller 360ac3ad26 SOLR-9278: Update issue number in CHANGES to be orig rather than dupe. 2016-10-06 11:53:49 -04:00
markrmiller 82440f307a SOLR-9470: Index replication interactions with IndexWriter can cause deadlock. 2016-10-06 11:47:31 -04:00
yonik 59d83f57e1 SOLR-9592: use correct leaf reader rather than top-level reader in SolrIndexReaderm.decorateDocValues 2016-10-05 15:15:32 -04:00
Noble Paul ffef46ec95 SOLR-9589: Remove jackson dependency from SolrJ 2016-10-04 19:14:58 +05:30
Alan Woodward 1e3781500c SOLR-9563: Collection creation can fail if a node doesn't update its state quickly enough 2016-10-04 13:48:55 +01:00
Alexandre Rafalovitch 5b10662069 SOLR-8140: Remove unfinished admin-extra
Includes UI element and never-implemented commented-out code
2016-10-03 23:52:46 +07:00
Noble Paul 8e31e50138 SOLR-9520: Kerberos delegation support in SolrJ 2016-10-03 19:13:51 +05:30
Noble Paul c067df4136 SOLR-9588: Remove Guava dependency from SolrJ 2016-10-03 13:12:48 +05:30
Alan Woodward a2e24d1fc5 SOLR-6677: Call out logging changes in upgrading section of CHANGES 2016-10-01 20:21:20 +01:00
Shalin Shekhar Mangar f8a4ccf97b SOLR-5041: Add a test to make sure that a leader always recovers from log on startup
(cherry picked from commit 7a8ff69)
2016-09-30 20:01:32 +05:30
Alan Woodward 45e2e25233 SOLR-9205: Parse schema in LukeResponse 2016-09-30 10:59:06 +01:00
Alan Woodward 1f0d75b802 SOLR-9556: Exit failover thread on interrupt 2016-09-30 09:06:10 +01:00
Mikhail Khludnev 1c614e1d4d SOLR-9554: fix NullPointerException when cores move schema.xml to
managed-schema concurrently. No new test is added yet.
2016-09-30 08:10:52 +03:00
Joel Bernstein 5adb8f1bd5 SOLR-9258: Update CHANGES.txt 2016-09-29 21:03:57 -04:00
Shalin Shekhar Mangar effd224576 SOLR-9504: A replica with an empty index becomes the leader even when other more qualified replicas are in line
(cherry picked from commit ce24de5)
2016-09-29 17:22:46 +05:30
Noble Paul c904fe7d81 SOLR-9576: Make FieldAnalysisRequestHandler, DocumentAnalysisRequestHandler & DumpRequestHandler implicit 2016-09-28 20:06:04 +05:30
Jan Høydahl 4ce1908a21 SOLR-7436: Solr stops printing stacktraces in log and output (add -XX:-OmitStackTraceInFastThrow to solr.in.{sh|cmd))
(cherry picked from commit eba3939)
2016-09-28 10:08:51 +02:00
Noble Paul b0d0f39b3a SOLR-9572: config API to show expanded useParams for request handlers inline 2016-09-28 11:31:13 +05:30
Steve Rowe 49c5a749c3 SOLR-9411: Better validation for Schema API add-field 2016-09-27 18:17:21 -04:00
Christine Poerschke d195f7ad0e SOLR-9567: Make ReRankQParserPlugin's private ReRankCollector a public class of its own. (Christine Poerschke) 2016-09-27 13:23:20 +01:00
Alan Woodward 1d46b419df SOLR-6677: More log noise reduction 2016-09-27 12:06:32 +01:00
Jan Høydahl 53fcc7563c SOLR-9411: Better validation of dynamic field for Schema API
(cherry picked from commit 8046fe2)
2016-09-27 12:21:46 +02:00
Jan Høydahl 30c26b3313 SOLR-9547: Do not allow bin/solr start as root user (unless -force param specified)
(cherry picked from commit 6b28af0)
2016-09-27 09:24:40 +02:00
Jan Høydahl 047b643d2b SOLR-9548: The beginning of solr.log now starts with a more informative welcome message
(cherry picked from commit 4c7a8c4)
2016-09-26 23:23:14 +02:00
Noble Paul ecdfe97d34 SOLR-9557: Every implicit requesthandler now has a default 'useParams' attribute 2016-09-26 16:59:15 +05:30
Alan Woodward 45fcd396f7 SOLR-9500: Add LogLevel annotation for test-specific logging changes 2016-09-26 09:40:28 +01:00
Noble Paul 20c3c86475 SOLR-9558: DIH TemplateTransformerto to support multivalued fields 2016-09-26 12:53:35 +05:30
Mikhail Khludnev eb10b2c266 SOLR-8395: join single value numerics. 2016-09-24 18:21:50 +03:00
Joel Bernstein 63ac156c76 SOLR-9537: Update CHANGES.txt 2016-09-23 22:36:27 -04:00
Christine Poerschke b8dd3be93a SOLR-9551: Add JSONWriter constructor variant, JSONWriterTest.testConstantsUnchanged test. (Jonny Marks, Christine Poerschke) 2016-09-23 13:46:44 +01:00
Shalin Shekhar Mangar 2124f1250c SOLR-6090: Remove unreachable printLayout usage in cloud tests
(cherry picked from commit 3eb0f7c)
2016-09-23 18:10:51 +05:30
Mikhail Khludnev 4278356564 SOLR-9330: Fix AlreadyClosedException on admin/mbeans?stats=true 2016-09-23 07:59:34 +03:00
Jan Høydahl 97bb81db1a SOLR-9534: You can now set Solr's log level through environment variable SOLR_LOG_LEVEL and -q and -v options to bin/solr
(cherry picked from commit 73c2edd)
2016-09-22 21:22:28 +02:00
Noble Paul 33d8fec4e2 Merge remote-tracking branch 'origin/branch_6x' into branch_6x 2016-09-22 23:29:23 +05:30
Noble Paul ec5a53d706 SOLR-9542: Kerberos delegation tokens requires Jackson library 2016-09-22 23:29:09 +05:30
Jan Høydahl 0357500306 SOLR-6677: Reduced logging during Solr startup, moved more logs to DEBUG level
(cherry picked from commit f391d57)
2016-09-22 19:24:24 +02:00