Home > Net >  how to put initial data in db
how to put initial data in db

Time:07-21

I have a csv file with around 30,000 rows of data.

I need these data to be in a database for my application.

I'm not sure what approach I should take to initialize this data.

I'm using docker image of postgresql.

my thoughts are:

  1. make .sql file that inserts this data, and execute this when docker runs.
  2. just keep the docker volume that has this data inserted and mount it every run.
  3. some other way...?

first approach is very versatile since inserting rows is a very common task that doesn't break. But down-side is that I need to do this in every docker-run.

I guess second approach is faster and efficient...? but volume might not be compatible if some reason postgres updates version or if I decided to change database.

any advices?

CodePudding user response:

Just mount a volume on your host and put the database in there. If the database does not exist, then it's created by the Postgres Image. In an entrypoint procedure you could check if the database is empty and then load the 30000 records.

You state that this might not be thebest solution for the following 2 reasons:

  1. Volume might not be compatible is postgres updates. But this won't happen since postgres updates will have a very small chance of requiring to rebuild the database.
  2. You decide the change the database What do you mean? Change the database to Mongo or MySQL? In that case you have a code-change on your hands regardless of the solution you pick. Unless you use an ORM (NodeJS: Prisma, TypeORM?) which might make the change minimal.
  • Related