-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbulkInsert.js
More file actions
279 lines (275 loc) · 8.72 KB
/
Copy pathbulkInsert.js
File metadata and controls
279 lines (275 loc) · 8.72 KB
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
//inicio...
//insertar coleccion phoenician alphabet
//en tu cluster atlas mongoDB
//puede que veas un cuadro en la llave symbol
//eso depende de tu host O.S, pero al insertar en mongodb Atlas
//ya se ven los simbolos correctamente...
const MongoClient = require("mongodb").MongoClient
const ObjectId = require("mongodb").ObjectId
const MongoError = require("mongodb").MongoError
/**
* Refer to http://mongodb.github.io/node-mongodb-native/3.1/tutorials/crud/#bulkwrite
*/
// This leading semicolon (;) is to make this Immediately Invoked Function Expression (IIFE).
// To read more about this type of expression, refer to https://developer.mozilla.org/en-US/docs/Glossary/IIFE
; (async () => {
try {
//ensure you update your host information below!
//el host lo configuras desde Atlas UI
//configura un usuario y una contraseña
//para la base de datos sample_collections
//despues reemplaza tu user y tu pass en la linea 24
//puede que el query string cambie...you can do this!!!
const host = "mongodb+srv://user:[email protected]/test?retryWrites=true&w=majority"
//const host = MFLIX_DB_URI
const client = await MongoClient.connect(
host,
{ retryWrites: true },
{ useNewUrlParser: true },
{ useUnifiedTopology: true },
)
//const mflix = client.db(process.env.MFLIX_NS)
const sample_collections = client.db("sample_collections")
const docsArray = [{
insertOne: {
latin_l: 'a',
latin_u: 'A',
name: '`alp',
meaning: 'ox',
symbol: '𐤀',
fav_votes: 30
}
},
{
insertOne: {
latin_l: 'b',
latin_u: 'B',
name: 'Bēt',
meaning: 'house',
symbol: '𐤁',
fav_votes: 71
}
},
{
insertOne: {
latin_l: ['c', 'g'],
latin_u: ['C', 'G'],
name: 'gimel',
meaning: ['throwing', 'stick', 'camel'],
symbol: '𐤂',
fav_votes: 41
}
},
{
insertOne: {
latin_l: 'd',
latin_u: 'D',
name: 'dalt',
meaning: 'door',
symbol: '𐤃',
fav_votes: 60
}
},
{
insertOne: {
latin_l: 'e',
latin_u: 'E',
name: 'hē',
meaning: 'window',
symbol: '𐤄',
fav_votes: 49
}
},
{
insertOne: {
latin_l: ['f', 'u', 'v', 'y', 'w'],
latin_u: ['F', 'U', 'V', 'Y', 'W'],
name: 'wāw',
meaning: 'hook',
symbol: '𐤅',
fav_votes: 27
}
},
{
insertOne: {
latin_l: 'z',
latin_u: 'Z',
name: 'zayin',
meaning: 'weapon',
symbol: '𐤆',
fav_votes: 50
}
},
{
insertOne: {
latin_l: 'h',
latin_u: 'H',
name: 'hēt',
meaning: ['wall', 'courtyard'],
symbol: '𐤇',
fav_votes: 80
}
},
{
insertOne: {
latin_l: '-',
latin_u: '-',
name: 'tēt',
meaning: 'wheel',
symbol: '𐤈',
fav_votes: 41
}
},
{
insertOne: {
latin_l: ['i', 'j'],
latin_u: ['I', 'J'],
name: 'yad',
meaning: 'hand',
symbol: '𐤉',
fav_votes: 125
}
},
{
insertOne: {
latin_l: 'k',
latin_u: 'K',
name: 'kap',
meaning: 'palm of a hand',
symbol: '𐤊',
fav_votes: 25
}
},
{
insertOne: {
latin_l: 'l',
latin_u: 'L',
name: 'lamed',
meaning: 'goad',
symbol: '𐤋',
fav_votes: 10
}
},
{
insertOne: {
latin_l: 'm',
latin_u: 'M',
name: 'mēm',
meaning: 'water',
symbol: '𐤌',
fav_votes: 95
}
},
{
insertOne: {
latin_l: 'n',
latin_u: 'N',
name: 'nūn',
meaning: 'serpent',
symbol: '𐤍',
fav_votes: 127
}
},
{
insertOne: {
latin_l: 'x',
latin_u: 'X',
name: 'sāmek',
meaning: 'fish',
symbol: '𐤎',
fav_votes: 204
}
},
{
insertOne: {
latin_l: 'o',
latin_u: 'O',
name: 'ʿēn',
meaning: 'eye',
symbol: '𐤏',
fav_votes: 0
}
},
{
insertOne: {
latin_l: 'p',
latin_u: 'P',
name: 'pē',
meaning: 'mouth',
symbol: '𐤐',
fav_votes: 60
}
},
{
insertOne: {
latin_l: '-',
latin_u: '-',
name: 'Ṣādē',
meaning: 'plant',
symbol: '𐤑',
fav_votes: 60
}
},
{
insertOne: {
latin_l: 'q',
latin_u: 'Q',
name: 'qōp',
meaning: 'needle eye',
symbol: '𐤒',
fav_votes: 93
}
},
{
insertOne: {
latin_l: 'r',
latin_u: 'R',
name: 'rūsh',
meaning: 'head',
symbol: '𐤓',
fav_votes: 0
}
},
{
insertOne: {
latin_l: 's',
latin_u: 'S',
name: 'Šin',
meaning: 'tooth',
symbol: '𐤔',
fav_votes: 69
}
},
{
insertOne: {
latin_l: 't',
latin_u: 'T',
name: 'tāw',
meaning: 'mark',
symbol: '𐤕',
fav_votes: 90
}
}]
const bulkWriteResponse2 = await sample_collections.collection("phoenician_alphabet").bulkWrite(docsArray)
//si todo salio bien veras el siguiente mensaje en la consola
//con le numero de docs insertados: 22
console.log("Numero de Docs Insertados:_" + bulkWriteResponse2.nInserted);
console.log(
"\x1b[32m",
`...`,
`___`,
)
client.close()
process.exit(0)
} catch (e) {
if (
e instanceof MongoError &&
e.message.slice(0, "Invalid Operation".length) === "Invalid Operation"
) {
console.log("\x1b[32m", "No documents to update")
} else {
console.error("\x1b[31m", `Error during migration, ${e}`)
}
process.exit(1)
}
})()