This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit a6d8a0238fe0f1269e6efae5b200cb940943be4c Author: Shad Storhaug <[email protected]> AuthorDate: Thu Sep 24 23:39:13 2020 +0700 Lucene.Net.Tests.Facet.Taxonomy.TestSearcherTaxonomyManager: Reduced ordLimit from 100000 to 30000 to keep Nightly run time under 60 minutes --- src/Lucene.Net.Tests.Facet/Taxonomy/TestSearcherTaxonomyManager.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Lucene.Net.Tests.Facet/Taxonomy/TestSearcherTaxonomyManager.cs b/src/Lucene.Net.Tests.Facet/Taxonomy/TestSearcherTaxonomyManager.cs index 49f3bc3..affc9ea 100644 --- a/src/Lucene.Net.Tests.Facet/Taxonomy/TestSearcherTaxonomyManager.cs +++ b/src/Lucene.Net.Tests.Facet/Taxonomy/TestSearcherTaxonomyManager.cs @@ -156,7 +156,10 @@ namespace Lucene.Net.Facet.Taxonomy AtomicBoolean stop = new AtomicBoolean(); // How many unique facets to index before stopping: - int ordLimit = TestNightly ? 100000 : 6000; + //int ordLimit = TestNightly ? 100000 : 6000; + // LUCENENET specific: 100000 facets takes about 2-3 hours. To keep it under + // the 1 hour free limit of Azure DevOps, this was reduced to 30000. + int ordLimit = TestNightly ? 30000 : 6000; var indexer = new IndexerThread(w, config, tw, null, ordLimit, stop);
