blob: cc4b8b394a638bf7c99288e1e56a13abea662dd5 (
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
|
#!/bin/bash
set -euo pipefail
# Colors for output
RED='\033[0;31m'
GREEN='\033[0;32m'
BLUE='\033[0;34m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
# Configuration - assumes script is run from seaweedfs-rdma-sidecar directory
SEAWEEDFS_DIR="$(realpath ..)"
SIDECAR_DIR="$(pwd)"
MOUNT_POINT="/tmp/seaweedfs-rdma-mount"
FILER_ADDR="localhost:8888"
SIDECAR_ADDR="localhost:8081"
# PIDs for cleanup
MASTER_PID=""
VOLUME_PID=""
FILER_PID=""
SIDECAR_PID=""
MOUNT_PID=""
cleanup() {
echo -e "\n${YELLOW}๐งน Cleaning up processes...${NC}"
# Unmount filesystem
if mountpoint -q "$MOUNT_POINT" 2>/dev/null; then
echo "๐ค Unmounting $MOUNT_POINT..."
fusermount -u "$MOUNT_POINT" 2>/dev/null || umount "$MOUNT_POINT" 2>/dev/null || true
sleep 1
fi
# Kill processes
for pid in $MOUNT_PID $SIDECAR_PID $FILER_PID $VOLUME_PID $MASTER_PID; do
if [[ -n "$pid" ]] && kill -0 "$pid" 2>/dev/null; then
echo "๐ช Killing process $pid..."
kill "$pid" 2>/dev/null || true
fi
done
# Wait for processes to exit
sleep 2
# Force kill if necessary
for pid in $MOUNT_PID $SIDECAR_PID $FILER_PID $VOLUME_PID $MASTER_PID; do
if [[ -n "$pid" ]] && kill -0 "$pid" 2>/dev/null; then
echo "๐ Force killing process $pid..."
kill -9 "$pid" 2>/dev/null || true
fi
done
# Clean up mount point
if [[ -d "$MOUNT_POINT" ]]; then
rmdir "$MOUNT_POINT" 2>/dev/null || true
fi
echo -e "${GREEN}โ
Cleanup complete${NC}"
}
trap cleanup EXIT
wait_for_service() {
local name=$1
local url=$2
local max_attempts=30
local attempt=1
echo -e "${BLUE}โณ Waiting for $name to be ready...${NC}"
while [[ $attempt -le $max_attempts ]]; do
if curl -s "$url" >/dev/null 2>&1; then
echo -e "${GREEN}โ
$name is ready${NC}"
return 0
fi
echo " Attempt $attempt/$max_attempts..."
sleep 1
((attempt++))
done
echo -e "${RED}โ $name failed to start within $max_attempts seconds${NC}"
return 1
}
echo -e "${BLUE}๐ SEAWEEDFS RDMA MOUNT DEMONSTRATION${NC}"
echo "======================================"
echo ""
echo "This demo shows SeaweedFS mount with RDMA acceleration:"
echo " โข Standard SeaweedFS cluster (master, volume, filer)"
echo " โข RDMA sidecar for acceleration"
echo " โข FUSE mount with RDMA fast path"
echo " โข Performance comparison tests"
echo ""
# Create mount point
echo -e "${BLUE}๐ Creating mount point: $MOUNT_POINT${NC}"
mkdir -p "$MOUNT_POINT"
# Start SeaweedFS Master
echo -e "${BLUE}๐ฏ Starting SeaweedFS Master...${NC}"
cd "$SEAWEEDFS_DIR"
./weed master -port=9333 -mdir=/tmp/seaweedfs-master &
MASTER_PID=$!
wait_for_service "Master" "http://localhost:9333/cluster/status"
# Start SeaweedFS Volume Server
echo -e "${BLUE}๐พ Starting SeaweedFS Volume Server...${NC}"
./weed volume -mserver=localhost:9333 -port=8080 -dir=/tmp/seaweedfs-volume &
VOLUME_PID=$!
wait_for_service "Volume Server" "http://localhost:8080/status"
# Start SeaweedFS Filer
echo -e "${BLUE}๐ Starting SeaweedFS Filer...${NC}"
./weed filer -master=localhost:9333 -port=8888 &
FILER_PID=$!
wait_for_service "Filer" "http://localhost:8888/"
# Start RDMA Sidecar
echo -e "${BLUE}โก Starting RDMA Sidecar...${NC}"
cd "$SIDECAR_DIR"
./bin/demo-server --port 8081 --rdma-socket /tmp/rdma-engine.sock --volume-server-url http://localhost:8080 --enable-rdma --debug &
SIDECAR_PID=$!
wait_for_service "RDMA Sidecar" "http://localhost:8081/health"
# Check RDMA capabilities
echo -e "${BLUE}๐ Checking RDMA capabilities...${NC}"
curl -s "http://localhost:8081/stats" | jq . || curl -s "http://localhost:8081/stats"
echo ""
echo -e "${BLUE}๐๏ธ Mounting SeaweedFS with RDMA acceleration...${NC}"
# Mount with RDMA acceleration
cd "$SEAWEEDFS_DIR"
./weed mount \
-filer="$FILER_ADDR" \
-dir="$MOUNT_POINT" \
-rdma.enabled=true \
-rdma.sidecar="$SIDECAR_ADDR" \
-rdma.fallback=true \
-rdma.maxConcurrent=64 \
-rdma.timeoutMs=5000 \
-debug=true &
MOUNT_PID=$!
# Wait for mount to be ready
echo -e "${BLUE}โณ Waiting for mount to be ready...${NC}"
sleep 5
# Check if mount is successful
if ! mountpoint -q "$MOUNT_POINT"; then
echo -e "${RED}โ Mount failed${NC}"
exit 1
fi
echo -e "${GREEN}โ
SeaweedFS mounted successfully with RDMA acceleration!${NC}"
echo ""
# Demonstrate RDMA-accelerated operations
echo -e "${BLUE}๐งช TESTING RDMA-ACCELERATED FILE OPERATIONS${NC}"
echo "=============================================="
# Create test files
echo -e "${BLUE}๐ Creating test files...${NC}"
echo "Hello, RDMA World!" > "$MOUNT_POINT/test1.txt"
echo "This file will be read via RDMA acceleration!" > "$MOUNT_POINT/test2.txt"
# Create a larger test file
echo -e "${BLUE}๐ Creating larger test file (1MB)...${NC}"
dd if=/dev/zero of="$MOUNT_POINT/large_test.dat" bs=1024 count=1024 2>/dev/null
echo -e "${GREEN}โ
Test files created${NC}"
echo ""
# Test file reads
echo -e "${BLUE}๐ Testing file reads (should use RDMA fast path)...${NC}"
echo ""
echo "๐ Reading test1.txt:"
cat "$MOUNT_POINT/test1.txt"
echo ""
echo "๐ Reading test2.txt:"
cat "$MOUNT_POINT/test2.txt"
echo ""
echo "๐ Reading first 100 bytes of large file:"
head -c 100 "$MOUNT_POINT/large_test.dat" | hexdump -C | head -5
echo ""
# Performance test
echo -e "${BLUE}๐ PERFORMANCE COMPARISON${NC}"
echo "========================="
echo "๐ฅ Testing read performance with RDMA acceleration..."
time_start=$(date +%s%N)
for i in {1..10}; do
cat "$MOUNT_POINT/large_test.dat" > /dev/null
done
time_end=$(date +%s%N)
rdma_time=$((($time_end - $time_start) / 1000000)) # Convert to milliseconds
echo "โ
RDMA-accelerated reads: 10 x 1MB file = ${rdma_time}ms total"
echo ""
# Check RDMA statistics
echo -e "${BLUE}๐ RDMA Statistics:${NC}"
curl -s "http://localhost:8081/stats" | jq . 2>/dev/null || curl -s "http://localhost:8081/stats"
echo ""
# List files
echo -e "${BLUE}๐ Files in mounted filesystem:${NC}"
ls -la "$MOUNT_POINT/"
echo ""
# Interactive mode
echo -e "${BLUE}๐ฎ INTERACTIVE MODE${NC}"
echo "=================="
echo ""
echo "The SeaweedFS filesystem is now mounted at: $MOUNT_POINT"
echo "RDMA acceleration is active for all read operations!"
echo ""
echo "Try these commands:"
echo " ls $MOUNT_POINT/"
echo " cat $MOUNT_POINT/test1.txt"
echo " echo 'New content' > $MOUNT_POINT/new_file.txt"
echo " cat $MOUNT_POINT/new_file.txt"
echo ""
echo "Monitor RDMA stats: curl http://localhost:8081/stats | jq"
echo "Check mount status: mount | grep seaweedfs"
echo ""
echo -e "${YELLOW}Press Ctrl+C to stop the demo and cleanup${NC}"
# Keep running until interrupted
while true; do
sleep 5
# Check if mount is still active
if ! mountpoint -q "$MOUNT_POINT"; then
echo -e "${RED}โ Mount point lost, exiting...${NC}"
break
fi
# Show periodic stats
echo -e "${BLUE}๐ Current RDMA stats ($(date)):${NC}"
curl -s "http://localhost:8081/stats" | jq '.rdma_enabled, .total_reads, .rdma_reads, .http_fallbacks' 2>/dev/null || echo "Stats unavailable"
echo ""
done
|