You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@solr.apache.org by ufuk yılmaz <uy...@vivaldi.net.INVALID> on 2021/03/30 21:59:06 UTC

Complement expression gets socket timeout at value jetty.threads.idle.timeout

Hi,

I’m running a long complement streaming expression to compare two collections. Sometimes two collections are very similar and it takes a long time to find a difference, so it gives socket read timeout after exactly the “solr.jetty.threads.idle.timeout” is set to in jetty.xml

Would it be really bad if I set it to a very large amount? Like 12 hours?

complement(
	search(
		col1,
		q="*:*",
		qt="/export",
		sort="id_str asc",
		fl="id_str"
	),
	search(
		col2,
		q="*:*",
		qt="/export",
		sort="id_str asc",
		fl="id_str"
	),
	on="id_str"
)


Sent from Mail for Windows 10