-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Description
Apache Arrowの中に入っているオブジェクトストアのPlasmaのドキュメントにtypoがある気がする。
https://github.com/apache/arrow/blob/master/cpp/apidoc/tutorials/plasma.md
new_object_idという変数を定義しているけど、object_idという変数を参照している。
// Receive notification of the next newly available object.
// Notification information is stored in object_id, data_size, and metadata_size
ObjectID new_object_id;
int64_t data_size;
int64_t metadata_size;
ARROW_CHECK_OK(client.GetNotification(fd, &object_id, &data_size, &metadata_size));
// Get the newly available object.
ObjectBuffer object_buffer;
ARROW_CHECK_OK(client.Get(&object_id, 1, -1, &object_buffer));Metadata
Metadata
Assignees
Labels
No labels