You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a Facet with long quey. ّI got an error (URI too long) when I run this query inside spark executors. as I searched, Solrj sends requests via the GET method. I'm wondering who can I change the request method to POST in the solr option Map?
new QueryRequest(solrParams, SolrRequest.METHOD.POST);
I'm looking for something like this:
val option = Map( "zkhost" -> zkhost, "collection" -> collection, "expr" -> facetExpr, "method" -> POST )
The text was updated successfully, but these errors were encountered:
I have a Facet with long quey. ّI got an error (URI too long) when I run this query inside spark executors. as I searched, Solrj sends requests via the GET method. I'm wondering who can I change the request method to POST in the solr option Map?
new QueryRequest(solrParams, SolrRequest.METHOD.POST);
I'm looking for something like this:
val option = Map( "zkhost" -> zkhost, "collection" -> collection, "expr" -> facetExpr, "method" -> POST )
The text was updated successfully, but these errors were encountered: