Spaces:
Sleeping
Sleeping
File size: 9,671 Bytes
2451d08 |
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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 |
#!/usr/bin/env node
import { createClient } from '@supabase/supabase-js';
import { readFileSync } from 'fs';
import { fileURLToPath } from 'url';
import { dirname, join } from 'path';
import dotenv from 'dotenv';
// Load environment variables
dotenv.config();
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
// Configuration
const SUPABASE_URL = process.env.SUPABASE_URL;
const SUPABASE_SERVICE_ROLE_KEY = process.env.SUPABASE_SERVICE_ROLE_KEY;
if (!SUPABASE_URL || !SUPABASE_SERVICE_ROLE_KEY) {
console.error('β Missing required environment variables:');
console.error(' - SUPABASE_URL');
console.error(' - SUPABASE_SERVICE_ROLE_KEY');
console.error('\nPlease check your .env file and try again.');
process.exit(1);
}
// Initialize Supabase client with service role key
const supabase = createClient(SUPABASE_URL, SUPABASE_SERVICE_ROLE_KEY);
// Configuration
const BATCH_SIZE = 100;
const MAX_RETRIES = 3;
class DataMigrator {
constructor(tableName, taskType) {
this.tableName = tableName;
this.taskType = taskType;
this.stats = {
total: 0,
processed: 0,
inserted: 0,
updated: 0,
skipped: 0,
errors: 0
};
}
async loadJsonlFile(filePath) {
try {
console.log(`π Reading JSONL file: ${filePath}`);
const content = readFileSync(filePath, 'utf-8');
const records = content
.split(/\r?\n/)
.filter(line => line.trim().length > 0)
.map(line => {
try {
return JSON.parse(line);
} catch (parseError) {
console.warn(`β οΈ Skipping invalid JSON line: ${line.substring(0, 50)}...`);
return null;
}
})
.filter(record => record !== null);
console.log(`β
Loaded ${records.length} records from JSONL file`);
return records;
} catch (error) {
console.error(`β Error reading JSONL file: ${error.message}`);
throw error;
}
}
transformRecord(record) {
return {
id: record.id,
task_type: record.task_type,
task_description: record.task_description || null,
rephrased_task: record.rephrased_task || null,
vocabulary: record.vocabulary || null,
response: record.response || null,
response_alternative: record.response_alternative || null,
brainstorm: record.brainstorm || null,
brainstorm_alternative: record.brainstorm_alternative || null,
updated_at: new Date().toISOString()
};
}
async upsertRecord(record, retryCount = 0) {
try {
const transformedRecord = this.transformRecord(record);
// Use upsert to handle duplicates (insert or update based on id and task_type)
const { data, error, status } = await supabase
.from(this.tableName)
.upsert(transformedRecord, {
onConflict: 'id,task_type',
ignoreDuplicates: false
})
.select();
if (error) {
throw error;
}
// Check if this was an insert or update based on the response
if (status === 201) {
this.stats.inserted++;
console.log(`β
Inserted record: ${record.id}-${record.task_type}`);
} else if (status === 200) {
this.stats.updated++;
console.log(`π Updated record: ${record.id}-${record.task_type}`);
} else {
this.stats.skipped++;
console.log(`βοΈ Skipped record: ${record.id}-${record.task_type}`);
}
return { success: true, data };
} catch (error) {
if (retryCount < MAX_RETRIES) {
console.log(`π Retrying record ${record.id}-${record.task_type} (attempt ${retryCount + 1}/${MAX_RETRIES})`);
await new Promise(resolve => setTimeout(resolve, 1000 * (retryCount + 1)));
return this.upsertRecord(record, retryCount + 1);
}
this.stats.errors++;
console.error(`β Failed to process record ${record.id}-${record.task_type}: ${error.message}`);
return { success: false, error: error.message };
}
}
async processBatch(records, startIndex) {
const endIndex = Math.min(startIndex + BATCH_SIZE, records.length);
const batch = records.slice(startIndex, endIndex);
console.log(`\nπ¦ Processing batch ${Math.floor(startIndex / BATCH_SIZE) + 1}: records ${startIndex + 1}-${endIndex}`);
const promises = batch.map(record => this.upsertRecord(record));
const results = await Promise.allSettled(promises);
const successful = results.filter(r => r.status === 'fulfilled' && r.value.success).length;
const failed = results.filter(r => r.status === 'rejected' || !r.value.success).length;
console.log(`π Batch completed: ${successful} successful, ${failed} failed`);
return endIndex;
}
async migrateFile(filePath) {
try {
console.log(`π Starting migration for ${this.taskType} tasks...\n`);
const records = await this.loadJsonlFile(filePath);
this.stats.total = records.length;
if (records.length === 0) {
console.log('β οΈ No records to migrate');
return this.stats;
}
// Process records in batches
let currentIndex = 0;
while (currentIndex < records.length) {
currentIndex = await this.processBatch(records, currentIndex);
this.stats.processed = currentIndex;
// Show progress
const progress = ((currentIndex / records.length) * 100).toFixed(1);
console.log(`π Progress: ${progress}% (${currentIndex}/${records.length})`);
}
console.log('\nβ
Migration completed!');
this.printStats();
return this.stats;
} catch (error) {
console.error(`β Migration failed: ${error.message}`);
throw error;
}
}
printStats() {
console.log('\nπ Migration Statistics:');
console.log(` Total records: ${this.stats.total}`);
console.log(` Processed: ${this.stats.processed}`);
console.log(` Inserted: ${this.stats.inserted}`);
console.log(` Updated: ${this.stats.updated}`);
console.log(` Skipped: ${this.stats.skipped}`);
console.log(` Errors: ${this.stats.errors}`);
console.log(` Success rate: ${((this.stats.inserted + this.stats.updated) / this.stats.total * 100).toFixed(1)}%`);
}
async verifyMigration() {
try {
console.log(`\nπ Verifying migration for table: ${this.tableName}`);
const { count, error } = await supabase
.from(this.tableName)
.select('*', { count: 'exact', head: true });
if (error) {
throw error;
}
console.log(`β
Table ${this.tableName} contains ${count} records`);
return count;
} catch (error) {
console.error(`β Verification failed: ${error.message}`);
throw error;
}
}
}
async function main() {
console.log(' Starting data migration process...\n');
const args = process.argv.slice(2);
// Parse command line arguments
const flags = {
help: args.includes('--help') || args.includes('-h'),
dryRun: args.includes('--dry-run'),
file: null,
type: null
};
// Parse --file and --type arguments
const fileArg = args.find(arg => arg.startsWith('--file='));
const typeArg = args.find(arg => arg.startsWith('--type='));
if (fileArg) flags.file = fileArg.split('=')[1];
if (typeArg) flags.type = typeArg.split('=')[1];
// Show help
if (flags.help) {
console.log(`
π Usage: node migrate-data.js [options]
Required:
--file=<path> Path to JSONL file to migrate
--type=<type> Type of tasks: 'speaking' or 'writing'
Options:
--dry-run Show what would be migrated without doing it
--help, -h Show this help message
Examples:
node migrate-data.js --file=data/speaking01.jsonl --type=speaking
node migrate-data.js --file=data/writing.jsonl --type=writing
node migrate-data.js --file=data/speaking01.jsonl --type=speaking --dry-run
`);
process.exit(0);
}
// Validate required arguments
if (!flags.file || !flags.type) {
console.error('β Missing required arguments:');
if (!flags.file) console.error(' --file=<path> (required)');
if (!flags.type) console.error(' --type=<speaking|writing> (required)');
console.error('\nUse --help for usage information.');
process.exit(1);
}
// Validate type
if (!['speaking', 'writing'].includes(flags.type)) {
console.error('β Invalid type. Must be "speaking" or "writing"');
process.exit(1);
}
// Check if file exists
try {
readFileSync(flags.file, 'utf-8');
} catch (error) {
console.error(`β File not found or not readable: ${flags.file}`);
process.exit(1);
}
try {
// Determine table name
const tableName = flags.type === 'speaking' ? 'speaking_tasks' : 'writing_tasks';
// Create migrator
const migrator = new DataMigrator(tableName, flags.type);
if (flags.dryRun) {
console.log('π DRY RUN MODE - No changes will be made\n');
const records = await migrator.loadJsonlFile(flags.file);
console.log(`π Would migrate ${records.length} ${flags.type} tasks`);
console.log(' Run without --dry-run to perform the migration');
} else {
// Perform migration
await migrator.migrateFile(flags.file);
// Verify migration
await migrator.verifyMigration();
}
console.log('\nπ Migration process completed!');
} catch (error) {
console.error('\nβ Migration failed:', error.message);
process.exit(1);
}
}
// Run the script
main().catch(console.error);
|