How to parse .parquet file @ ServiceNow

Vishal40
Tera Contributor

Hello Team,

We are trying to integrate ServiceNow with one of the manufacturing company with the help of REST API.

This API supports only .parquet format ( Reason is for efficient data storage and retrieval )

Please help me with below answers.

1) Do we have ( ServiceNow ) support for .parquet file ?

2) If yes , can any1 help/guide me how we can parse the same @ SNOW side ?

3) Can I convert .parquet file into CSV file and then use it for my further development ? In that case what would be the challenges ?

4) How can I convert .parquet file into CSV , please provide me the code if you have any.

Thanks In Advance for your support.

 

 

3 REPLIES 3

Community Alums
Not applicable

Hi Vishal,

I don't think ServiceNow Supports  .parquet file unfortunately.

Mark my answer correct & Helpful, if Applicable.

Thanks,

Sandeep

Thanks Sandeep. If not , how can we convert .parquet file into CSV ?

Maybe using pandas package in python

'''

import pandas as pd

df = pd.read_parquet(FILE_PATH)

df.to_csv(NEW_FILE_PATH.csv, index=False)

'''