A NoSQL analytics engine that embraces post-relational analytics and pushes computation to the data.
slamdata-bot on v82.0.5
djspiewak on master
properly commit nihdb to fix in… merge from master do not throw away the commitDB … and 11 more (compare)
slamdata-bot on v82.0.4
djspiewak on master
Bump qdata version to 5.0.0 82.0.4: Bump qdata version to 5… (compare)
slamdata-bot on qdata-version-bump-5.0.0
Bump qdata version to 5.0.0 (compare)
slamdata-bot on v82.0.3
slamdata-bot on v82.0.2
Fixed local publication settings - Daniel Spiewak
slamdata/sbt-slamdata@700e250` 1.2.1: Fixed local publication settings - Nic Flores
(_, _, db)
.read(key).map(_.isDefined)
doesn't load any of the table data. It's darn close to just checking to see if the directory exists in the VFS. I can make it use fs.exists
instead if it's too slow. Both directory existence and fs.exists
are implemented with a read through cache already.
Doubled compiler stack size (to help avoid intermittent SOE in patmat) - Daniel Spiewak
slamdata/quasar@2a850d5` 53.1.5: Doubled compiler stack size (to help avoid intermittent SOE in patmat) - Nic Flores
Updated sbt-slamdata - Daniel Spiewak
slamdata/quasar@998f04a` 53.1.6: Updated sbt-slamdata - Nic Flores
Reconfigured autobump PRs to use the slamdata-bot account - Daniel Spiewak
slamdata/sbt-slamdata@e322144` 1.3.1: Reconfigured autobump PRs to use the slamdata-bot account - Nic Flores
Adjust signature of Tables#allTables - Alissa Pajer
slamdata/quasar@81fde90` 54.1.1: Adjust signature of Tables#allTables - Emrys Ingersoll
[github]
[slamdata/quasar] New comment by rintcius on pull request #3716: The Culling (assigned to alissapajer)
<3 I like the name of your branch too.
I think Slice#toRJsonElements
is now dead code. There's probably more dead code, added ch657 in case we want to pick that up.
[github]
[slamdata/quasar] New comment by rintcius on pull request #3716: The Culling (assigned to alissapajer)
There are some obsolete scripts in ./scripts
I think: uploadTestData
, cleanupMongo.js
, genSslTestCerts
among others.
Everything in docker
is also obsolete, I think.
[github]
[slamdata/quasar] New comment by rintcius on pull request #3716: The Culling (assigned to alissapajer)
addition to @alissapajer 's comments
We can remove mongo* from all the .test files.
In case it saves any time, this is how I've deleted individual connectors from .test files in the past:
$ find . -type f -name "\.test" -print0 | xargs -0 sed -i '' -e '/\S_"mongodb_read_only._$/d'
There are also specific mongodb ITs undertests/mongodb
which also can be deleted