[jira] [Created] (ARROW-1855) [GLib] Add workaround for build failure on macOS

2017-11-24 Thread Kouhei Sutou (JIRA)
Kouhei Sutou created ARROW-1855:
---

 Summary: [GLib] Add workaround for build failure on macOS
 Key: ARROW-1855
 URL: https://issues.apache.org/jira/browse/ARROW-1855
 Project: Apache Arrow
  Issue Type: Improvement
  Components: GLib
Affects Versions: 0.7.1
Reporter: Kouhei Sutou
Assignee: Kouhei Sutou
Priority: Minor
 Fix For: 0.8.0






--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Created] (ARROW-1854) [Python] Improve performance of serializing object dtype ndarrays

2017-11-24 Thread Wes McKinney (JIRA)
Wes McKinney created ARROW-1854:
---

 Summary: [Python] Improve performance of serializing object dtype 
ndarrays
 Key: ARROW-1854
 URL: https://issues.apache.org/jira/browse/ARROW-1854
 Project: Apache Arrow
  Issue Type: Improvement
  Components: Python
Reporter: Wes McKinney
 Fix For: 0.8.0


I haven't looked carefully at the hot path for this, but I would expect these 
statements to have roughly the same performance (offloading the ndarray 
serialization to pickle)

{code}
In [1]: import pickle

In [2]: import numpy as np

In [3]: import pyarrow as pa
a
In [4]: arr = np.array(['foo', 'bar', None] * 10, dtype=object)

In [5]: timeit serialized = pa.serialize(arr).to_buffer()
10 loops, best of 3: 27.1 ms per loop

In [6]: timeit pickled = pickle.dumps(arr)
100 loops, best of 3: 6.03 ms per loop
{code}

[~robertnishihara] [~pcmoritz] I encountered this while working on ARROW-1783, 
but it can likely be resolved independently



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Created] (ARROW-1853) [Plasma] Fix off-by-one error in retry processing

2017-11-24 Thread Philipp Moritz (JIRA)
Philipp Moritz created ARROW-1853:
-

 Summary: [Plasma] Fix off-by-one error in retry processing
 Key: ARROW-1853
 URL: https://issues.apache.org/jira/browse/ARROW-1853
 Project: Apache Arrow
  Issue Type: Bug
Reporter: Philipp Moritz
Priority: Minor
 Fix For: 0.8.0


When a user construct a plasma client that should not perform a single retry, 
by passing num_retries = 0, nothing happens due to an off-by-one error in the 
retry processing. 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Created] (ARROW-1852) [Plasma] Make retrieving manager file descriptor const

2017-11-24 Thread Wes McKinney (JIRA)
Wes McKinney created ARROW-1852:
---

 Summary: [Plasma] Make retrieving manager file descriptor const
 Key: ARROW-1852
 URL: https://issues.apache.org/jira/browse/ARROW-1852
 Project: Apache Arrow
  Issue Type: Bug
  Components: Plasma (C++)
Reporter: Wes McKinney
 Fix For: 0.8.0






--
This message was sent by Atlassian JIRA
(v6.4.14#64029)