|
@@ -344,27 +344,26 @@ public class OrderBaseEsLogic {
|
|
|
|
|
|
public void test() {
|
|
public void test() {
|
|
|
|
|
|
- /* boolean a = elasticsearchRestTemplate.indexOps(OrderBaseEs2022Date.class).delete();
|
|
|
|
|
|
+ boolean a = elasticsearchRestTemplate.indexOps(OrderBaseEs2022Date.class).delete();
|
|
IndexOperations indexOperations1 = elasticsearchRestTemplate.indexOps(OrderBaseEs2022Date.class);
|
|
IndexOperations indexOperations1 = elasticsearchRestTemplate.indexOps(OrderBaseEs2022Date.class);
|
|
if (!indexOperations1.exists()) {
|
|
if (!indexOperations1.exists()) {
|
|
indexOperations1.create();
|
|
indexOperations1.create();
|
|
Document document = indexOperations1.createMapping();
|
|
Document document = indexOperations1.createMapping();
|
|
indexOperations1.putMapping(document);
|
|
indexOperations1.putMapping(document);
|
|
- }*/
|
|
|
|
-
|
|
|
|
-/* boolean a = elasticsearchRestTemplate.indexOps(OrderBaseEs2023Date.class).delete();
|
|
|
|
- IndexOperations indexOperations1 = elasticsearchRestTemplate.indexOps(OrderBaseEs2023Date.class);
|
|
|
|
- if (!indexOperations1.exists()) {
|
|
|
|
- indexOperations1.create();
|
|
|
|
- Document document = indexOperations1.createMapping();
|
|
|
|
- indexOperations1.putMapping(document);
|
|
|
|
- }*/
|
|
|
|
- boolean a = elasticsearchRestTemplate.indexOps(OrderBaseEs2024Date.class).delete();
|
|
|
|
- IndexOperations indexOperations1 = elasticsearchRestTemplate.indexOps(OrderBaseEs2024Date.class);
|
|
|
|
- if (!indexOperations1.exists()) {
|
|
|
|
- indexOperations1.create();
|
|
|
|
- Document document = indexOperations1.createMapping();
|
|
|
|
- indexOperations1.putMapping(document);
|
|
|
|
|
|
+ }
|
|
|
|
+ boolean b = elasticsearchRestTemplate.indexOps(OrderBaseEs2023Date.class).delete();
|
|
|
|
+ IndexOperations indexOperations2 = elasticsearchRestTemplate.indexOps(OrderBaseEs2023Date.class);
|
|
|
|
+ if (!indexOperations2.exists()) {
|
|
|
|
+ indexOperations2.create();
|
|
|
|
+ Document document = indexOperations2.createMapping();
|
|
|
|
+ indexOperations2.putMapping(document);
|
|
|
|
+ }
|
|
|
|
+ boolean c = elasticsearchRestTemplate.indexOps(OrderBaseEs2024Date.class).delete();
|
|
|
|
+ IndexOperations indexOperations3 = elasticsearchRestTemplate.indexOps(OrderBaseEs2024Date.class);
|
|
|
|
+ if (!indexOperations3.exists()) {
|
|
|
|
+ indexOperations3.create();
|
|
|
|
+ Document document = indexOperations3.createMapping();
|
|
|
|
+ indexOperations3.putMapping(document);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -809,7 +808,7 @@ public class OrderBaseEsLogic {
|
|
60000, // Scroll 上下文保持时间(毫秒)
|
|
60000, // Scroll 上下文保持时间(毫秒)
|
|
query,
|
|
query,
|
|
OrderBase2023Es.class,
|
|
OrderBase2023Es.class,
|
|
- IndexCoordinates.of("pg_order_base_2023")
|
|
|
|
|
|
+ IndexCoordinates.of("pg_order_base2023")
|
|
);
|
|
);
|
|
|
|
|
|
String scrollId = scrollHits.getScrollId();
|
|
String scrollId = scrollHits.getScrollId();
|
|
@@ -834,7 +833,7 @@ public class OrderBaseEsLogic {
|
|
scrollId,
|
|
scrollId,
|
|
60000,
|
|
60000,
|
|
OrderBase2023Es.class,
|
|
OrderBase2023Es.class,
|
|
- IndexCoordinates.of("pg_order_base_2023")
|
|
|
|
|
|
+ IndexCoordinates.of("pg_order_base2023")
|
|
);
|
|
);
|
|
scrollId = scrollHits.getScrollId(); // 更新 scrollId
|
|
scrollId = scrollHits.getScrollId(); // 更新 scrollId
|
|
}
|
|
}
|
|
@@ -857,7 +856,7 @@ public class OrderBaseEsLogic {
|
|
60000, // Scroll 上下文保持时间(毫秒)
|
|
60000, // Scroll 上下文保持时间(毫秒)
|
|
query,
|
|
query,
|
|
OrderBase2024Es.class,
|
|
OrderBase2024Es.class,
|
|
- IndexCoordinates.of("pg_order_base_2024")
|
|
|
|
|
|
+ IndexCoordinates.of("pg_order_base2024")
|
|
);
|
|
);
|
|
|
|
|
|
String scrollId = scrollHits.getScrollId();
|
|
String scrollId = scrollHits.getScrollId();
|
|
@@ -882,7 +881,7 @@ public class OrderBaseEsLogic {
|
|
scrollId,
|
|
scrollId,
|
|
60000,
|
|
60000,
|
|
OrderBase2024Es.class,
|
|
OrderBase2024Es.class,
|
|
- IndexCoordinates.of("pg_order_base_2024")
|
|
|
|
|
|
+ IndexCoordinates.of("pg_order_base2024")
|
|
);
|
|
);
|
|
scrollId = scrollHits.getScrollId(); // 更新 scrollId
|
|
scrollId = scrollHits.getScrollId(); // 更新 scrollId
|
|
}
|
|
}
|
|
@@ -906,7 +905,7 @@ public class OrderBaseEsLogic {
|
|
60000, // Scroll 上下文保持时间(毫秒)
|
|
60000, // Scroll 上下文保持时间(毫秒)
|
|
query,
|
|
query,
|
|
OrderBase2022Es.class,
|
|
OrderBase2022Es.class,
|
|
- IndexCoordinates.of("pg_order_base_2022")
|
|
|
|
|
|
+ IndexCoordinates.of("pg_order_base2022")
|
|
);
|
|
);
|
|
|
|
|
|
String scrollId = scrollHits.getScrollId();
|
|
String scrollId = scrollHits.getScrollId();
|
|
@@ -931,7 +930,7 @@ public class OrderBaseEsLogic {
|
|
scrollId,
|
|
scrollId,
|
|
60000,
|
|
60000,
|
|
OrderBase2022Es.class,
|
|
OrderBase2022Es.class,
|
|
- IndexCoordinates.of("pg_order_base_2022")
|
|
|
|
|
|
+ IndexCoordinates.of("pg_order_base2022")
|
|
);
|
|
);
|
|
scrollId = scrollHits.getScrollId(); // 更新 scrollId
|
|
scrollId = scrollHits.getScrollId(); // 更新 scrollId
|
|
}
|
|
}
|