blob: 7904c401c37eb68d26ae3f7020fbe95905a69700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
#!/bin/bash
# Script to wait for all services to be ready
set -e
# Colors
BLUE='\033[36m'
GREEN='\033[32m'
YELLOW='\033[33m'
RED='\033[31m'
NC='\033[0m' # No Color
echo -e "${BLUE}Waiting for FoundationDB cluster to be ready...${NC}"
# Wait for FoundationDB cluster
MAX_ATTEMPTS=30
ATTEMPT=0
while [ $ATTEMPT -lt $MAX_ATTEMPTS ]; do
if docker-compose exec -T fdb1 fdbcli --exec 'status' > /dev/null 2>&1; then
echo -e "${GREEN}✅ FoundationDB cluster is ready${NC}"
break
fi
ATTEMPT=$((ATTEMPT + 1))
echo -e "${YELLOW}Attempt $ATTEMPT/$MAX_ATTEMPTS - waiting for FoundationDB...${NC}"
sleep 5
done
if [ $ATTEMPT -eq $MAX_ATTEMPTS ]; then
echo -e "${RED}❌ FoundationDB cluster failed to start after $MAX_ATTEMPTS attempts${NC}"
echo -e "${RED}Checking logs...${NC}"
docker-compose logs fdb1 fdb2 fdb3 fdb-init
exit 1
fi
echo -e "${BLUE}Waiting for SeaweedFS to be ready...${NC}"
# Wait for SeaweedFS master
MAX_ATTEMPTS=20
ATTEMPT=0
while [ $ATTEMPT -lt $MAX_ATTEMPTS ]; do
if curl -s http://127.0.0.1:9333/cluster/status > /dev/null 2>&1; then
echo -e "${GREEN}✅ SeaweedFS master is ready${NC}"
break
fi
ATTEMPT=$((ATTEMPT + 1))
echo -e "${YELLOW}Attempt $ATTEMPT/$MAX_ATTEMPTS - waiting for SeaweedFS master...${NC}"
sleep 3
done
if [ $ATTEMPT -eq $MAX_ATTEMPTS ]; then
echo -e "${RED}❌ SeaweedFS master failed to start${NC}"
docker-compose logs seaweedfs
exit 1
fi
# Wait for SeaweedFS filer
MAX_ATTEMPTS=20
ATTEMPT=0
while [ $ATTEMPT -lt $MAX_ATTEMPTS ]; do
if curl -s http://127.0.0.1:8888/ > /dev/null 2>&1; then
echo -e "${GREEN}✅ SeaweedFS filer is ready${NC}"
break
fi
ATTEMPT=$((ATTEMPT + 1))
echo -e "${YELLOW}Attempt $ATTEMPT/$MAX_ATTEMPTS - waiting for SeaweedFS filer...${NC}"
sleep 3
done
if [ $ATTEMPT -eq $MAX_ATTEMPTS ]; then
echo -e "${RED}❌ SeaweedFS filer failed to start${NC}"
docker-compose logs seaweedfs
exit 1
fi
# Wait for SeaweedFS S3 API
MAX_ATTEMPTS=20
ATTEMPT=0
while [ $ATTEMPT -lt $MAX_ATTEMPTS ]; do
if curl -s http://127.0.0.1:8333/ > /dev/null 2>&1; then
echo -e "${GREEN}✅ SeaweedFS S3 API is ready${NC}"
break
fi
ATTEMPT=$((ATTEMPT + 1))
echo -e "${YELLOW}Attempt $ATTEMPT/$MAX_ATTEMPTS - waiting for SeaweedFS S3 API...${NC}"
sleep 3
done
if [ $ATTEMPT -eq $MAX_ATTEMPTS ]; then
echo -e "${RED}❌ SeaweedFS S3 API failed to start${NC}"
docker-compose logs seaweedfs
exit 1
fi
echo -e "${GREEN}🎉 All services are ready!${NC}"
# Display final status
echo -e "${BLUE}Final status check:${NC}"
docker-compose exec -T fdb1 fdbcli --exec 'status'
echo ""
echo -e "${BLUE}SeaweedFS cluster info:${NC}"
curl -s http://127.0.0.1:9333/cluster/status | head -20
|