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
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
cancelAll
where, at some snapshot in time after it is invoked, there are no table ids such that preparationStatus
is not Unknown
. Without the recursion, we don't have that guarantee.
cleanup obsolete scripts - rintcius
slamdata/quasar@16b009c` 55.0.1: cleanup obsolete scripts - Nic Flores
Process
=> Stream
conversion, from the old interface
project.
interface
.
[github]
[slamdata/quasar] New comment by rintcius on pull request #3726: Fixed flaky test in PreparationsManagerSpec (assigned to rintcius)
this PR failed with another failure:
[error] x reject redundant preparation when pending (152 ms)
[error] Normal() != Abnormal(InProgressError(table-id)) (PreparationsManagerSpec.scala:206)
[error] quasar.impl.table.PreparationsManagerSpec$.$anonfun$new$76(PreparationsManagerSpec.scala:206)
[error] cats.effect.internals.IORunLoop$.cats$effect$internals$IORunLoop$$loop(IORunLoop.scala:85)
[error] cats.effect.internals.IORunLoop$RestartCallback.apply(IORunLoop.scala:310)
[error] cats.effect.internals.IORunLoop$RestartCallback.apply(IORunLoop.scala:292)
[error] cats.effect.internals.Callback$AsyncIdempotentCallback$$anon$3.run(Callback.scala:142)
[error] cats.effect.internals.TrampolineEC.cats$effect$internals$TrampolineEC$$localRunLoop(TrampolineEC.scala:62)
[error] cats.effect.internals.TrampolineEC.$anonfun$execute$1(TrampolineEC.scala:54)
[error] cats.effect.internals.TrampolineEC.execute(TrampolineEC.scala:54)
[error] cats.effect.internals.Callback$AsyncIdempotentCallback.apply(Callback.scala:139)
[error] cats.effect.internals.Callback$AsyncIdempotentCallback.apply(Callback.scala:130)
[error] cats.effect.Async$$anon$7.run(Async.scala:163)
[error] Actual: Normal()
[error] Expected: Abnormal(InProgressError(table-id))
ConcurrentHashMap
StdLibSpec
).
sys.error
was here. I agree with the diff. Maybe UnionColumn
had different semantics previously?
isDefinedAt
prior to calling apply
.
bug/slow-shift
looks radically slower than master for everything except distinctFieldsObjects
. Am I missing something? @jsantos17's testing seemed to show a pretty substantial improvement, so I feel like I'm either misreading your gist, or there's something wrong with our benchmark assumptions here.
[github]
[slamdata/quasar] New comment by djspiewak on pull request #3733: Leftshift benchmark (assigned to djspiewak)
Oh good! I was misreading then. Looks like a 78% improvement in the best case, a 22% improvement in the worst positive case, and a 97% regression in the worst negative case. I wonder why scalarOrUndefined
is so bad. What does the data look like in that case?
This is definitely exciting. I really appreciate you running it on my PR.