File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,10 @@ use at your own risk. Issues and PRs welcome!
11
11
SQLite is an embedded SQL database. It can be a good choice if
12
12
your project meets some or all of these criteria:
13
13
14
- - the database file lives on fast, local storage (not on a network drive)
14
+ - you can store the database file on fast, local storage
15
+ (not on a network drive)
15
16
- the amount of data is relatively small (GBs, not TBs)
16
- - you're a data team of one with no need to share access to the database
17
+ - you're a data team of one with no need to share access to a database
17
18
- you mainly care about the final results of your pipelines, which are just
18
19
a few models that you export into other systems for multi-user access
19
20
or into BI/viz tools for analysis
@@ -22,7 +23,8 @@ another database or data warehouse platform
22
23
23
24
SQLite can be surprisingly fast, despite the query optimizer not being as
24
25
sophisticated as other databases and data warehouse platforms. Tip: realize
25
- your models as tables and create helpful indexes in post-hooks to speed up joins.
26
+ your models as tables and create indexes in post-hooks to speed up filtering
27
+ and joins.
26
28
27
29
## How to Use This
28
30
You can’t perform that action at this time.
0 commit comments