Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dgraph
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
dgraph
Commits
351da169
Commit
351da169
authored
9 years ago
by
Ashwin
Browse files
Options
Downloads
Patches
Plain Diff
Formatting to limit line length to 100
parent
4659b147
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
loader/loader.go
+5
-4
5 additions, 4 deletions
loader/loader.go
rdf/parse.go
+6
-3
6 additions, 3 deletions
rdf/parse.go
with
11 additions
and
7 deletions
loader/loader.go
+
5
−
4
View file @
351da169
...
...
@@ -52,9 +52,9 @@ type state struct {
numInstances
uint64
}
func
Init
(
rs
,
rws
*
store
.
Store
)
{
uidStore
=
rs
dataStore
=
rws
func
Init
(
uidstore
,
datastore
*
store
.
Store
)
{
uidStore
=
uidstore
dataStore
=
datastore
}
func
(
s
*
state
)
printCounters
(
ticker
*
time
.
Ticker
)
{
...
...
@@ -239,7 +239,8 @@ func HandleRdfReader(reader io.Reader, instanceIdx uint64, numInstances uint64)
}
// Blocking function.
func
HandleRdfReaderWhileAssign
(
reader
io
.
Reader
,
instanceIdx
uint64
,
numInstances
uint64
)
(
uint64
,
error
)
{
func
HandleRdfReaderWhileAssign
(
reader
io
.
Reader
,
instanceIdx
uint64
,
numInstances
uint64
)
(
uint64
,
error
)
{
s
:=
new
(
state
)
s
.
ctr
=
new
(
counters
)
ticker
:=
time
.
NewTicker
(
time
.
Second
)
...
...
This diff is collapsed.
Click to expand it.
rdf/parse.go
+
6
−
3
View file @
351da169
...
...
@@ -37,14 +37,16 @@ type NQuad struct {
Language
string
}
func
GetUid
(
s
string
,
instanceIdx
uint64
,
numInstances
uint64
,
rStore
*
store
.
Store
)
(
uint64
,
error
)
{
func
GetUid
(
s
string
,
instanceIdx
uint64
,
numInstances
uint64
,
rStore
*
store
.
Store
)
(
uint64
,
error
)
{
if
strings
.
HasPrefix
(
s
,
"_uid_:"
)
{
return
strconv
.
ParseUint
(
s
[
6
:
],
0
,
64
)
}
return
uid
.
GetOrAssign
(
s
,
instanceIdx
,
numInstances
)
}
func
(
nq
NQuad
)
ToEdge
(
instanceIdx
,
numInstances
uint64
,
rStore
*
store
.
Store
)
(
result
x
.
DirectedEdge
,
rerr
error
)
{
func
(
nq
NQuad
)
ToEdge
(
instanceIdx
,
numInstances
uint64
,
rStore
*
store
.
Store
)
(
result
x
.
DirectedEdge
,
rerr
error
)
{
sid
,
err
:=
GetUid
(
nq
.
Subject
,
instanceIdx
,
numInstances
,
rStore
)
if
err
!=
nil
{
return
result
,
err
...
...
@@ -104,7 +106,8 @@ func Parse(line string) (rnq NQuad, rerr error) {
// TODO: Strictly parse common types like integers, floats etc.
if
len
(
oval
)
==
0
{
glog
.
Fatalf
(
"itemObject should be emitted before itemObjectType. Input: %q"
,
line
)
"itemObject should be emitted before itemObjectType. Input: %q"
,
line
)
}
oval
+=
"@@"
+
stripBracketsIfPresent
(
item
.
Val
)
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment