-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathProgram.cs
170 lines (117 loc) · 4.31 KB
/
Program.cs
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
using System.Diagnostics;
using System.Text;
using Cachalot.Extensions;
using Cachalot.Linq;
using Client.Core;
using Client.Tools;
using ProgressEventArgs = Cachalot.Linq.ProgressEventArgs;
Console.WriteLine(Logo);
// With a single argument (the csv file) it just reads the csv file and pack the lines
// Used mostly internally for performance tests
if (args.Length == 1)
{
Console.WriteLine("In this mode you will only simulate reading a csv file. No data will be sent to the server");
Console.WriteLine("SYNTAX: csvimport connection_string csv_file target_collection [--us]");
Console.WriteLine("the last optional parameter can be used to force date parsing in US format MM/dd...");
var watch = new Stopwatch();
watch.Start();
var csvSchema = new CsvSchemaBuilder(args[0]).InferSchema(10000, false);
watch.Stop();
Console.WriteLine($"Schema inference took {watch.ElapsedMilliseconds} ms");
watch.Restart();
var count = 0;
foreach (var _ in PackCsv(ReadLines(args[0]), "test", csvSchema))
{
count++;
if (count % 50000 == 0) Console.Write(".");
}
watch.Stop();
Console.WriteLine();
Console.WriteLine($"Took {watch.ElapsedMilliseconds / 1000} seconds to parse {count} lines");
return;
}
if (args.Length != 3 && args.Length != 4)
{
Console.WriteLine("SYNTAX: csvimport connection_string csv_file target_collection [--us]");
return;
}
var connectionString = args[0];
var csvFile = args[1];
var collection = args[2];
bool usFormat = args.Length == 4 && args[3].ToLowerInvariant()== "--us";
IEnumerable<PackedObject> PackCsv(IEnumerable<string> lines, string collectionName, CsvSchema csvSchema)
{
var primaryKey = 100;
foreach (var line in lines)
{
yield return PackedObject.PackCsv(primaryKey, line, collectionName, csvSchema);
primaryKey++;
}
}
IEnumerable<string> ReadLines(string csvFileName)
{
using var fileStream = File.OpenRead(csvFileName);
using var reader = new StreamReader(fileStream, Encoding.UTF8, true, 50000);
var _ = reader.ReadLine(); // first one is the header => ignore it
var line = reader.ReadLine();
while (line != null)
{
yield return line;
line = reader.ReadLine();
}
}
try
{
// passing "--internal" as connection string loads the csv into an in-process server
using var connector = connectionString == "--internal" ? new() : new Connector(connectionString);
var watch = new Stopwatch();
var schema = connector.GetCollectionSchema(collection);
const int linesToAnalyze = 10_000;
Console.WriteLine($"Analyzing the first {linesToAnalyze} lines from the csv file...");
watch.Start();
// analyze the csv data
var csvSchema = new CsvSchemaBuilder(csvFile).InferSchema(linesToAnalyze, usFormat, false);
watch.Stop();
csvSchema.UsFormat = usFormat;
Console.WriteLine($"Done.Took {watch.ElapsedMilliseconds:F2} ms");
Console.WriteLine();
if (schema == null)
{
Console.WriteLine($"No schema defined for collection {collection}. It will be inferred from data");
schema = csvSchema.ToCollectionSchema();
connector.DeclareCollection(collection, schema);
}
else
{
Console.WriteLine("Collection already defined. Using existing schema");
}
Console.WriteLine();
Console.WriteLine("Start feeding data...");
connector.Progress += ConnectorProgress;
watch.Restart();
connector.FeedCsv(csvFile, collection, csvSchema);
watch.Stop();
Console.WriteLine();
Console.WriteLine($"done in {watch.ElapsedMilliseconds / 1000.0:F2} seconds");
if (connectionString == "--internal")
{
Console.WriteLine(
$"Value pool: hit ratio={KeyValuePool.HitRatio * 100:F2}% complex_values={KeyValuePool.ComplexRatio * 100:F2}%");
GC.Collect();
var myself = Process.GetCurrentProcess();
Console.WriteLine($"used memory={myself.WorkingSet64 / 1_000_000} MB");
Console.WriteLine("press enter to stop");
Console.ReadLine();
}
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
void ConnectorProgress(object? sender, ProgressEventArgs e)
{
if (e.Type == ProgressEventArgs.ProgressNotification.Progress)
Console.Write(".");
else
Console.WriteLine();
}