Commit Graph

8942 Commits

Author SHA1 Message Date
markrmiller 0325722e67 SOLR-9284: The HDFS BlockDirectoryCache should not let it's keysToRelease or names maps grow indefinitely. 2016-11-15 05:18:35 -05:00
Shalin Shekhar Mangar 0d290ae136 SOLR-9736: Solr resolves the collection name against the first available leader or first replica of the first slice 2016-11-15 14:18:43 +05:30
Shalin Shekhar Mangar b57a5e41f8 SOLR-9633: Fix issue number in CHANGES.txt 2016-11-15 11:07:18 +05:30
Shalin Shekhar Mangar 487b0976eb SOLR-9366: Limit memory consumed by FastLRUCache with a new 'maxRamMB' config parameter 2016-11-15 10:59:58 +05:30
Steve Rowe ca80ba6b80 SOLR-9166: fix precommit 2016-11-14 20:00:44 -05:00
Steve Rowe 76b439a0bd SOLR-9751: PreAnalyzedField can cause managed schema corruption 2016-11-14 19:17:57 -05:00
Erick Erickson c0b7edb5c8 SOLR-9166: Export handler returns zero for numeric fields that are not in the original doc. Fixed precommit 2016-11-14 12:59:14 -08:00
Erick Erickson 4a31b29cb0 SOLR-9166: Export handler returns zero for numeric fields that are not in the original doc 2016-11-14 07:19:28 -08:00
Christine Poerschke fba2a864d4 Fix arg order in CommonParamsTest's assertEquals. 2016-11-14 12:31:38 +00:00
Noble Paul 907bed887d SOLR-9718: replace assert and assertTrue() to assertEquals() 2016-11-14 12:41:59 +05:30
Noble Paul b359636fd9 SOLR-9718: replace assert and assertTrue() to assertEquals() 2016-11-14 12:33:37 +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
Christine Poerschke 6c25adb119 SOLR-8332: Factor HttpShardHandler[Factory]'s url shuffling out into a ReplicaListTransformer class.
(Christine Poerschke, Noble Paul)
2016-11-09 09:46:14 +00:00
yonik 11840469d9 SOLR-9740: fix macro expansion of multi-valued parameters 2016-11-08 18:09:43 -05:00
yonik b02e7a902e SOLR-9038: add snapshotscli.sh and supporting code 2016-11-08 13:28:35 -05:00
yonik cfcf4081fc SOLR-9519: recurse sub-facets of empty buckets if they can widen domain again 2016-11-08 12:10:53 -05:00
Noble Paul 46fad72a9b Merge remote-tracking branch 'origin/master' 2016-11-08 20:06:58 +05:30
Noble Paul bb25214d44 SOLR-9739: JavabinCodec implements PushWriter interface 2016-11-08 20:06:28 +05:30
Christine Poerschke a61286134a Remove not actually needed JSONWriter.writeArray override. 2016-11-08 13:29:45 +00:00
Noble Paul 915ed6f375 Merge remote-tracking branch 'origin/master' 2016-11-08 18:41:39 +05:30
Noble Paul 4d6be31332 SOLR-9720: Use the new MapWriter and IteratorWriter interface 2016-11-08 18:41:26 +05:30
Christine Poerschke f203c7c816 QueryComponent.mergeIds tweak to local 'queue' variable. 2016-11-08 11:41:49 +00:00
Noble Paul 6abfad0234 SOLR-9717: Refactor '/export' to not hardcode the JSON output and to use an API 2016-11-08 16:37:46 +05:30
Noble Paul ef074a61f8 SOLR-9717: Refactor '/export' to not hardcode the JSON output and to use an API 2016-11-08 16:37:08 +05:30
Christine Poerschke cbf8235e57 SOLR-9726: Reduce number of lookupOrd calls made by the DocValuesFacets.getCounts method. (Jonny Marks via Christine Poerschke) 2016-11-07 16:06:25 +00:00
Dawid Weiss 7fb72bfe10 SOLR-9293: Solrj client support for hierarchical clusters and other topics marker. 2016-11-07 15:27:27 +01:00
Adrien Grand 284eb77ece SOLR-9005: Remove tabs from solr/example/files/conf/update-script.js. 2016-11-07 10:19:03 +01:00
Alexandre Rafalovitch 9148362617 SOLR-9005: Add guard condition to the example js 2016-11-06 15:04:28 +11:00
Alexandre Rafalovitch 94c796968a SOLR-9624: Do not highlight CSV output 2016-11-06 14:09:55 +11:00
yonik 4b3e7f2fe2 SOLR-9682: add param query type to facet filter 2016-11-05 15:24:57 -04:00
Shalin Shekhar Mangar 1f1990d8be SOLR-9716: RecoveryStrategy sends prep recovery command without setting read time out which can cause replica recovery to hang indefinitely on network partitions 2016-11-05 12:46:42 +05:30
Christine Poerschke 358bdd490b SOLR-9720: tweak JSONWriter.writeArray 2016-11-04 20:20:50 +00:00
Erick Erickson b2bf87dee7 SOLR-9360: Solr script not properly checking SOLR_PID 2016-11-04 12:57:26 -07:00
Dawid Weiss 401d77485d SOLR-7539: Upgrade the clustering plugin to Carrot2 3.15.0. 2016-11-04 16:02:00 +01:00
markrmiller 1381dd9287 SOLR-9055: Make collection backup/restore extensible.
- Introduced a parameter for the Backup operation to specify index backup strategy.
- Introduced two strategies for backing up index data.
  - One using core Admin API (BACKUPCORE)
  - Other skipping the backup of index data altogether. This is useful when
    the index data is copied via an external mechanism in combination with named
    snapshots (Please refer to SOLR-9038 for details)
  - In future we can add additional implementations of this interface (e.g. based on HDFS snapshots etc.)
