Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade to use google protobuf #9190

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open

upgrade to use google protobuf #9190

wants to merge 6 commits into from

Conversation

mangalaman93
Copy link
Contributor

@mangalaman93 mangalaman93 commented Oct 7, 2024

inspired from #7313

@github-actions github-actions bot added area/testing Testing related issues area/schema Issues related to the schema language and capabilities. area/graphql Issues related to GraphQL support on Dgraph. area/bulk-loader Issues related to bulk loading. area/core internal mechanisms go Pull requests that update Go code labels Oct 7, 2024
@github-actions github-actions bot added area/enterprise Related to proprietary features area/enterprise/backup Related to binary backups labels Oct 8, 2024
@shivaji-kharse shivaji-kharse marked this pull request as ready for review October 8, 2024 10:35
@shivaji-kharse shivaji-kharse requested a review from a team as a code owner October 8, 2024 10:35
conn/raft_server.go Outdated Show resolved Hide resolved
dgraph/cmd/zero/zero.go Show resolved Hide resolved
edgraph/server.go Show resolved Hide resolved
edgraph/server.go Outdated Show resolved Hide resolved
x/minioclient.go Outdated Show resolved Hide resolved
tlstest/zero_https/all_routes_tls/all_routes_tls_test.go Outdated Show resolved Hide resolved
worker/backup_ee.go Show resolved Hide resolved
worker/worker.go Show resolved Hide resolved
@@ -419,7 +419,7 @@ func (p ParsedKey) ToBackupKey() *pb.BackupKey {
key.Attr = attr
key.Uid = p.Uid
key.StartUid = p.StartUid
key.Term = p.Term
key.Term = []byte(p.Term)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This may affect performance

@@ -455,7 +455,7 @@ func FromBackupKey(backupKey *pb.BackupKey) []byte {
case pb.BackupKey_DATA:
key = DataKey(attr, backupKey.Uid)
case pb.BackupKey_INDEX:
key = IndexKey(attr, backupKey.Term)
key = IndexKey(attr, string(backupKey.Term))
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same

@github-actions github-actions bot added the area/integrations Related to integrations with other projects. label Nov 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/bulk-loader Issues related to bulk loading. area/core internal mechanisms area/enterprise/backup Related to binary backups area/enterprise Related to proprietary features area/graphql Issues related to GraphQL support on Dgraph. area/integrations Related to integrations with other projects. area/schema Issues related to the schema language and capabilities. area/testing Testing related issues go Pull requests that update Go code
Development

Successfully merging this pull request may close these issues.

2 participants