assistance in uploading csv #23242
Replies: 3 comments 4 replies
-
@cohenanalyticsinc Can you provide a sample of the CSV you're trying to upload, including the column headers? |
Beta Was this translation helpful? Give feedback.
-
I tried 2 csv files
…On Wed, Mar 30, 2022 at 12:56 PM Scott Anderson ***@***.***> wrote:
@cohenanalyticsinc <https://github.com/cohenanalyticsinc> Can you provide
a sample of the CSV you're trying to upload, including the column headers?
—
Reply to this email directly, view it on GitHub
<#23242 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AYPCVVZYVR4KXGQRBCZL4GDVCSBUXANCNFSM5SAP4KPQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
--
BJ Cohen
President
Cohen Analytics
|
Beta Was this translation helpful? Give feedback.
-
To get these CSV files into InfluxDB, you're going to need to use the The following commands use the CSV files you provided (updated to be UTF-8 encoded) and writes the data to InfluxDB. Replace ./influx write -b example-bucket \
-f path/to/sales.csv \
--header "#constant measurement,sales" \
--header "#datatype tag,dateTime:2006-01-02 15:04:05,tag,string"
./influx write -b example-example \
-f path/to/b1.csv \
--header "#constant measurement,b1" \
--header "#datatype tag,tag,tag,tag,double,long,dateTime:1/2/06,tag" This datasets introduce a significant amount of cardinality because of the many unique IDs being written as tags. Consider ignoring columns that don't necessarily provide value in the context of time. Do these IDs actually matter to the type of analysis you're going to be performing on the data. If not, remove them. |
Beta Was this translation helpful? Give feedback.
-
im having issues uploading csv file (or any data for that matter into the platform) and after following the instructions, i'm at a standstill. any assistance is greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions