[GitHub] kou opened a new pull request #9: ARROW-1597: Add .pc for compute module

2017-09-21 Thread git
kou opened a new pull request #9: ARROW-1597: Add .pc for compute module
URL: https://github.com/apache/arrow-dist/pull/9
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[jira] [Created] (ARROW-9039) py_bytes created by pyarrow 0.11.1 cannot be deserialized by more recent versions

2020-06-04 Thread Yoav Git (Jira)
Yoav Git created ARROW-9039:
---

 Summary: py_bytes created by pyarrow 0.11.1 cannot be deserialized 
by more recent versions
 Key: ARROW-9039
 URL: https://issues.apache.org/jira/browse/ARROW-9039
 Project: Apache Arrow
  Issue Type: Bug
  Components: Python
Affects Versions: 0.15.1, 0.11.1
 Environment: python, windows
Reporter: Yoav Git


I have been saving dataframes into mongodb using:

{{import pandas as pd; import pyarrow as pa}}
{{df = pd.DataFrame([[1,2,3],[2,3,4]], columns = ['x','y','z'])}}

{{byte = pa.serialize(df).to_buffer().to_pybytes()}}

and then reading back using:

{{df = pa.deserialize(pa.py_buffer(memoryview(byte)))}}

However, pyarrow is not back-compatible. i.e. both versions 0.11.1 and 0.15.1 
can read their own pybytes created by it. Alas, they cannot read each other. 

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)