Ishan Chattopadhyaya
9a1702a8f5
SOLR-8029: Reverting the previous commit and the merge
2017-02-15 07:13:28 +05:30
Noble Paul
325cbf0018
Revert "Merge remote-tracking branch 'origin/master'"
...
This reverts commit 26298f35df
, reversing
changes made to 65c6c576b7
.
undoing the merge commit
2017-02-14 17:32:14 -08:00
Christine Poerschke
738da0998a
LUCENE-7693: Replace "org.apache." logic in GetMavenDependenciesTask. (Daniel Collins, Christine Poerschke)
2017-02-14 14:27:44 +00:00
markrmiller
387c8e9c2d
SOLR-10072: The test TestSelectiveWeightCreation appears to be unreliable.
2017-02-12 17:04:23 -05:00
Christine Poerschke
c20853bf09
SOLR-10083: Fix instanceof check in ConstDoubleSource.equals (Pushkar Raste via Christine Poerschke)
2017-02-08 17:18:02 +00:00
Tomas Fernandez Lobbe
59c41e2a6c
SOLR-10011: Add NumberType getNumberType() to FieldType and deprecate LegacyNumericType getNumericType()
...
Modify references to getNumericType() to use the new getNumberType(). NumberType is shared for the different numeric implementations supported in Solr (TrieFields and PointFields).
CC SOLR-8396
2017-02-07 10:38:22 -08:00
Christine Poerschke
f47bbb35ae
SOLR-10077: merge TestFeatureStore and TestFeatureLtrScoringModel into TestManagedFeatureStore.
2017-02-06 17:26:56 +01:00
markrmiller
730df22e40
SOLR-10032: Ignore tests that run no test methods.
2017-01-31 19:27:03 -05:00
Alan Woodward
94e3460305
Revert "LUCENE-7628: Scorer.getChildren() returns only matching Scorers"
...
This reverts commit 5bdc492c9c
.
2017-01-23 11:30:03 +00:00
Alan Woodward
5bdc492c9c
LUCENE-7628: Scorer.getChildren() returns only matching Scorers
2017-01-23 09:35:16 +00:00
Adrien Grand
71ca2a84ba
LUCENE-7643: Move IndexOrDocValuesQuery to core.
2017-01-20 13:42:31 +01:00
Uwe Schindler
4eafdb337a
SOLR-9893: Update Mockito to version 2.6.2 for Java 9 support. Disable all legacy EasyMock tests when running on Java 9 until they were migrated to Mockito
2017-01-14 12:43:24 +01:00
Christine Poerschke
987e2650b5
SOLR-8542: changed Solr Reference Guide section references from "Result Reranking" to "Learning To Rank"
...
(Also added bullet points for the solr/contrib/ltr/README links.)
2017-01-12 17:56:18 +00:00
Christine Poerschke
024c4031e5
SOLR-8542: expand 'Assemble training data' content in solr/contrib/ltr/README
...
(Diego Ceccarelli via Christine Poerschke in response to SOLR-9929 enquiry from Jeffery Yuan.)
2017-01-06 20:52:21 +00:00
Christine Poerschke
eb2a8ba2ee
SOLR-8542: README and solr/contrib/ltr/example changes
...
details:
* reduced README in favour of equivalent Solr Ref Guide content and (new) example/README
* solr/contrib/ltr/example improvements and fixes
also:
* stop supporting '*' in Managed(Feature|Model)Store.doDeleteChild
2017-01-04 17:12:38 +00:00
Mikhail Khludnev
cc862d8e67
SOLR-9668: introduce cursorMark='true' for SolrEntityProcessor
2016-12-30 20:50:53 +03:00
Mikhail Khludnev
5c8a70fb57
SOLR-9725: substitute properties in JdbcDataSource configuration
2016-12-25 12:41:27 +03:00
Christine Poerschke
f62874e47a
SOLR-8542: change default feature vector format (to 'dense' from 'sparse')
...
also: increase test coverage w.r.t. 'sparse' vs. 'dense' vs. 'default' feature vector format
2016-12-23 13:45:16 +00:00
Christine Poerschke
ac3f1bb339
SOLR-8542: reduce direct solrconfig-ltr.xml references in solr/contrib/ltr tests
2016-12-23 12:57:15 +00:00
Andrzej Bialecki
8bbdb6248c
Squashed commit of branch 'feature/metrics', containing:
...
SOLR-4735: Improve Solr metrics reporting
SOLR-9812: Implement /admin/metrics API
SOLR-9805: Use metrics-jvm library to instrument jvm internals
SOLR-9788: Use instrumented jetty classes
2016-12-20 09:31:24 +01:00
Tomas Fernandez Lobbe
84bbb8f797
SOLR-9874: CREATEALIAS should fail if target collections don't exist
2016-12-19 16:54:13 -08:00
Christine Poerschke
c8542b2bd0
SOLR-8542: techproducts example now includes (disabled) learning-to-rank support (enable via -Dsolr.ltr.enabled=true)
...
additional changes as follows:
* LTRFeatureLoggerTransformerFactory:
** feature values cache name configurable (instead of hard-coded value that needs to match solrconfig.xml configuration)
** javadocs (example and parameters)
* CSV FeatureLogger:
** removed delimiter and separator assumptions in tests
** changed delimiter and separator (from "key:val;key:val" to "key=val,key=val")
** configurable (key value) delimiter and (features) separator
* JSON FeatureLogger:
** defer support for this (removing MapFeatureLogger class)
* adds 'training libraries' to (Linear|MultipleAdditiveTrees)Model javadocs
(Diego Ceccarelli, Michael Nilsson, Christine Poerschke)
2016-12-19 16:22:50 +00:00
yonik
c9522a3936
SOLR-9712: block when maxWarmingSearchers is exceeded instead of throwing exception, default to 1, remove from most configs
2016-12-16 11:46:48 -05:00
Christine Poerschke
bfc3690d52
SOLR-8542: couple of tweaks (Michael Nilsson, Diego Ceccarelli, Christine Poerschke)
...
* removed code triplication in ManagedModelStore
* LTRScoringQuery.java tweaks
* FeatureLogger.makeFeatureVector(...) can now safely be called repeatedly (though that doesn't happen at present)
* make Feature.FeatureWeight.extractTerms a no-op; (OriginalScore|SolrFeature)Weight now implement extractTerms
* LTRThreadModule javadocs and README.md tweaks
* add TestFieldValueFeature.testBooleanValue test; replace "T"/"F" magic string use in FieldValueFeature
* add TestOriginalScoreScorer test; add OriginalScoreScorer.freq() method
* in TestMultipleAdditiveTreesModel revive dead explain test
2016-12-07 20:46:42 +00:00
Christine Poerschke
d2ed42b847
removed two unused imports in TestPlainTextEntityProcessor.java
2016-12-07 18:39:04 +00:00
Noble Paul
3f6164c76e
added an extra testcase
2016-12-07 18:42:07 +05:30
Tommaso Teofili
641294a967
SOLR-8871 - adjusted UIMA processor test, patch from Alessandro Benedetti
2016-11-28 09:20:02 +01:00
Tommaso Teofili
5ad741eef8
SOLR-8871 - various improvements to ClassificationURP
2016-11-24 23:43:57 +01:00
Shalin Shekhar Mangar
ff6da66601
SOLR-8785: Use Dropwizard Metrics library for core metrics
2016-11-22 14:37:33 +05:30
Christine Poerschke
86a515789f
SOLR-8542, SOLR-9746: prefix solr/contrib/ltr's search and response.transform packages with ltr
2016-11-11 19:18:00 +00:00
Michael Nilsson
2c752b04cb
SOLR-8542: disallow reRankDocs<1 i.e. must rerank at least 1 document
...
(Michael Nilsson via Christine Poerschke)
2016-11-11 19:17:59 +00:00
Dawid Weiss
401d77485d
SOLR-7539: Upgrade the clustering plugin to Carrot2 3.15.0.
2016-11-04 16:02:00 +01:00
Christine Poerschke
5a66b3bc08
SOLR-8542: Adds Solr Learning to Rank (LTR) plugin for reranking results with machine learning models. (Michael Nilsson, Diego Ceccarelli, Joshua Pantony, Jon Dorando, Naveen Santhapuri, Alessandro Benedetti, David Grohmann, Christine Poerschke)
2016-11-01 17:50:14 +00:00
David Smiley
2e21511cd3
SOLR-9621: Remove several Guava & Apache Commons calls in favor of java 8 alternatives.
2016-10-28 17:18:58 -04:00
Noble Paul
0feca1a974
general cleanup to use java 8 feautures
2016-10-27 15:05:07 +05:30
Noble Paul
d6b6e74703
SOLR-2094: XPathEntityProcessor should reinitialize the XPathRecordReader instance if the 'forEach' or 'xpath' attributes are templates & it is not a root entity
2016-10-27 14:52:24 +05:30
Shalin Shekhar Mangar
b8d9647307
SOLR-2039: Multivalued fields with dynamic names does not work properly with DIH
2016-10-26 11:02:10 +05:30
Noble Paul
127bf9f772
SOLR-9657: Use cache for templates
2016-10-20 20:06:21 +05:30
Noble Paul
c2e031add3
SOLR-9657: New TemplateUpdateProcessorFactory added
2016-10-19 11:04:10 +05:30
Noble Paul
5c5c0c93ae
SOLR-9576: Make FieldAnalysisRequestHandler, DocumentAnalysisRequestHandler & DumpRequestHandler implicit
2016-09-28 20:04:04 +05:30
Noble Paul
65439e261e
SOLR-9558: DIH TemplateTransformerto to support multivalued fields
2016-09-26 12:20:44 +05:30
Mike McCandless
f7aa200d40
LUCENE-7407: switch doc values usage to an iterator API, based on DocIdSetIterator, instead of random acces, freeing codecs for future improvements
2016-09-21 09:41:41 -04:00
Varun Thacker
5d6b7fffc3
SOLR-9522: Improve error handling in ZKPropertiesWriter
2016-09-16 18:47:06 +05:30
Varun Thacker
ef3057e43b
SOLR-9408: Fix TreeMergeOutputFormat to add timestamp metadata to commits
2016-09-13 10:49:27 +05:30
Noble Paul
1a61fb6858
SOLR-9127: Excel workbook (.xlsx) response writer. use 'wt=xlsx'
2016-09-06 13:22:18 +05:30
Uwe Schindler
e99d970674
SOLR-9430: Fix locale lookup in DIH <propertyWriter/> to use BCP47 language tags to be consistent with other places in Solr. Language names still work for backwards compatibility
2016-08-27 08:38:42 +02:00
Robert Muir
105c7eae87
LUCENE-7413: move legacy numeric support to backwards module
2016-08-17 09:28:45 -04:00
Christine Poerschke
9d784a6693
SOLR-9385: Add QParser.getParser(String,SolrQueryRequest) variant.
2016-08-09 15:04:05 +01:00
Mikhail Khludnev
209bfcf021
SOLR-9209,SOLR-9256: extracting
...
JdbcDataSource.createResultSetIterator(), adding a test for
ResultSetIterator.hasNext()
2016-08-02 14:45:37 +03:00
Alan Woodward
78ebcd3cf5
SOLR-9346: Always close ZkStateReader
2016-07-27 16:45:59 +01:00
Steve Rowe
85a585c516
SOLR-9076: disable broken nightly tests MorphlineBasicMiniMRTest and MorphlineGoLiveMiniMRTest via @AwaitsFix
2016-07-22 14:26:32 -04:00
Christine Poerschke
f9c9470641
SOLR-9306: give solr/contrib/analysis-extras's test classes access to lucene/analysis's test classes
2016-07-14 10:20:35 +01:00
Noble Paul
74de196565
SOLR-8995: Use Lamdas for Thread/Runnable
2016-07-11 19:29:15 +05:30
Erick Erickson
db295440a6
SOLR-7903: Comment out trappy references to example docs in elevate.xml files
2016-07-06 14:50:43 -07:00
Alan Woodward
c38cdedbf2
SOLR-9076: Fix ivy config to pass precommit
2016-07-01 16:13:30 +01:00
markrmiller
2c96c91dd8
SOLR-9076: Add some missing dependencies.
2016-07-01 09:06:15 -04:00
Gregory Chanan
f273cb1b3a
SOLR-9076: Update to Hadoop 2.7.2
2016-06-23 13:41:15 -07:00
markrmiller
740198f33d
SOLR-9219: Make hdfs blockcache read buffer sizes configurable and improve cache concurrency.
2016-06-21 13:06:10 -04:00
Steve Rowe
2d96fe17d6
SOLR-9220: Disable failing tests
2016-06-18 16:10:37 -04:00
Uwe Schindler
19cb7404f5
SOLR-8981: Update TIKA to 1.13:
...
- This commit merges branch 'SOLR-8981' of https://github.com/tballison/lucene-solr
- Adds some modifications and reverts jackcess-encrypt addition (not yet working)
- Fixes order of ivy-versions.properties
- This closes #44
2016-06-18 12:23:28 +02:00
tballison
dd09f0f42b
SOLR-8981 add jackcess-encrypt
2016-06-17 15:32:19 -04:00
tballison
785bebbcbd
SOLR-8981 remove "don't test with java-9" commands; fix bug introduced by TIKA-995 -- doubling of body elements in HTML tags; add copyright info for Jackcess.
2016-06-17 14:40:21 -04:00
tballison
ba0e717034
SOLR-8981 upgrade to Tika 1.13
2016-06-16 12:56:45 -04:00
Mike McCandless
87016b5f0c
LUCENE-7318: graduate StandardAnalyzer and make it the default for IndexWriterConfig
2016-06-14 16:38:04 -04:00
Christine Poerschke
52f5c50246
LUCENE-7319: remove unused imports
2016-06-13 09:59:14 +01:00
Mikhail Khludnev
fce10ae109
SOLR-2199: DataImportHandler (DIH) JdbcDataSource supports multiple resultsets per query
2016-06-13 00:11:27 +03:00
Uwe Schindler
3c9e36b1e1
SOLR-8610: Fix temporary dir usage in DIH
2016-06-07 10:51:41 +02:00
Mikhail Khludnev
a9dea9a983
SOLR-8445: fix line separator in log4j.properties files
2016-06-07 00:21:49 +03:00
Mikhail Khludnev
c2aea1b803
SOLR-8610: Resolve variables in encryptKeyFile of DIH's JdbcDataSource
2016-06-06 23:41:02 +03:00
Mikhail Khludnev
24fa92959d
SOLR-8612: closing JDBC Statement on exceptions from JdbcDataSource in DataImportHandler aka DIH (Kristine Jetzke via Mikhail Khludnev)
2016-06-06 21:40:56 +03:00
Mike McCandless
baa5344e68
LUCENE-7283: move SlowCompositeReaderWrapper and uninverting to solr
2016-05-25 05:36:32 -04:00
David Smiley
4193e60b9f
SOLR-9080 SOLR-9085: Fix date math before the year 1582.
...
note: DateMathParser no longer needs a Locale
2016-05-13 10:03:24 -04:00
Alan Woodward
927454b8a2
SOLR-9072: Move morphline-core zk tests to SolrCloudTestCase
2016-05-13 14:39:07 +01:00
Erick Erickson
5341918a0c
SOLR-9083: Remove deprecated <types> and <fields> from schemas
2016-05-10 06:54:11 -07:00
Anshum Gupta
b02b026b7d
SOLR-8097: Implement builder pattern design for constructing SolrJ clients and deprecate direct construction of clients
2016-04-07 15:57:49 -07:00
Noble Paul
18fb9463de
SOLR-8750: replace anonymous inner class for callable, Runnable etc
2016-04-05 22:45:36 +05:30
David Smiley
5e5fd66257
SOLR-8903: Move SolrJ DateUtil to contrib/extraction as ExtractionDateUtil.
...
And removed obsolete methods.
2016-03-30 15:00:29 -04:00
David Smiley
39932f5758
SOLR-8904: fix accidental move of DateUtil to ExtractingDateUtil (wrong patch file)
2016-03-30 14:31:26 -04:00
David Smiley
94c04237cc
SOLR-8904: switch from SimpleDateFormat to Instant.parse and format.
...
[value] and ms() and contrib/analytics now call DateMathParser to parse. DateFormatUtil is now removed.
2016-03-30 13:42:42 -04:00
Uwe Schindler
91424ae963
SOLR-8874, SOLR-8876: Disable more Hadoop tests with Java 9
2016-03-20 10:41:05 +01:00
Uwe Schindler
f93f90ca1b
SOLR-8874: Make Solr tests work with Java 9 Jigsaw
2016-03-19 14:53:59 +01:00
Noble Paul
faa0586b31
SOLR-8842: security rules made more foolproof by asking the requesthandler about the well known
...
permission name.
The APIs are also modified to ue 'index' as the unique identifier instead of name.
Name is an optional attribute
now and only to be used when specifying well-known permissions
2016-03-17 23:34:50 +05:30
Noble Paul
e70c638bcf
SOLR-8766: deprecated <admin> tag in solrconfig.xml is removed
2016-03-08 18:53:59 +05:30
Shalin Shekhar Mangar
093a8ce57c
SOLR-8745: Deprecate costly ZkStateReader.updateClusterState(), replace with a narrow forceUpdateCollection(collection)
2016-03-07 15:03:03 +05:30
Robert Muir
3ffeccab7e
LUCENE-7063: add tests/docs for numericutils, rename confusing methods, remove overlap with LegacyNumericUtils
2016-03-03 21:52:12 -05:00
Steve Rowe
9427b7402d
SOLR-8764: Remove deprecated methods and classes
2016-03-02 09:22:20 -05:00
Tomás Fernández Löbbe
20b7453cc8
SOLR-8713: new UI and example solrconfig files point to Reference Guide for Solr Query Syntax instead of the wiki.
...
This closes #12
2016-02-29 08:22:25 -08:00
Dawid Weiss
4c9dca8d90
SOLR-8711: follow-up removal of dependencies no longer used. (applying
...
again, with changes to the sources).
This reverts commit 594fb908f6
.
2016-02-24 09:27:06 +01:00
Dawid Weiss
594fb908f6
Revert "SOLR-8711: follow-up removal of dependencies no longer used."
...
This reverts commit a77d67a926
.
2016-02-24 09:08:18 +01:00
Dawid Weiss
a77d67a926
SOLR-8711: follow-up removal of dependencies no longer used.
2016-02-23 10:49:23 +01:00
Christine Poerschke
b14fb50b7f
SOLR-8674: solr.tests.mergePolicy[Factory] tests now randomly choose between <mergePolicy> and <mergePolicyFactory>
...
* This increases <mergePolicy> vs. <mergePolicyFactory> test coverage.
* This temporarily also adds a little test setup complexity but when SOLR-8668 removes support for <mergePolicy> then test setup will return to its original complexity.
2016-02-22 15:22:55 +00:00
Christine Poerschke
588e3ff084
SOLR-8621: fix mergePolicyFacory vs. mergePolicyFactory typos in comments in solr/contrib and solr/example solrconfig.xml files.
2016-02-10 21:22:17 +00:00
Shai Erera
a5accccbfc
SOLR-8621: fix solrconfig.xml under contrib and example
2016-02-10 16:33:01 +02:00
Uwe Schindler
0f43705788
LUCENE-7013: Revert changes to package-info.java files (adds newline after license header and before javadocs back)
2016-02-04 23:02:50 +01:00
Shai Erera
813ca77250
LUCENE-7013: Move license header to top of file
2016-02-04 15:51:19 +02:00
Noble Paul
13c9912b3c
SOLR-8618 refactored a couple of methods out as protected
2016-01-31 18:44:39 +05:30
Uwe Schindler
4efccce1f1
LUCENE-6978: Fix usage of Locale#toString in DIH
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1726311 13f79535-47bb-0310-9956-ffa450edef68
2016-01-22 21:05:40 +00:00
Uwe Schindler
7213e7cfc0
LUCENE-6978: Fix Morphlines locale parsing with empty string / null: use ROOT
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1726118 13f79535-47bb-0310-9956-ffa450edef68
2016-01-21 22:16:55 +00:00
Michael McCandless
24c46305bd
LUCENE-6971: remove StorableField, StoredDocument
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1725117 13f79535-47bb-0310-9956-ffa450edef68
2016-01-17 19:54:50 +00:00
Uwe Schindler
f5b0e537b4
LUCENE-6978: Refactor several code places that lookup locales by string name to use BCP47 locale tag instead
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1724891 13f79535-47bb-0310-9956-ffa450edef68
2016-01-15 22:41:57 +00:00
Tommaso Teofili
8a7a142efb
SOLR-6622 - using all field values in UIMAUpdateRequestProcessor
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1723982 13f79535-47bb-0310-9956-ffa450edef68
2016-01-11 08:12:37 +00:00
Christine Poerschke
2580956b8b
SOLR-8505: core/DirectoryFactory.LOCK_TYPE_HDFS - add & use it instead of String literals
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1723751 13f79535-47bb-0310-9956-ffa450edef68
2016-01-08 15:59:36 +00:00
Shalin Shekhar Mangar
7bfb2a2949
SOLR-8220: Read field from DocValues for non stored fields
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1721795 13f79535-47bb-0310-9956-ffa450edef68
2015-12-27 10:27:00 +00:00
Christine Poerschke
c4db8d57a4
SOLR-8317: use responseHeader and response accessors to SolrQueryResponse
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1721170 13f79535-47bb-0310-9956-ffa450edef68
2015-12-21 14:39:21 +00:00
Michael McCandless
7da175b0b6
LUCENE-6917: rename/deprecate numeric classes in favor of dimensional values
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1719562 13f79535-47bb-0310-9956-ffa450edef68
2015-12-11 21:13:41 +00:00
Uwe Schindler
80d07524ee
PDFBOX-3155: Disable tests that fail with new Java 9 version number scheme
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1718439 13f79535-47bb-0310-9956-ffa450edef68
2015-12-07 18:46:10 +00:00
Varun Thacker
695870d7a2
SOLR-8131: fix test solrconfig.xml files for the contrib modules
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1718307 13f79535-47bb-0310-9956-ffa450edef68
2015-12-07 11:18:31 +00:00
Varun Thacker
0e886c19fa
SOLR-8131: Make ManagedIndexSchemaFactory the default schemaFactory when luceneMatchVersion >= 6
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1718258 13f79535-47bb-0310-9956-ffa450edef68
2015-12-07 07:32:41 +00:00
Anshum Gupta
6caaa0c454
SOLR-8330: Standardize and fix logger creation and usage so that they aren't shared across source files.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1717590 13f79535-47bb-0310-9956-ffa450edef68
2015-12-02 09:22:22 +00:00
David Wayne Smiley
ce0363c0ad
SOLR-8180: jcl-over-slf4j is officially a solrj/solr dependency now; not marked optional in a POM.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1717481 13f79535-47bb-0310-9956-ffa450edef68
2015-12-01 18:12:00 +00:00
Alan Woodward
e5be9136a6
SOLR-8336: CoreDescriptor takes a Path for its instance dir, rather than a String
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1717254 13f79535-47bb-0310-9956-ffa450edef68
2015-11-30 14:02:45 +00:00
Erik Hatcher
255ff56d4e
SOLR-8307: move EmptyEntityResolver to another package to avoid conflict with solr-core and javadoc generation
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1716007 13f79535-47bb-0310-9956-ffa450edef68
2015-11-24 01:25:00 +00:00
Alan Woodward
0f3aecfdff
SOLR-8302: SolrResourceLoader takes a Path for its instance directory
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1715342 13f79535-47bb-0310-9956-ffa450edef68
2015-11-20 12:12:05 +00:00
Gregory Chanan
b916bbc50a
SOLR-8286: Remove instances of solr.hdfs.blockcache.write.enabled from tests and docs
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1714278 13f79535-47bb-0310-9956-ffa450edef68
2015-11-13 23:45:44 +00:00
Alan Woodward
f43daa0163
SOLR-8260: Remove morphlines test setup with wrongly configured core discovery roots
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1713563 13f79535-47bb-0310-9956-ffa450edef68
2015-11-09 22:36:31 +00:00
Chris M. Hostetter
ecf410f413
SOLR-8239: Added ClassicSimilarityFactory, marked DefaultSimilarityFactory as deprecated
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1712979 13f79535-47bb-0310-9956-ffa450edef68
2015-11-06 15:45:50 +00:00
Chris M. Hostetter
d207e8c39a
SOLR-8239: reverting r1712840 from trunk -- backport to 5x was more complicated then I expected because aparently DefaultSimilarity deprecation with ClassicSimilarity was never backported? want to clarify/resolve that before moving forward here
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1712845 13f79535-47bb-0310-9956-ffa450edef68
2015-11-05 18:44:13 +00:00
Chris M. Hostetter
2a24085bcd
SOLR-8239: Added ClassicSimilarityFactory, marked DefaultSimilarityFactory as deprecated
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1712840 13f79535-47bb-0310-9956-ffa450edef68
2015-11-05 18:19:54 +00:00
Christine Poerschke
4d1a16ff3c
SOLR-8147: contrib/analytics FieldFacetAccumulator now throws IOException instead of SolrException
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1712751 13f79535-47bb-0310-9956-ffa450edef68
2015-11-05 12:13:34 +00:00
Alan Woodward
43cd1639f5
LUCENE-6884: Analyzer.tokenStream() and Tokenizer.setReader() don't need to throw IOException
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1712731 13f79535-47bb-0310-9956-ffa450edef68
2015-11-05 10:00:11 +00:00
Uwe Schindler
74f354a5a1
SOLR-8166: Add some null checks
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1712677 13f79535-47bb-0310-9956-ffa450edef68
2015-11-04 22:32:00 +00:00
Uwe Schindler
6f5b28be8a
SOLR-8166: Introduce possibility to configure ParseContext in ExtractingRequestHandler/ExtractingDocumentLoader
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1712629 13f79535-47bb-0310-9956-ffa450edef68
2015-11-04 20:13:40 +00:00
Shalin Shekhar Mangar
ab3c1a48cd
SOLR-7843: DataImportHandler's delta imports leak memory because the delta keys are kept in memory and not cleared after the process is finished
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1710078 13f79535-47bb-0310-9956-ffa450edef68
2015-10-22 19:14:24 +00:00
Erik Hatcher
33850419bd
SOLR-8128: Set v.locale specified locale for all LocaleConfig extending VelocityResponseWriter tools
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1708406 13f79535-47bb-0310-9956-ffa450edef68
2015-10-13 14:32:59 +00:00
Adrien Grand
b3d191832c
LUCENE-6301: Removal of org.apache.lucene.Filter.
...
From a Lucene perspective Filter is gone. However it was still used for things
like DocSet and SolrConstantScoreQuery in Solr, so it has been moved to
the oas.search package for now, even though in the long term it would be nice
for Solr to move to the Query API entirely as well.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1708097 13f79535-47bb-0310-9956-ffa450edef68
2015-10-12 12:15:07 +00:00
Uwe Schindler
b57234a745
LUCENE-6795: Fix Solr tests that break RamUsageTester on Java 9 Jigsaw
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1702770 13f79535-47bb-0310-9956-ffa450edef68
2015-09-13 12:25:40 +00:00
Uwe Schindler
b8a213ccf7
LUCENE-6795: Forbid AccessibleObject#setAccessible and suppress legitimate uses / wrap with doPrivileged
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1702690 13f79535-47bb-0310-9956-ffa450edef68
2015-09-13 01:07:11 +00:00
Erik Hatcher
d8b7f5a62c
SOLR-8044: fix VelocityResponseWriterTest.testLocaleFeature
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1702652 13f79535-47bb-0310-9956-ffa450edef68
2015-09-12 17:38:42 +00:00
Erik Hatcher
d99af904e5
SOLR-8044: fix VelocityResponseWriterTest.testLocaleFeature
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1702650 13f79535-47bb-0310-9956-ffa450edef68
2015-09-12 17:31:34 +00:00
Erik Hatcher
48907ceed1
SOLR-8041: Fix VelocityResponseWriter's .get(key,baseName,locale) to use specified locale
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1702516 13f79535-47bb-0310-9956-ffa450edef68
2015-09-11 16:48:17 +00:00
Erik Hatcher
06c9ed5c5d
SOLR-7915: Provide pluggable context tool support for VelocityResponseWriter
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1700691 13f79535-47bb-0310-9956-ffa450edef68
2015-09-02 00:12:56 +00:00
Erik Hatcher
cf3644e72b
comment typo fixes
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1700688 13f79535-47bb-0310-9956-ffa450edef68
2015-09-02 00:05:55 +00:00
Mark Robert Miller
431ed53d46
SOLR-7956: Remove a few more interrupt causes.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1700185 13f79535-47bb-0310-9956-ffa450edef68
2015-08-31 02:22:09 +00:00
Yonik Seeley
db78023736
SOLR-7957: expand ResultContext to allow for multiple DocLists per response, remove redundant TransformContext
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1698421 13f79535-47bb-0310-9956-ffa450edef68
2015-08-28 21:24:44 +00:00
Erik Hatcher
c018ffffea
Fix #field macro to comma separate multiple values
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1697802 13f79535-47bb-0310-9956-ffa450edef68
2015-08-26 01:30:51 +00:00
Erik Hatcher
306d7f4198
SOLR-7972: Fix VelocityResponseWriter template encoding issue
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1697789 13f79535-47bb-0310-9956-ffa450edef68
2015-08-26 00:15:18 +00:00
Mark Robert Miller
d27a016088
tests: tone down nightly runs
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1697692 13f79535-47bb-0310-9956-ffa450edef68
2015-08-25 15:00:46 +00:00
Mark Robert Miller
4c241b2b3d
tests: tone down nightly runs
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1697679 13f79535-47bb-0310-9956-ffa450edef68
2015-08-25 14:11:38 +00:00
Dawid Weiss
9cf70a3afd
SOLR-7969: Unavailable clustering engines should not fail the core.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1697661 13f79535-47bb-0310-9956-ffa450edef68
2015-08-25 12:21:39 +00:00
Dawid Weiss
c1dc2fb6a6
SOLR-7790, SOLR-7792, SOLR-7791: Update Carrot2 clustering component to version 3.10.3. Upgrade HPPC library to version 0.7.1, morfologik-stemming to version 1.10.0. (Dawid Weiss)
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1697345 13f79535-47bb-0310-9956-ffa450edef68
2015-08-24 09:53:04 +00:00
Uwe Schindler
1331a57e3d
LUCENE-6732: Remove tabs in JS and XML files
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1695395 13f79535-47bb-0310-9956-ffa450edef68
2015-08-11 23:00:39 +00:00
Uwe Schindler
f0654e355e
LUCENE-6732: Improve checker for invalid source patterns to also detect javadoc-style license headers. Use Groovy to implement the checks instead of plain Ant
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1695380 13f79535-47bb-0310-9956-ffa450edef68
2015-08-11 22:13:00 +00:00
Ramkumar Aiyengar
b4aafbb606
SOLR-7859: Clamp down on use of System.currentTimeMillis
...
- Use RTimer where currentTimeMillis is used for timing
- Abstract out a new class TimeOut for when currentTimeMillis/nanoTime
is used to timeout operations.
- Used `new Date()` in some cases where that is the logical intent.
- Deprecated a couple of APIs which were publicly exposing epoch time,
in favour of Date objects to make the intent clearer.
- A couple of cases had currentTimeMillis in dead code.
- In some cases where currentTimeMillis was used to just generate a name,
used nanoTime instead (really it should be some sequence/random number
in such a case).
- In some other cases where stamps were used for SQL queries, HTTP headers,
comparing against data in external files, ZK etc., used SuppressForbidden.
- Also currently allow the use of currentTimeMillis in commit data,
this is then used in replication -- this is concerning since absolute
times are being compared, but that can be dealt with separately.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1694798 13f79535-47bb-0310-9956-ffa450edef68
2015-08-08 13:39:58 +00:00
Tommaso Teofili
fc51829543
SOLR-7760 - fixed method visibility in UimaUpdateRP and SolrUimaConfiguration
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1694616 13f79535-47bb-0310-9956-ffa450edef68
2015-08-07 07:28:35 +00:00
Shalin Shekhar Mangar
2a8bef841a
SOLR-7854: Remove unused ZkStateReader.updateClusterState(false) method
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1693681 13f79535-47bb-0310-9956-ffa450edef68
2015-08-01 06:24:04 +00:00
Uwe Schindler
3e406606ed
SOLR-7227: Don't create the WAR file at all
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1693143 13f79535-47bb-0310-9956-ffa450edef68
2015-07-28 19:04:21 +00:00
Shalin Shekhar Mangar
8649f3f3bd
SOLR-7825: Forbid all usages of log4j and java.util.logging classes in Solr
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1692624 13f79535-47bb-0310-9956-ffa450edef68
2015-07-25 14:34:47 +00:00
Uwe Schindler
50f168ed4c
SOLR-7803: Prevent class loading deadlock in TrieDateField; refactor date formatting and parsing out of TrieDateField and move to static utility class DateFormatUtil
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1691893 13f79535-47bb-0310-9956-ffa450edef68
2015-07-20 09:07:50 +00:00
Mark Robert Miller
f917ac900f
SOLR-7805: Update Kite Morphlines to 1.1.0
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1691626 13f79535-47bb-0310-9956-ffa450edef68
2015-07-17 19:07:26 +00:00
Michael McCandless
a6301dd900
LUCENE-6659: remove IWC's max thread states limit
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1690299 13f79535-47bb-0310-9956-ffa450edef68
2015-07-10 18:09:58 +00:00
Adrien Grand
2919e13adc
LUCENE-6649: Remove dependency of lucene/join on Filter.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1689432 13f79535-47bb-0310-9956-ffa450edef68
2015-07-06 15:48:28 +00:00
Uwe Schindler
1816ed1945
LUCENE-6653, LUCENE-6652: Refactor TermToBytesRefAttribute; add oal.analysis.tokenattributes.BytesTermAttribute; remove code duplication in tests
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1688830 13f79535-47bb-0310-9956-ffa450edef68
2015-07-02 14:09:29 +00:00
Adrien Grand
35c0ff0ec6
LUCENE-6583: Remove FilteredQuery.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1686203 13f79535-47bb-0310-9956-ffa450edef68
2015-06-18 12:29:56 +00:00
Adrien Grand
4aafacfbef
LUCENE-6570: Make BooleanQuery immutable.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1686145 13f79535-47bb-0310-9956-ffa450edef68
2015-06-18 07:14:05 +00:00
Mark Robert Miller
ed6fd884b0
SOLR-7512: SolrOutputFormat creates an invalid solr.xml in the solr home zip for MapReduceIndexerTool.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1684494 13f79535-47bb-0310-9956-ffa450edef68
2015-06-09 18:18:10 +00:00
Erik Hatcher
867c75a5d9
Remove explicitly defined request handlers from example and test solrconfig's that are already defined implicitly
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1684080 13f79535-47bb-0310-9956-ffa450edef68
2015-06-07 22:31:26 +00:00
Uwe Schindler
a8cf56b222
LUCENE-6530: Refactoring: Simplify ProcessBuilder code at various places
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1684040 13f79535-47bb-0310-9956-ffa450edef68
2015-06-07 15:49:10 +00:00
Erik Hatcher
f2291c1356
Add as-you-type instant search to example/files /browse
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1683778 13f79535-47bb-0310-9956-ffa450edef68
2015-06-05 15:05:20 +00:00
Robert Muir
fe6c3dc939
LUCENE-6508: Simplify directory/lock API
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1683606 13f79535-47bb-0310-9956-ffa450edef68
2015-06-04 18:20:44 +00:00
Erik Hatcher
1edc686c42
SOLR-7610: Fix VelocityResponseWriter's .locale to accurately report locale in use
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1682900 13f79535-47bb-0310-9956-ffa450edef68
2015-06-01 13:44:06 +00:00
Shalin Shekhar Mangar
7288912750
SOLR-7532: Removed occurrences of the unused 'commitIntervalLowerBound' property for updateHandler elements from Solr configuration
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1679522 13f79535-47bb-0310-9956-ffa450edef68
2015-05-15 09:58:44 +00:00
Noble Paul
105222b3a8
SOLR-4392: Make it possible to specify AES encrypted password in dataconfig.xml
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1678250 13f79535-47bb-0310-9956-ffa450edef68
2015-05-07 18:31:35 +00:00
Chris M. Hostetter
6e14814eaa
SOLR-4392: revert r1678195 which breaks forbidden-api
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1678242 13f79535-47bb-0310-9956-ffa450edef68
2015-05-07 17:44:44 +00:00
Noble Paul
3e20086499
SOLR-4392: Make it possible to specify AES encrypted password in dataconfig.xml
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1678195 13f79535-47bb-0310-9956-ffa450edef68
2015-05-07 13:33:23 +00:00
Noble Paul
bd8b77f9bb
SOLR-7231: DIH-TikaEntityprocessor, create lat-lon field from Metadata
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1677001 13f79535-47bb-0310-9956-ffa450edef68
2015-04-30 14:20:51 +00:00
Shalin Shekhar Mangar
a64266193a
SOLR-7381: Usages of Executors#newFixedThreadPool, #newSingleThreadExecutor, #newCachedThreadPool as well as ThreadPoolExecutor directly is now forbidden in Solr
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1673372 13f79535-47bb-0310-9956-ffa450edef68
2015-04-14 06:50:52 +00:00
Ramkumar Aiyengar
796416d43c
Remove unnecessary svn:executable from some files
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1671175 13f79535-47bb-0310-9956-ffa450edef68
2015-04-03 21:56:33 +00:00
Varun Thacker
02b8907124
LUCENE-6378: Fix all RuntimeExceptions to throw the underlying root cause
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1670453 13f79535-47bb-0310-9956-ffa450edef68
2015-03-31 19:54:37 +00:00
Shai Erera
f4bc84cade
SOLR-7317: Remove jhighlight.jar which contains LGPL-only code
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1669449 13f79535-47bb-0310-9956-ffa450edef68
2015-03-26 21:36:56 +00:00
Mark Robert Miller
84adc8604d
SOLR-7289: Tests should not ignore all leaking threads and instead just ignore the known leaking threads.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1668771 13f79535-47bb-0310-9956-ffa450edef68
2015-03-24 02:16:13 +00:00
Shalin Shekhar Mangar
8d64c08c1a
SOLR-7258: Forbid MessageFormat.format and MessageFormat single-arg constructor
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1667414 13f79535-47bb-0310-9956-ffa450edef68
2015-03-17 21:52:05 +00:00
Yonik Seeley
3dc5ed33c5
SOLR-7214: JSON Facet API
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1666856 13f79535-47bb-0310-9956-ffa450edef68
2015-03-16 04:40:23 +00:00
Noble Paul
40a1d7e22c
SOLR-6892: Improve the way update processors are used and make it simpler
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1666436 13f79535-47bb-0310-9956-ffa450edef68
2015-03-13 13:13:15 +00:00
Shalin Shekhar Mangar
389992cf99
SOLR-4464: DIH Processed documents counter resets to zero after first entity is processed
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1665110 13f79535-47bb-0310-9956-ffa450edef68
2015-03-09 01:59:40 +00:00
Shalin Shekhar Mangar
b730cdaa49
SOLR-7189: Allow DIH to extract content from embedded documents via Tika
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1665099 13f79535-47bb-0310-9956-ffa450edef68
2015-03-09 00:16:25 +00:00
Alan Woodward
739e9b489d
SOLR-7179: Stop using sysprops to configure test jettys
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1664292 13f79535-47bb-0310-9956-ffa450edef68
2015-03-05 09:54:06 +00:00
Noble Paul
c1c593a0ad
SOLR-7174: DIH should reset TikaEntityProcessor so that it is capable of re-use
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1663857 13f79535-47bb-0310-9956-ffa450edef68
2015-03-04 05:09:29 +00:00
Chris M. Hostetter
821ab8b0d9
SOLR-7171: BaseDistributedSearchTestCase now clones getSolrHome() for each subclass, and consistently uses getSolrXml()
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1663381 13f79535-47bb-0310-9956-ffa450edef68
2015-03-02 18:07:55 +00:00
Alan Woodward
d7eefdd7a7
SOLR-7151: SolrClient query methods throw IOException
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1662670 13f79535-47bb-0310-9956-ffa450edef68
2015-02-27 12:17:51 +00:00
Noble Paul
6c84653e08
remove the hack to get the DIH handler name
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1662663 13f79535-47bb-0310-9956-ffa450edef68
2015-02-27 11:42:22 +00:00
Uwe Schindler
09a0dcb6c6
SOLR-7139: Fix SolrContentHandler for TIKA to ignore multiple startDocument events
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1662457 13f79535-47bb-0310-9956-ffa450edef68
2015-02-26 14:26:38 +00:00
Alan Woodward
46ede7622e
SOLR-7166: Encapsulate JettySolrRunner config
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1662449 13f79535-47bb-0310-9956-ffa450edef68
2015-02-26 14:05:24 +00:00
Adrien Grand
2cd3fb807d
LUCENE-6286: Removed IndexSearcher methods that take a Filter object.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1662059 13f79535-47bb-0310-9956-ffa450edef68
2015-02-24 17:43:10 +00:00
Adrien Grand
bd89330adf
LUCENE-6268: Replace FieldValueFilter and DocValuesRangeFilter with equivalent queries that support approximations.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1661156 13f79535-47bb-0310-9956-ffa450edef68
2015-02-20 16:36:46 +00:00
Alan Woodward
f013c438ee
SOLR-7125: Allow upload and download of configs via CloudSolrClient
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1660919 13f79535-47bb-0310-9956-ffa450edef68
2015-02-19 15:58:55 +00:00
Erick Erickson
6d68694ce5
SOLR-7032: Clean up tests remnanat of old-style solr.xml
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1660790 13f79535-47bb-0310-9956-ffa450edef68
2015-02-19 04:11:48 +00:00
Noble Paul
9a77ceee6a
SOLR-7076: TikaEntityProcessor should have support for onError=skip
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1658664 13f79535-47bb-0310-9956-ffa450edef68
2015-02-10 10:49:11 +00:00
Robert Muir
12b30db6ce
LUCENE-4797: fix remaining html violations, engage linter in solr
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1658539 13f79535-47bb-0310-9956-ffa450edef68
2015-02-09 19:02:32 +00:00
Adrien Grand
87b7393360
LUCENE-6224: cut over more package.htmls
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1658525 13f79535-47bb-0310-9956-ffa450edef68
2015-02-09 18:47:17 +00:00
Noble Paul
2eaad8e89b
SOLR-5890: Delete silently fails if not sent to shard where document was
...
added
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1658486 13f79535-47bb-0310-9956-ffa450edef68
2015-02-09 18:00:25 +00:00
Steven Rowe
77bf475f97
LUCENE-6044: removed one last (for realz this time) enablePositionIncrements mention from a test schema
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1658000 13f79535-47bb-0310-9956-ffa450edef68
2015-02-07 00:16:39 +00:00
Steven Rowe
6c68cedd50
LUCENE-6044: removed one last enablePositionIncrements mention from a test schema
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1657994 13f79535-47bb-0310-9956-ffa450edef68
2015-02-06 23:42:17 +00:00
Steven Rowe
513cefa5e9
LUCENE-6044: add CHANGES entry on trunk; remove mention of enablePositionIncrements from test schemas
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1657992 13f79535-47bb-0310-9956-ffa450edef68
2015-02-06 23:31:48 +00:00
Robert Muir
010e352f60
LUCENE-6218: don't decode freqs or enumerate all positions when scoring is not needed
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1657554 13f79535-47bb-0310-9956-ffa450edef68
2015-02-05 12:34:28 +00:00
Steven Rowe
639f72ee71
fix typo in exception message
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1657438 13f79535-47bb-0310-9956-ffa450edef68
2015-02-04 22:39:21 +00:00
Alan Woodward
3018576b67
SOLR-6954: SolrClient implements Closeable
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1655263 13f79535-47bb-0310-9956-ffa450edef68
2015-01-28 11:55:57 +00:00
Steven Rowe
b1a127b6c5
SOLR-6856: fix preceding whitespace for attribute values dumped into the catch-all field.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1654444 13f79535-47bb-0310-9956-ffa450edef68
2015-01-24 01:07:07 +00:00
Steven Rowe
6dcfa17adc
SOLR-6856: Restore ExtractingRequestHandler's ability to capture all HTML tags when parsing (X)HTML.
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1654431 13f79535-47bb-0310-9956-ffa450edef68
2015-01-23 23:44:45 +00:00
Erick Erickson
7fda449473
SOLR-6902: Use JUnit rules instead of inheritance with distributed Solr tests to allow for multiple tests without the same class
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1654256 13f79535-47bb-0310-9956-ffa450edef68
2015-01-23 16:13:32 +00:00
Steven Rowe
6b807173d3
SOLR-6991,SOLR-6387: Under Turkish locale, don't run solr-cell and dataimporthandler-extras tests that use Tika
...
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1653704 13f79535-47bb-0310-9956-ffa450edef68
2015-01-21 23:47:19 +00:00