read_arrow

DataFrame.read_arrow(table, append=False)[source]

Uploads a pyarrow.Table.

Replaces the actual content of the underlying data frame in the getML engine with table.

Args:
table (pyarrow.Table):

Data the underlying data frame object in the getML engine should obtain.

append (bool, optional):

If a data frame object holding the same name is already present in the getML engine, should the content in query be appended or replace the existing data?

Returns:
DataFrame:

Current instance.

Note:

For columns containing pandas.Timestamp there can be small inconsistencies in the order to microseconds when sending the data to the getML engine. This is due to the way the underlying information is stored.