Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
978a0d4
Add mutation pipeline
darkcoderrises Jul 1, 2025
a90f0ff
added filter for vector lengths
darkcoderrises Aug 28, 2025
747aa00
hopefully vector passes now
darkcoderrises Aug 28, 2025
8136e2c
added filter for vector lengths
darkcoderrises Aug 28, 2025
7f5dc6f
fixed more tests
darkcoderrises Aug 28, 2025
5f49ebe
fixed some vector tests
darkcoderrises Aug 28, 2025
77905b4
fixed some bugs
darkcoderrises Aug 29, 2025
d78f5e1
attempt to fix perf
darkcoderrises Aug 29, 2025
fe5a7e5
attempt to fix perf
darkcoderrises Aug 29, 2025
d02caef
attempt to fix perf
darkcoderrises Aug 29, 2025
d8fe4bd
fixed some more tests
darkcoderrises Aug 31, 2025
d90b08a
fixed some more tests
darkcoderrises Sep 1, 2025
319f102
fixed trunk
darkcoderrises Sep 2, 2025
08779a3
added some logs
darkcoderrises Sep 2, 2025
41d6445
fixed some bug
darkcoderrises Sep 23, 2025
b0c4645
Merge branch 'main' into harshil-goel/mutation-pipeline
matthewmcneely May 1, 2026
436b55f
chore: resolve merge of main into mutation-pipeline branch
matthewmcneely May 1, 2026
a2fcc09
chore(posting): strip debug fmt.Println from hot paths
matthewmcneely May 1, 2026
4fe27e1
chore(posting): remove dead commented-out code
matthewmcneely May 1, 2026
8fbb0bd
feat(mutations): gate per-predicate pipeline behind a feature flag
matthewmcneely May 1, 2026
2d2afb1
test(worker): document why TestCount is skipped
matthewmcneely May 1, 2026
43b826d
fix(pipeline): scalar Del-of-old-value must not wipe new Set in Proce…
matthewmcneely May 1, 2026
7929232
fix(pipeline): InsertTokenizerIndexes deadlocks on uids >= 2^63
matthewmcneely May 1, 2026
c8f5fbc
feat(mutations): replace pipeline on/off flag with edge-count threshold
matthewmcneely May 1, 2026
86ad1ee
feat(mutations): flip default mutations-pipeline-threshold from 0 to 1
matthewmcneely May 1, 2026
8ccdae6
fix(posting): re-enable IsEmpty check in IterateDisk
matthewmcneely May 1, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ programmatic control over local Dgraph clusters. Most newer integration2 and upg

## Module Structure

The main module is `github.com/hypermodeinc/dgraph`
The main module is `github.com/dgraph-io/dgraph`

The codebase is organized into several key packages:

Expand Down
1 change: 1 addition & 0 deletions dgraph/cmd/alpha/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,7 @@ func run() {
x.Config.NormalizeCompatibilityMode = featureFlagsConf.GetString("normalize-compatibility-mode")
enableDetailedMetrics := featureFlagsConf.GetBool("enable-detailed-metrics")
x.WorkerConfig.SlowQueryLogThreshold = featureFlagsConf.GetDuration("log-slow-query-threshold")
x.WorkerConfig.MutationsPipelineThreshold = int(featureFlagsConf.GetInt64("mutations-pipeline-threshold"))

x.PrintVersion()
glog.Infof("x.Config: %+v", x.Config)
Expand Down
4 changes: 4 additions & 0 deletions graphql/admin/admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,10 @@ func newAdminResolver(
return
}

if len(pl.Postings) == 2 && string(pl.Postings[0].Value) == "_STAR_ALL" {
pl.Postings = pl.Postings[1:]
}

// There should be only one posting.
if len(pl.Postings) != 1 {
glog.Errorf("Only one posting is expected in the graphql schema posting list but got %d",
Expand Down
Loading
Loading