-
The following code group chunked file tuples into merged files, however the sample val is lost at last, how to preserve merged file with id val as a tuple just like inputed?
At the same time, I found the merged file by |
Beta Was this translation helpful? Give feedback.
Answered by
ray1919
Oct 24, 2022
Replies: 1 comment
-
I solve this problem by just merge all grouped file in a single process like |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ray1919
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I solve this problem by just merge all grouped file in a single process like
cat *.xxx > $sample.xxx
.