Deprecation Notices in Cloudera Search

Features and functionality that will be deprecated or removed in this release or a future release.

Deprecated

Deprecated environment variables and Java options
  • Environment variables: SOLR_CIPHERS_CONFIG , SOLR_TLS_PROTOCOLS_CONFIG

  • and Java options: solr.jetty.ciphers , solr.jetty.tls.protocols

are now deprecated and throw a warning when used. Use the following environment variables/Java Options instead:

Environment Variable Java Option Default
SOLR_SSL_PROTOCOLS_INCLUDE

solr.jetty.ssl.protocols.include

(formerly solr.jetty.tls.protocols )

TLSv1,TLSv1.1,TLSv1.2,TLSv1.3

*TLSv1.3 will work only if Solr is running on Java11

SOLR_SSL_PROTOCOLS_EXCLUDE solr.jetty.ssl.protocols.exclude SSL,SSLv2,SSLv2Hello,SSLv3
SOLR_SSL_CIPHERS_INCLUDE

solr.jetty.ssl.ciphers.include

(formerly solr.jetty.ciphers)

^.*$
SOLR_SSL_CIPHERS_EXCLUDE solr.jetty.ssl.ciphers.exclude ^.*_(MD5|SHA|SHA1)$,^TLS_RSA_.*$,^SSL_.*$,^.*_NULL_.*$,^.*_anon_.*$

If both legacy and current configuration values are present, the current configuration overrides the legacy one. Exclude values override include ones.

Deprecated in: Cloudera Search versions shipped with Solr 8.4.1 or later.
Will be removed in: a future release.

Removed

  • Index-time boosts have been removed from Lucene, and are no longer available from Solr. In this release of Cloudera Search, using syntax: {"id":"1", "val_s":{"value":"foo", "boost":2.0}} will throw an error message.

  • StandardFilter has been removed from Solr. As this was a non-operator, its removal should cause no issues.