I have a collection, User
that has the following schema:
User {
"_id": "some_id",
"name": "string",
"email": "string@example.com"
`}``````
And I would like to change name
to full_name
.
I wrote a custom migration code that does the change.
Now, for a few entries, the change will not take much time. I am more interested to know how it will affect (in terms of performance, and/or downtime) the database that has, let’s say, 100K users.