Chris Hostetter
456bc4dbf9
SOLR-12988: Fix Revert
...
an (erroneous) assigment to useSsl was left in the constructor after the (intended) conditional assigment, rendering the conditional logic useless
(cherry picked from commit c8c2f2f25b28da694fae88868b12347bc5a2393c)
2019-06-20 16:05:11 -07:00
Michael Sokolov
9e017ba83c
Add missing javadocs for new BinaryDictionary.ResourceScheme
2019-06-21 00:58:47 +02:00
Michael Sokolov
bdaf10ffa8
LUCENE-8863: enhance Kuromoji DictionaryBuilder tool
...
added tests
enabled ids up to 8191
support loading custom system dictionary from filesystem or classpath
2019-06-21 00:39:48 +02:00
Gus Heck
45b000e7ae
SOLR-13419 - Better infix for TRA collection names
2019-06-20 14:32:14 -04:00
Chris Hostetter
74f880b033
LUCENE-8872: upgrade ECJ on branch_8x to match version used on master - fixes some ECJ bugs when linting
2019-06-20 10:49:38 -07:00
Alan Woodward
ab3f194656
LUCENE-8766: Add monitor sub-project to smoke tester
2019-06-20 17:35:28 +01:00
Alan Woodward
aa771b1a29
LUCENE-8766: Fix timing problem in test
2019-06-20 17:35:15 +01:00
David Smiley
0d51dd06ee
SOLR-13523: Fix Atomic Updates when _nest_path_ is declared.
...
Change the most common test schema to include this field so we better
test our code paths.
2019-06-20 12:00:55 -04:00
Jan Høydahl
0d7a652974
LUCENE-8852 ReleaseWizard tool ( #710 )
...
(cherry picked from commit 87c131baa739f591f2585ba1666b7d98768a5450)
2019-06-20 14:47:15 +02:00
Simon Willnauer
741207da14
LUCENE-8865: Move to executor in IndexSearcher ( #731 )
...
In order to simplify testing this change moves to use the Executor
interface instead of ExecutorService. This change also simplifies
customizing execute methods for use-cases that need to add additional
logic for forking to new threads. This change also adds a test for
the optimization added in LUCENE-8865.
This change is fully backwards compatible since ExecutorService implements
Executor.
2019-06-20 14:27:13 +02:00
Joel Bernstein
1c27c47355
SOLR-10291: Updates CHANGES.txt
2019-06-19 20:58:45 -04:00
Joel Bernstein
f5a39b5d08
SOLR-10291: Add match Stream Evaluator to support regex matching
2019-06-19 19:46:34 -04:00
Cao Manh Dat
150e4f9863
SOLR-12988: Revert changes
2019-06-19 21:08:01 +01:00
Joel Bernstein
cf8ac4dbcf
SOLR-13560: Update CHANGES.txt
2019-06-19 09:58:39 -04:00
Cao Manh Dat
64e3cc1789
SOLR-12988: Skip running tests with SSL on Java 11 to 11.0.2
2019-06-19 10:44:43 +01:00
Adrien Grand
21b0892d38
LUCENE-8847: Fix typo in CHANGES.
2019-06-19 09:51:42 +02:00
Joel Bernstein
d82fe011bf
SOLR-13560: Fix precommit
2019-06-18 22:35:32 -04:00
Joel Bernstein
ecd702bf4a
SOLR-13560: Add isNull and notNull Stream Evaluators
2019-06-18 22:35:17 -04:00
Noble Paul
61292c90ed
syntax error
2019-06-19 12:31:47 +10:00
Noble Paul
d12a800467
typo
2019-06-19 12:31:33 +10:00
Noble Paul
0623e1275e
typo
2019-06-19 12:31:14 +10:00
Michael Sokolov
badcc4e6c7
LUCENE-8781: add FST array-with-gap addressing to Util.readCeilArc
2019-06-18 22:40:17 +02:00
Adrien Grand
0a915c3292
LUCENE-8853: Don't return a FileSwitchDirectory when asked for a FS directory.
2019-06-18 17:15:15 +02:00
Noble Paul
545b61ca23
SOLR-13329: changed the put:on-each to put: on-each-node
2019-06-19 01:03:32 +10:00
Simon Willnauer
4165184b16
LUCENE-8865: Use incoming thread for execution if IndexSearcher has an executor ( #725 )
...
Today we don't utilize the incoming thread for a search when IndexSearcher
has an executor. This thread is only idling but can be used to execute a search
once all other collectors are dispatched.
2019-06-18 14:57:21 +02:00
Cao Manh Dat
968830a2be
SOLR-12988: Avoid using TLSv1.3 for HttpClient
2019-06-18 13:17:51 +01:00
Daniel Collins
07023aea1a
SOLR-13434: Fix opentracing mock dependency for Solr core tests
2019-06-18 11:42:42 +01:00
Luca Cavanna
327a6dfeb4
LUCENE-8796: Use exponential search in IntArrayDocIdSetIterator#advance ( #667 )
2019-06-18 10:30:17 +02:00
Simon Willnauer
d391565ca5
LUCENE-8853: Try parsing original file extension from tmp file ( #716 )
...
FileSwitchDirectory fails if the tmp file are not in the same directory
as the file it's renamed to. This is correct behavior but breaks with
tmp files used with index sorting. This change tries best effort to find
the right extension directory if the file ends with `.tmp`
2019-06-18 08:48:25 +02:00
Chris Hostetter
29e060c6f9
eliminate CPU hogging spin-loops in OverseerTest
...
this test already uses waitForState (frequently via verifyReplicaStatus) so there is no reason to include CPU/network/ZK intensive infinite loop checks looking for udpated cluster state
(cherry picked from commit 3030ea9d9418626ffb3c3bbd174aee344a778b25)
2019-06-17 15:55:20 -07:00
Chris Hostetter
592d10d7ce
SOLR-13490: fix TestWaitForStateWithJettyShutdowns to use correct (randomized) JettyConfig
...
(cherry picked from commit 7eb8703df64b4fdda8113ddcbcd0b4d2413ecc38)
2019-06-17 15:34:24 -07:00
Chris Hostetter
2f2333a781
SOLR-13490: Fix CollectionStateWatcher/CollectionStatePredicate based APIs in ZkStateReader and CloudSolrClient to be triggered on liveNode changes.
...
Also add Predicate<DocCollection> equivilents for callers that don't care about liveNodes.
(cherry picked from commit 5a974860fa83408a86ca64b417f3111b037da7eb)
2019-06-17 10:00:05 -07:00
Noble Paul
a7af74f0c4
SOLR-13347: moved to "New Features"
2019-06-17 17:01:24 +10:00
Noble Paul
0c529cb968
SOLR-13534 : Dynamic loading to support loading jars from a URL
2019-06-17 17:00:38 +10:00
Noble Paul
562c462ee3
SOLR-13534: Dynamic loading of jars from a remote url ( #712 )
...
* SOLR-13534 : Dynamic loading to support loading jars from a URL
2019-06-17 17:00:26 +10:00
Ishan Chattopadhyaya
4c11ef3367
SOLR-13434: Fixing documentation regarding samplePercentage clusterprop
2019-06-16 22:53:08 +05:30
Joel Bernstein
d58b8b7590
SOLR-13552: Update CHANGES.txt
2019-06-15 14:32:42 -04:00
Joel Bernstein
57c22defb7
SOLR-13552: Add recNum Stream Evaluator
2019-06-15 13:55:37 -04:00
Joel Bernstein
3bc719cfec
SOLR-13550: Update CHANGES.txt
2019-06-14 19:29:02 -04:00
Gus Heck
6cf6ecc44f
SOLR-13551 Minor fix in aliases.adoc
...
(cherry picked from commit 4ba4444154fd7394bca3123d19306a5afd132bc8)
2019-06-14 18:12:00 -04:00
Joel Bernstein
28bfe7903e
SOLR-13550: Allow zplot to automatically create the x axis
2019-06-14 17:51:18 -04:00
Gus Heck
2009c81374
SOLR-13420 Routed Aliases now use collection properties instead of core properties
2019-06-14 15:44:36 -04:00
Cao Manh Dat
22fca67bfe
SOLR-13541: Upgrade Jetty to 9.4.19.v20190610
2019-06-14 15:45:45 +01:00
Mikhail Khludnev
c73761b798
SOLR-13333: make terms.ttf work without terms.list in standalone mode
2019-06-14 15:46:22 +02:00
Christine Poerschke
908754a764
SOLR-13515: remove SolrPluginUtils.IdentityRegenerator in favour of NoOpRegenerator
2019-06-14 13:12:33 +01:00
Christine Poerschke
5c65d12460
SOLR-13511: Add SearchHandler.newResponseBuilder method to facilitate custom plugins' maintenance of per-request state in a custom ResponseBuilder. (Ramsey Haddad, Christine Poerschke)
2019-06-14 13:12:32 +01:00
Jan Høydahl
a53a80cfba
LUCENE-8861: Script to find open PRs that needs attention ( #719 )
...
(cherry picked from commit d2793688ca6d2d7e0f334108c9a504f45a78d262)
2019-06-14 13:31:01 +02:00
Erick Erickson
47e67be775
SOLR-12013: collections API CUSTERSTATUS command fails when configset missing
...
(cherry picked from commit 81e8b385a4cac5268c2cd920240d0e717f55713a)
2019-06-13 15:42:00 -07:00
Alan Woodward
4071703ce2
LUCENE-8766: Pass BytesRef offset/length when decoding from input stream
2019-06-13 16:23:45 +01:00
Jan Høydahl
79fd32091e
SOLR-8754: CHANGES
...
(cherry picked from commit bc97c4caa0f556d54d6daf0cba2b71bd2706cbec)
2019-06-13 12:58:56 +02:00