Created 06-23-2016 05:39 PM
Hi,
I am using kite sdk on quick start vm to do some datasets creation, but I can not see how to pass a provided partion value when I do csv-import or json-import.
How can we achieve that?
Thanks.
Created 06-28-2016 10:33 PM
Created 06-24-2016 11:59 AM
Hi Khalef,
Have you had a look at this blog post covering Kite? https://blog.cloudera.com/blog/2014/06/how-to-use-kite-sdk-to-easily-store-and-configure-data-in-apa...
Cheers, Lars
Created on 06-24-2016 09:18 PM - edited 06-24-2016 09:30 PM
Hi Lars,
Yes I have read I believe most of the articles and the doco writen on Kite SDK.
However, my partition fields (year, month, day) are not part of my data files, and there is no date or timestamp field that tells me that this data is of today or a month ago.
My partition config (if I can use one) would be:
And when I want to csv-import or json-import my files I don't see how to tell kitesdk-dataset explicitly that I want to store the imported file in partition year=2016, month=05, day=30.
Right now this is what I am doing: I create a dataset, create a partition directory and then copy the parquet file to it):
> kite-dataset csv-schema ods_ml_au.Introducer_Group_30_05_2016.psv --class IntroducerGroup --delimiter '|' -o introducerGroup.avsc
> hdfs dfs -put introducerGroup.avsc /user/caf/macleasing/format
> kite-dataset create dataset:hdfs:/user/caf/macleasing/stage/ml/introducerGroups -s hdfs:/user/caf/macleasing/format/introducerGroup.avsc -f parquet
> hdfs dfs -put ods_ml_au.Introducer_Group_30_05_2016.psv /user/caf/macleasing/source
> kite-dataset csv-import hdfs:/user/caf/macleasing/source/ods_ml_au.Introducer_Group_30_05_2016.psv dataset:hdfs:/user/caf/macleasing/stage/ml/introducerGroups --delimiter '|'
> hdfs dfs -mkdir -p /user/caf/macleasing/stage/ml/introducerGroups/year=2016/month=05/day=30
>hdfs dfs -mv /user/caf/macleasing/stage/ml/introducerGroups/*.parquet /user/caf/macleasing/stage/ml/introducerGroups/year=2016/month=05/day=30/
How can I avoid the explicit creation of directory and file movement??
I want to use my partition-config
Cheers Khalef
Created 06-28-2016 02:50 PM
Hi Khalef,
I don't know the answer to your question myself, but I asked around for an expert on Kite and learned that the best source for help would be the Kite project itself. You probably found their website already: http://kitesdk.org/docs/current/
It also links to their mailing list and I would like to ask you to post your question there: https://groups.google.com/a/cloudera.org/forum/#!forum/cdk-dev
Apologies for the inconvenience. Best wishes, Lars
Created 06-28-2016 10:33 PM