- Added a backup property to record the Solr version. This helps to check the compatibility
  of backup with respect to the current version during the restore operation. This
  compatibility check is not added since its unclear what the Solr level compatibility guidelines
  are. But at-least having version information as part of the backup would be very useful.
2016-11-04 10:41:52 -04:00
Joel Bernstein ad9c1335fb Remove spurious imports 2016-11-03 21:28:31 -04:00
Joel Bernstein 84171ecada Remove spurious imports 2016-11-03 18:47:50 -04:00
Shalin Shekhar Mangar 78b768f2a4 SOLR-9720: Fix for JSONWriterTest 2016-11-03 20:21:13 +05:30
jdyer1 213a2a1791 SOLR-5344: relax the test requirements for estimated hit counts 2016-11-03 08:38:59 -05:00
Noble Paul 1f595a20a2 SOLR-9720: Refactor Responsewriters to remove dependencies on TupleStream, Tuple, Explanation 2016-11-03 14:28:15 +05:30
Noble Paul 940a337105 close() not implemented 2016-11-03 14:09:34 +05:30
jdyer1 4a12a260a8 Revert "SOLR-9710: fix test bug"
This reverts commit be772dbd48.
2016-11-02 16:06:27 -05:00
jdyer1 be772dbd48 SOLR-9710: fix test bug 2016-11-02 10:07:55 -05:00
Christine Poerschke d0e32f3e5c SOLR-9709: add json.nl=map example comment, expand json.nl test coverage. 2016-11-02 12:30:40 +00: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
Alan Woodward b6ff3fdace Add some debugging to HdfsRecoveryZkTest 2016-11-01 16:10:58 +00:00
yonik 359f981b0e SOLR-9681: move "filter" inside "domain" block 2016-11-01 12:01:04 -04:00
Jan Høydahl 4383bec84c SOLR-9481: Clearing existing global interceptors on HttpClientUtil to avoid user/pass leaks from other tests 2016-11-01 15:38:21 +01:00
Jan Høydahl 22aa34e017 SOLR-9481: Move changes entry to 6.4 2016-11-01 12:31:40 +01:00