【043】面试官追着问 ThreadPoolExecutor?用车间流水线讲透,再也不慌!
2025/12/17 22:23:29
连带清空索引
#!/bin/bash # ============================================================================== # # YxBuddy Platform - ES工单数据清理脚本 # # 功能: # curl -u "elastic:zaxsf*6498bQpS" -X DELETE "http://ip:9200/work_orders" -H "Content-Type: application/json" # curl -u "elastic:Tinipigu123" -X DELETE "http://11.151.216.133:9200/work_orders" -H "Content-Type: application/json" # 查询: # ============================================================================== # 颜色定义 RED='\033[0;31m' GREEN='\033[0;32m' YELLOW='\033[1;33m' BLUE='\033[0;34m' NC='\033[0m' # No Color # 打印信息 info() { echo -e "${BLUE}[INFO]${NC} $1" } # 打印成功信息 success() { echo -e "${GREEN}[SUCCESS]${NC} $1" } # 打印警告信息 warn() { echo -e "${YELLOW}[WARNING]${NC} $1" } # 打印错误信息并退出 err