Loading in large dataset
Hi,
I currently have a huge .json file (40mb) which I'm trying to import.
const { default: availableCities } = await import('~/assets/cities.json')
console.log(Object.keys(availableCities))
But I run out of memory. What would be the best way to get this data into Nuxt.
8 Replies
Hi @Kyllian. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
For loading a large JSON dataset (40MB) in Nuxt, you're encountering memory issues with direct imports. Based on the knowledge sources, there are a few approaches you could consider:
Use Nuxt Content
Nuxt Content v3 would be a good solution for managing large datasets. It uses an SQL-based storage system which is more efficient than file-based approaches:
Then you can query it:
This approach is recommended because:
1. It's optimized for large datasets
2. It supports serverless environments
3. It improves client-side navigation performance
Nuxt Content v3 specifically mentions that it "moves away from a file-based storage approach to an SQL database system" which "enhances the way your data files are stored and structured, ensuring better performance and scalability."
Alternative Approaches
If you prefer not to use Nuxt Content:
1. Split your data: Break your large JSON file into smaller chunks and load only what you need.
2. Server API route: Create an API endpoint in the
server/api
directory that returns only the necessary data:
Then fetch it:
3. Use useAsyncData
: If you're using a third-party SDK or need more control:
The key is to avoid loading the entire 40MB file at once, and instead focus on loading only the data you need when you need it.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@166602211780984832> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
@kapa.ai using nuxt content, how can I fetch content on server side
Let me check the knowledge base for you again. One moment! :books:
----------------------
To fetch content on the server side using Nuxt Content, you need to use the server-side versions of the query utilities. Here's how you can do it:
Server-Side Content Fetching with Nuxt Content
When working with Nuxt Content on the server side, you use the same query utilities as on the client side, but with a slight difference - you need to pass the
event
parameter as the first argument.
Basic Server API Example
This creates an API endpoint that fetches a specific content item based on the slug parameter from the URL.
Nuxt Content documentation shows that you need to create a server/tsconfig.json
file to avoid type errors:
Other Server-Side Query Utilities
Nuxt Content provides several server-side query utilities:
1. queryCollection - For fetching content items:
2. queryCollectionNavigation - For generating navigation:
Learn more about navigation queries
3. queryCollectionItemSurroundings - For finding sibling content:
Learn more about surroundings queries
These server-side utilities allow you to create API endpoints that can be called from your client-side code or used in server-side rendering.
Remember that when using these utilities on the server side, the main difference is passing the event
parameter as the first argument to each function.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@166602211780984832> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
Hey
have come across this before in nitro
didnt find a solution.
yeah me neither, ended up scrapping the functionality
what did come out every time i had this issue is that this is prob not the correct/best thing/way to do!
did spk to pooya about it
cant find the issue though 🙈