my assignment is make a database with 100 millions record in mongetdb.for now my solution is generate a big file db.sql then import . size of that file is bigger than 6gb. I have imported near to 2 days.and i don't know when it finish. Somebody help me ,please! thanks you .
Related Questions in BIGDATA
- How to make an R Shiny app with big data?
- Liquibase as SaaS To Configure Multiple Database as Dynamic
- how to visualize readible big datasets with matplotlib?
- Are there techniques to mathematically compute the amount of searching in greedy graph searching?
- Pyspark & EMR Serialized task 466986024 bytes, which exceeds max allowed: spark.rpc.message.maxSize (134217728 bytes)
- Is there a better way to create a custom analytics dashboard tailored for different users?
- Trigger a lambda function/url with Apache Superset
- How to download, then archive and send zip to the user without storing data in RAM and memory?
- Using bigmemory package in R to solve the Ram memory problem
- spark - How is it even possible to get an OOM?
- Aws Athena SQL Query is not working in Apache spark
- DB structure/file formats to persist a 100TB table and support efficient data skipping with predicates in Spark SQL
- How can I make this matching function faster in R? It currently takes 6-7 days, and this is not practical
- K-means clustering time series data
- Need help related to Data Sets
Related Questions in MONETDB
- What's the fastest way to clone a big table in MonetDB?
- Why MonetDB does not add this table to the merge table?
- monet db user / role / database / tables
- From SQL table find the same product have same product key
- Monetdb slow query : trace select "aint1p" from "aTestCube"."a1b" where "aint10p"=1234567891 limit 5;
- pymonetdb can not upload to MonetDB server from client
- Creating and connecting to multiple MonetDB databases in Windows
- In MonetDB internals, what goes in the different files named: X.thashb, X.thashl, X.tail?
- After stopping MonetDB, mserver still appear to be running, and restart is now impossible. Does anyone know why?
- Modify Max number of Query Execution at same time on monetdb
- SQL data versioning in DuckDB
- Lazy Logical Replication with MonetDB
- Bulk upload using csv file to remote MonetDB server
- How to persist an inmemory monetdbe db to local disk
- MonetDB : Partitioning Data by Time Intervals
Related Questions in GENERATED
- how to debug a java abstractProcess using vscode
- How can I make my procedurally generated texture follow a curve in Blender?
- CATIA VBA: Extract name of generated point in CATDrawing
- How to configure correct the swagger OpenAPI (wrong url generated)?
- Is there a way to create a generated column in postgresql that will store a boolean value from comparing 2 dates?
- Can anyone explain the Android ViewBinding's bind() function optimized Java code?
- How to execute aarch64 generated machine code in c
- how to write exif tags with Python in a self generated image
- Open generated file (Uint8list) in default application in Flutter
- i have been getting this error Module 'agora_rtc_engine' not found in flutter
- MySQL InnoDB FULLTEXT search over JSON generated STORED column is slower than LIKE
- Loopback 4 MySQL not allowing to manually create data for id column if generated is true
- Why is Objects.requireNonNull automatically added by javac
- How to convert PostgreSQL 12 generated column to a normal column?
- Hibernate (Generate non prime value only when it is null)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I would suggest importing by either switching off autocommit (
START TRANSACTION; ... COMMIT;or using theCOPY INTOmethod.