Skip to content

Commit

Permalink
Update Default Values (#18621)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohityadav766 authored Nov 13, 2024
1 parent e5441a9 commit 30ee4fa
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@
import static org.openmetadata.service.Entity.DATABASE;
import static org.openmetadata.service.Entity.DATABASE_SCHEMA;
import static org.openmetadata.service.Entity.DATABASE_SERVICE;
import static org.openmetadata.service.Entity.DATA_PRODUCT;
import static org.openmetadata.service.Entity.DOMAIN;
import static org.openmetadata.service.Entity.ENTITY_REPORT_DATA;
import static org.openmetadata.service.Entity.GLOSSARY;
import static org.openmetadata.service.Entity.GLOSSARY_TERM;
import static org.openmetadata.service.Entity.INGESTION_PIPELINE;
import static org.openmetadata.service.Entity.MESSAGING_SERVICE;
import static org.openmetadata.service.Entity.METADATA_SERVICE;
import static org.openmetadata.service.Entity.METRIC;
import static org.openmetadata.service.Entity.MLMODEL;
import static org.openmetadata.service.Entity.MLMODEL_SERVICE;
Expand Down Expand Up @@ -125,13 +127,15 @@ public class SearchIndexApp extends AbstractNativeApplication {
DASHBOARD_SERVICE,
PIPELINE_SERVICE,
MLMODEL_SERVICE,
STORAGE_SERVICE,
METADATA_SERVICE,
SEARCH_SERVICE,
ENTITY_REPORT_DATA,
WEB_ANALYTIC_ENTITY_VIEW_REPORT_DATA,
WEB_ANALYTIC_USER_ACTIVITY_REPORT_DATA,
DOMAIN,
STORED_PROCEDURE,
STORAGE_SERVICE,
DATA_PRODUCT,
TEST_CASE_RESOLUTION_STATUS,
TEST_CASE_RESULT,
API_SERVICE,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,14 @@
"testCaseResult",
"apiService",
"apiEndpoint",
"apiCollection"
"apiCollection",
"metric"
],
"recreateIndex": false,
"batchSize": "100",
"payLoadSize": 104857600,
"producerThreads": 10,
"consumerThreads": 10,
"producerThreads": 1,
"consumerThreads": 1,
"maxConcurrentRequests": 100,
"maxRetries": 3,
"initialBackoff": 1000,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,17 @@
"storedProcedure",
"dataProduct",
"testCaseResolutionStatus",
"testCaseResult",
"apiService",
"apiEndpoint",
"apiCollection"
"apiCollection",
"metric"
],
"recreateIndex": false,
"batchSize": "100",
"payLoadSize": 104857600,
"producerThreads": 10,
"consumerThreads": 10,
"producerThreads": 1,
"consumerThreads": 1,
"maxConcurrentRequests": 100,
"maxRetries": 3,
"initialBackoff": 1000,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@
"title": "Number of Producer Threads to use",
"description": "Number of producer threads to use for reindexing",
"type": "integer",
"default": 10
"default": 1
},
"consumerThreads": {
"title": "Number of Consumer Threads to use",
"description": "Number of consumer threads to use for reindexing",
"type": "integer",
"default": 10
"default": 1
},
"maxConcurrentRequests": {
"title": "Max Concurrent Requests",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"title": "Number of Consumer Threads",
"description": "Number of threads to use for reindexing",
"type": "integer",
"default": 5
"default": 1
},
"maxConcurrentRequests": {
"title": "Max Concurrent Requests",
Expand Down

0 comments on commit 30ee4fa

Please sign in to comment.