Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions solr/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,8 @@ Other Changes

* SOLR-17956: XLSXResponseWriter has been deprecated and will be removed in a future release. (Jan Høydahl)

* SOLR-17958: The Tika Language Identifier is deprecated. Use one of the other detectors instead. (Jan Høydahl)

* SOLR-17952: Stream decorator test refactoring - use underscore rather than dot in aliases (Andy Webb)

================== 9.9.1 ==================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@
* href="https://solr.apache.org/guide/solr/latest/indexing-guide/language-detection.html#configuring-tika-language-detection">https://solr.apache.org/guide/solr/latest/indexing-guide/language-detection.html#configuring-tika-language-detection</a>
*
* @since 3.5
* @deprecated Since 9.10, use {@link OpenNLPLangDetectUpdateProcessor} instead.
*/
@Deprecated(since = "9.10")
public class TikaLanguageIdentifierUpdateProcessor extends LanguageIdentifierUpdateProcessor {

private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@
* href="https://solr.apache.org/guide/solr/latest/indexing-guide/language-detection.html#configuring-tika-language-detection">https://solr.apache.org/guide/solr/latest/indexing-guide/language-detection.html#configuring-tika-language-detection</a>
*
* @since 3.5
* @deprecated Since 9.10, use {@link OpenNLPLangDetectUpdateProcessorFactory} instead.
*/
@Deprecated(since = "9.10")
public class TikaLanguageIdentifierUpdateProcessorFactory extends UpdateRequestProcessorFactory
implements SolrCoreAware, LangIdParams {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import org.apache.solr.common.params.ModifiableSolrParams;
import org.junit.Test;

@SuppressWarnings("deprecation")
public class TikaLanguageIdentifierUpdateProcessorFactoryTest
extends LanguageIdentifierUpdateProcessorFactoryTestCase {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ Here is an example of a minimal Tika `langid` configuration in `solrconfig.xml`:
</processor>
----

[IMPORTANT]
====
This detector is deprecated and may be removed in a future version.
====

=== Configuring LangDetect Language Detection

Here is an example of a minimal LangDetect `langid` configuration in `solrconfig.xml`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ Java has removed support for the Security Manager starting with Java 24; therefo

The `XLSXResponseWriter` is now deprecated.

The Tika Language Identifier is deprecated. Use one of the other detectors instead.

The Extraction module can now extract documents using an external Tika Server.
The local in-process Tika 1.x extractor backend is deprecated and will go away in 10.0.

Expand Down