How to parse .parquet file @ ServiceNow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2022 12:20 AM
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.
- Labels:
-
Integrations
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2022 12:24 AM
Hi Vishal,
I don't think ServiceNow Supports .parquet file unfortunately.
Mark my answer correct & Helpful, if Applicable.
Thanks,
Sandeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2022 12:54 AM
Thanks Sandeep. If not , how can we convert .parquet file into CSV ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-03-2023 01:39 AM
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)
'''