Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mobject-store
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
13
Issues
13
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
mobject-store
Commits
b9cfb4cf
Commit
b9cfb4cf
authored
Feb 01, 2019
by
Rob Latham
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debugging printfs get unwieldy with IOR benchmark
parent
273075f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
src/client/cluster.c
src/client/cluster.c
+0
-3
No files found.
src/client/cluster.c
View file @
b9cfb4cf
...
...
@@ -94,7 +94,6 @@ int mobject_store_connect(mobject_store_t cluster)
proto
[
i
]
=
svr_addr_str
[
i
];
/* intialize margo */
fprintf
(
stderr
,
"Client initialized with proto = %s
\n
"
,
proto
);
/* XXX: probably want to expose some way of tweaking threading parameters */
margo_instance_id
mid
=
margo_init
(
proto
,
MARGO_SERVER_MODE
,
0
,
-
1
);
if
(
mid
==
MARGO_INSTANCE_NULL
)
...
...
@@ -340,7 +339,6 @@ int mobject_store_write_op_operate(mobject_store_write_op_t write_op,
// XXX multiple providers may be in the same node (with distinct mplex ids)
hg_addr_t
svr_addr
=
ssg_get_addr
(
io
->
cluster
->
gid
,
server_idx
);
fprintf
(
stderr
,
"Object oid=%s will go to server %ld
\n
"
,
oid
,
server_idx
);
// TODO for now multiplex id is hard-coded as 1
int
r
=
mobject_provider_handle_create
(
io
->
cluster
->
mobject_clt
,
svr_addr
,
1
,
&
mph
);
...
...
@@ -418,7 +416,6 @@ int mobject_store_read_op_operate(mobject_store_read_op_t read_op,
ch_placement_find_closest
(
ioctx
->
cluster
->
ch_instance
,
oid_hash
,
1
,
&
server_idx
);
// XXX multiple providers may be in the same node (with distinct mplex ids)
hg_addr_t
svr_addr
=
ssg_get_addr
(
ioctx
->
cluster
->
gid
,
server_idx
);
fprintf
(
stderr
,
"Object oid=%s is read from server %ld
\n
"
,
oid
,
server_idx
);
// TODO for now multiplex id is hard-coded as 1
int
r
=
mobject_provider_handle_create
(
ioctx
->
cluster
->
mobject_clt
,
svr_addr
,
1
,
&
mph
);
if
(
r
!=
0
)
return
r
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment